  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #2A2B5A; --navy-dark: #1A1B3A;
    --teal: #00D2FF; --teal-light: #D2EDF7;
    --orange: #F27C2E; --orange-light: #FCE5D4;
    --bg: #F7F8FA; --white: #ffffff;
    --text: #1A1B2E; --text-mid: #4A4B6A; --text-light: #8A8BA8;
    --border: #E4E5F0; --radius: 10px;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* NAV */
  nav { position: sticky; top: 0; z-index: 100; background: var(--navy-dark); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 76px; }
  .nav-logo { font-family: var(--font-head); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: #fff; }
  .nav-logo .logo-v { color: var(--teal); }
  .nav-links { display: flex; gap: 1.35rem; list-style: none; }
  .nav-links a { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.65); transition: color .2s; white-space: nowrap; }
  .nav-links a:hover { color: #fff; }
  .nav-right { display: flex; align-items: center; gap: 1.25rem; }
  .nav-tel { font-size: 14px; font-weight: 600; color: #fff; }
  .nav-cta { background: var(--teal); color: var(--navy-dark); font-family: var(--font-body); font-weight: 700; font-size: 14px; padding: 10px 22px; border-radius: 999px; transition: background .2s; }
  .nav-cta:hover { background: #33dcff; }
  .nav-search-wrap { position: relative; }
  .nav-search-btn { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.65); padding: 6px; display: flex; align-items: center; transition: color .2s; }
  .nav-search-btn:hover { color: #fff; }
  .nav-search-btn svg { width: 18px; height: 18px; }
  .search-dropdown { display: none; position: absolute; top: calc(100% + 12px); right: 0; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 8px; min-width: 200px; box-shadow: 0 8px 24px rgba(42,43,90,0.1); z-index: 200; }
  .search-dropdown.open { display: block; }
  .search-dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 7px; font-size: 14px; font-weight: 500; color: var(--text-mid); transition: background .15s, color .15s; }
  .search-dropdown a:hover { background: var(--bg); color: var(--navy); }
  .search-dropdown a svg { width: 16px; height: 16px; stroke: var(--teal); flex-shrink: 0; }
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-promo-bar { display: none; }
  .nav-links a.active { color: #fff; }

  /* MOBILE MENU DRAWER */
  .mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 98;
    background: var(--navy-dark);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    display: flex; flex-direction: column;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu-links { list-style: none; padding: 20px 6% 0; display: flex; flex-direction: column; }
  .mobile-menu-links a {
    display: block; padding: 16px 2px;
    font-family: var(--font-head); font-weight: 700; font-size: 19px;
    color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: -0.01em;
  }
  .mobile-menu-links a.active { color: var(--teal); }
  .mobile-menu-footer { margin-top: auto; padding: 24px 6% 40px; display: flex; flex-direction: column; gap: 14px; }
  .mobile-menu-tel { color: #fff; font-weight: 600; font-size: 16px; }
  .mobile-menu-cta {
    background: var(--teal); color: var(--navy-dark);
    font-family: var(--font-head); font-weight: 700; font-size: 15px;
    text-align: center; padding: 15px; border-radius: 999px;
  }
  @media (min-width: 1181px) { .mobile-menu { display: none !important; } }

  /* HERO — Turing layout */
  .hero {
    background: var(--navy-dark);
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .hero-bg { position: absolute; inset: -10% 0 0 0; z-index: 0; }
  .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; will-change: transform; }
  .hero-inner, .hero-scroll { will-change: transform, opacity; transition: opacity .15s linear; }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg,
      rgba(26,27,58,0.97) 0%,
      rgba(26,27,58,0.90) 32%,
      rgba(26,27,58,0.58) 62%,
      rgba(26,27,58,0.28) 100%);
  }
  .hero-inner {
    position: relative; z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
  }
  .hero-content { display: flex; flex-direction: column; align-items: flex-start; max-width: 720px; }
  .hero h1 {
    font-family: var(--font-head); font-weight: 800;
    font-size: clamp(32px, 4.2vw, 64px);
    color: #fff; line-height: 1.08;
    letter-spacing: -0.03em; margin-bottom: 1.25rem;
    white-space: nowrap;
  }
  .hero h1 em { color: var(--teal); font-style: normal; }
  .hero-sub {
    font-size: 16px; color: rgba(255,255,255,0.5);
    line-height: 1.75; margin-bottom: 2rem; max-width: 520px;
  }
  .hero-btns { display: flex; gap: 16px; align-items: center; }
  .btn-primary {
    background: var(--orange); color: #fff;
    font-weight: 600; font-size: 14px;
    padding: 13px 26px; border-radius: 7px;
    transition: background .2s;
  }
  .btn-primary:hover { background: #d96820; }
  .btn-outline {
    background: transparent; color: rgba(255,255,255,0.6);
    font-weight: 500; font-size: 14px;
    padding: 13px 0; border: none;
    transition: color .2s;
  }
  .btn-outline:hover { color: #fff; }

  /* stats — vpravo dole, Turing styl */
  .hero-stats { display: flex; gap: 60px; align-items: flex-end; flex-shrink: 0; }
  .hero-stat { text-align: center; }
  .hero-stat-num {
    font-family: var(--font-head); font-weight: 200;
    font-size: 64px; color: #fff;
    line-height: 1; letter-spacing: -0.04em; margin-bottom: 10px;
  }
  .hero-stat-plus { font-size: 36px; font-weight: 200; }
  .hero-stat-label { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 400; }
  .hero-stat-divider { display: none; }

  /* scroll */
  .hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    cursor: pointer; opacity: 0.2; transition: opacity .2s; z-index: 10;
  }
  .hero-scroll:hover { opacity: 0.6; }
  .hero-scroll span { font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; }
  .hero-scroll-line {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    animation: scrollDown 2s ease-in-out infinite;
  }
  @keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    30% { opacity: 1; }
    70% { transform: scaleY(1); transform-origin: top; }
    71% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  }


  /* responsive */
  @media (max-width: 900px) {
    .hero-stat { padding: 0 24px; }
    .hero-stat-num { font-size: 36px; }
    .hero h1 { font-size: 36px; }
  }

  /* STATS BAR */
  .stats-bar { background: var(--navy); padding: 40px 5%; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
  .stat-num { font-family: var(--font-head); font-weight: 800; font-size: 40px; color: var(--teal); letter-spacing: -0.02em; line-height: 1; }
  .stat-unit { font-size: 24px; }
  .stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 6px; }

  /* MINI CTA */
  .mini-cta { text-align: center; padding: 20px 5%; background: var(--bg); border-bottom: 1px solid var(--border); }
  .mini-cta a { font-size: 14px; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
  .mini-cta a:hover { color: var(--navy); }
  .mini-cta svg { width: 16px; height: 16px; }

  /* SERVICES SPLIT — editorial list + photo */
  .services-split { position:relative; background:var(--white); padding:100px 5% 90px; z-index:2; }
  .services-split-inner { max-width:1360px; margin:0 auto; }

  .ssp-head-block { margin-bottom:2.75rem; }
  .services-split .section-eyebrow { color:#00D2FF; }
  .ssp-heading { font-family:var(--font-head); font-weight:800; font-size:clamp(22px,2.6vw,40px); color:var(--navy); letter-spacing:-0.02em; line-height:1.15; margin:0.75rem 0 1.1rem; white-space:nowrap; }
  .ssp-heading-accent { position:relative; color:#00D2FF; text-shadow:0 1px 2px rgba(13,21,32,0.18); }
  .ssp-subtitle { font-size:16px; color:var(--text-mid); line-height:1.7; margin:0; white-space:nowrap; }

  .ssp-row { display:grid; grid-template-columns:1fr 520px; gap:70px; align-items:start; }

  .ssp-items { display:flex; flex-direction:column; }
  .ssp-item { padding:24px 20px; margin:0 -20px; border-top:1px solid var(--border); border-left:3px solid transparent; cursor:pointer; transition:background .25s, border-color .25s; }
  .ssp-items .ssp-item:last-child { border-bottom:1px solid var(--border); }
  .ssp-item:hover, .ssp-item.active { background:var(--bg); border-left-color:#00D2FF; }
  .ssp-item-head { display:flex; align-items:baseline; gap:16px; }
  .ssp-title { font-family:var(--font-head); font-weight:700; font-size:19px; color:var(--navy); letter-spacing:-0.01em; }
  .ssp-item-mobile-img { display:none; }
  .ssp-item-mobile-cta { display:none; }

  .ssp-item-body { max-height:0; opacity:0; overflow:hidden; transition:max-height .4s ease, opacity .3s ease, margin-top .4s ease; }
  .ssp-item.active .ssp-item-body { max-height:260px; opacity:1; margin-top:14px; }
  .ssp-sales { font-size:14px; color:var(--text-mid); line-height:1.7; max-width:440px; margin-bottom:16px; }
  .ssp-checklist { display:flex; flex-direction:column; gap:12px; list-style:none; }
  .ssp-checklist li { display:flex; align-items:center; gap:12px; font-size:14px; font-weight:700; color:var(--navy); }
  .ssp-check-badge { display:flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%; background:#00D2FF; flex-shrink:0; box-shadow:0 0 8px rgba(0,210,255,0.5); }
  .ssp-check-badge svg { width:16px; height:16px; color:#fff; }

  .ssp-cta-box { margin-top:2.5rem; background:var(--bg); border-radius:14px; padding:26px 30px; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
  .ssp-cta-text { font-family:var(--font-head); font-weight:700; font-size:16px; color:var(--navy); }
  .ssp-cta-btn { display:inline-flex; align-items:center; gap:8px; background:var(--orange); color:#fff; font-weight:600; font-size:14px; padding:12px 22px; border-radius:8px; transition:background .2s; white-space:nowrap; }
  .ssp-cta-btn:hover { background:#d96820; }
  .ssp-cta-btn svg { width:16px; height:16px; }

  .ssp-right { position:sticky; top:110px; align-self:start; }
  .ssp-photo-wrap { position:relative; border-radius:20px; overflow:hidden; height:380px; background:linear-gradient(135deg,var(--navy) 0%,var(--navy-dark) 100%); box-shadow:0 24px 60px rgba(42,43,90,0.18); transition:height .4s ease; }
  .ssp-photo-wrap img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:1; transform:scale(1); transition:opacity .35s ease, transform .6s ease; }
  .ssp-photo-wrap:hover img { transform:scale(1.05); }
  .ssp-photo-wrap::after { content:''; position:absolute; inset:0; background:rgba(13,21,32,0.18); pointer-events:none; }
  .ssp-more-link { position:absolute; left:50%; bottom:24px; transform:translateX(-50%); z-index:3; display:inline-flex; align-items:center; gap:8px; background:#00D2FF; color:var(--navy-dark); font-family:var(--font-head); font-weight:700; font-size:14px; padding:14px 28px; border-radius:999px; box-shadow:0 12px 34px rgba(0,210,255,0.55); transition:background .2s, transform .2s; white-space:nowrap; }
  .ssp-more-link:hover { background:#33dcff; transform:translateX(-50%) scale(1.04); }
  .ssp-more-link svg { width:16px; height:16px; }
  .ssp-calc-link { margin-top:16px; display:flex; align-items:center; gap:10px; background:var(--teal-light); color:#1A6A8A; font-size:13.5px; font-weight:600; padding:12px 16px; border-radius:12px; transition:background .2s, transform .2s; }
  .ssp-calc-link:hover { background:#bfe6f2; transform:translateY(-1px); }
  .ssp-calc-link svg { width:20px; height:20px; flex-shrink:0; }
  .ssp-calc-link[hidden] { display:none; }
  .ssp-mobile-actions-row { display:none; }
  .ssp-calc-answer { display:none; }

  /* mobile — each service becomes its own image+text card, all expanded, no accordion */
  @media (max-width:900px) {
    .services-split { padding:70px 5% 60px; }
    .ssp-heading, .ssp-subtitle { white-space:normal; }
    .ssp-row { grid-template-columns:1fr; gap:32px; }
    .ssp-right { display:none; }

    .ssp-item-mobile-img { display:block; width:100%; height:220px; object-fit:cover; border-radius:18px; margin-bottom:18px; box-shadow:0 12px 28px rgba(13,21,32,0.14); }
    .ssp-item-mobile-cta { display:inline-flex; align-items:center; gap:8px; margin-top:18px; background:#00D2FF; color:var(--navy-dark); font-family:var(--font-head); font-weight:700; font-size:14px; padding:12px 22px; border-radius:999px; box-shadow:0 8px 22px rgba(0,210,255,0.4); transition:background .2s; white-space:nowrap; }
    .ssp-item-mobile-cta:hover { background:#33dcff; }
    .ssp-mobile-actions-row { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:18px; }
    .ssp-mobile-actions-row .ssp-item-mobile-cta { margin-top:0; white-space:nowrap; flex-shrink:0; }
    .ssp-calc-icon-btn { flex-shrink:0; width:38px; height:38px; border-radius:50%; background:var(--teal-light); color:#1A6A8A; border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background .2s, transform .2s; }
    .ssp-calc-icon-btn svg { width:20px; height:20px; }
    .ssp-calc-icon-btn:hover, .ssp-calc-icon-btn[aria-expanded="true"] { background:#00D2FF; color:#fff; transform:scale(1.06); }
    .ssp-calc-answer { display:block; max-height:0; opacity:0; overflow:hidden; transition:max-height .35s ease, opacity .3s ease, margin-top .35s ease; }
    .ssp-calc-answer p { display:flex; flex-wrap:wrap; align-items:center; gap:8px; background:var(--teal-light); color:#1A6A8A; font-size:13.5px; font-weight:500; padding:14px 16px; border-radius:12px; }
    .ssp-calc-answer a { display:inline-flex; align-items:center; gap:6px; font-weight:700; color:var(--navy); white-space:nowrap; }
    .ssp-calc-answer a svg { width:14px; height:14px; }
    .ssp-calc-answer.open { max-height:160px; opacity:1; margin-top:12px; }

    .ssp-item { background:#fff; border:1px solid var(--border); border-left:1px solid var(--border); border-radius:18px; margin:0 0 20px; padding:18px 18px 22px; box-shadow:0 6px 20px rgba(13,21,32,0.05); }
    .ssp-items .ssp-item:last-child { border:1px solid var(--border); margin-bottom:0; }
    .ssp-item:hover, .ssp-item.active { background:#fff; border-left-color:var(--border); }
    .ssp-item-body, .ssp-item.active .ssp-item-body { max-height:none; opacity:1; overflow:visible; margin-left:0; margin-top:14px; }
  }

  /* SERVICES (old grid — kept for fallback) */
  .services { padding: 80px 5%; background: var(--white); }
  .section-head { text-align: center; margin-bottom: 3rem; }
  .section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
  .section-head h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 3vw, 36px); color: var(--navy); letter-spacing: -0.02em; }
  .services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .service-card { border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; transition: border-color .2s, box-shadow .2s; }
  .service-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,210,255,0.15); }
  .service-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
  .service-icon svg { width: 26px; height: 26px; }
  .service-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 0.5rem; }
  .service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }


  /* SEGMENTS — modern draw-in icon cards */
  .seg-head { max-width:820px; margin:0 auto 3.5rem; padding:0 5%; text-align:center; }
  .seg-eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--teal); margin-bottom:1rem; }
  .seg-eyebrow-mark { color:#00D2FF; font-size:11px; }
  .seg-heading { font-family:var(--font-head); font-weight:800; font-size:clamp(26px,3.4vw,42px); color:var(--navy); letter-spacing:-0.02em; line-height:1.22; margin-bottom:1.25rem; }
  .seg-subheading { font-size:16px; color:var(--text-mid); line-height:1.7; max-width:640px; margin:0 auto; }
  .seg-icon-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; padding:0 5% 0; position:relative; z-index:1; }
  .seg-icon-card { display:flex; flex-direction:column; background:#fff; border-radius:16px; padding:32px 26px; border:1px solid var(--border); transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
  .seg-icon-card:hover { transform:translateY(-4px); box-shadow:0 20px 44px rgba(13,21,32,0.12); border-color:transparent; }
  .seg-icon-circle { width:60px; height:60px; border-radius:16px; background:radial-gradient(circle at 30% 30%, #7ae8ff, #00D2FF 70%); display:flex; align-items:center; justify-content:center; margin-bottom:1.5rem; box-shadow:0 0 0 1px rgba(0,210,255,0.35), 0 0 12px rgba(0,210,255,0.55); transition:transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease; }
  .seg-icon-card:hover .seg-icon-circle { transform:scale(1.08) rotate(-4deg); box-shadow:0 0 0 1px rgba(0,210,255,0.4), 0 0 22px rgba(0,210,255,0.75); }
  .seg-draw-icon { width:30px; height:30px; color:#fff; transition:transform .35s cubic-bezier(.34,1.56,.64,1); filter:drop-shadow(0 0 3px rgba(255,255,255,0.5)); }
  .seg-icon-card:hover .seg-draw-icon { transform:scale(1.1); }
  .seg-cta-wrap { text-align:center; margin-top:3rem; padding:0 5%; }
  .seg-cta-btn { display:inline-flex; align-items:center; gap:8px; background:var(--orange); color:#fff; font-family:var(--font-head); font-weight:700; font-size:15px; padding:16px 34px; border-radius:999px; transition:background .2s, transform .2s; }
  .seg-cta-btn:hover { background:#d96820; transform:translateY(-1px); }
  .seg-cta-btn svg { width:16px; height:16px; }
  .seg-draw-icon path, .seg-draw-icon rect, .seg-draw-icon circle { transition:stroke-dashoffset 1.1s cubic-bezier(.4,0,.2,1); }
  .seg-icon-eyebrow {
    font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
    color:var(--teal); margin-bottom:10px;
  }
  .seg-icon-title {
    font-family:var(--font-head); font-weight:800; font-size:18px;
    color:var(--navy); letter-spacing:-0.01em; line-height:1.3; margin-bottom:8px;
  }
  .seg-icon-desc {
    font-size:13px; color:var(--text-mid);
    line-height:1.65; margin-bottom:18px;
  }
  .seg-icon-cta {
    display:inline-flex; align-items:center; gap:6px; margin-top:auto;
    font-size:13px; font-weight:600; color:var(--teal); transition:gap .2s;
  }
  .seg-icon-card:hover .seg-icon-cta { gap:9px; }
  .seg-icon-cta svg { width:14px; height:14px; transition:transform .2s; }
  .seg-icon-card:hover .seg-icon-cta svg { transform:translateX(3px); }
  @media (max-width:900px) {
    .seg-icon-grid { grid-template-columns:repeat(2,1fr); gap:20px; padding:0 4% 60px; }
  }
  @media (max-width:600px) {
    .seg-icon-grid { grid-template-columns:1fr; gap:24px; }
  }

  /* SEGMENTS (old) */
  .segments { padding: 90px 5% 100px; background: var(--bg); }
  .segments-elegant { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--white); }
  .seg-cell { padding: 32px 26px; border-right: 1px solid var(--border); display: flex; flex-direction: column; transition: background .2s; }
  .seg-cell:last-child { border-right: none; }
  .seg-cell:hover { background: var(--bg); }
  .seg-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-bottom: 16px; }
  .seg-cell h3 { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.3; }
  .seg-cell p { font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; flex: 1; }
  .seg-cta { font-size: 13px; font-weight: 600; color: var(--teal); transition: color .2s; }
  .seg-cell:hover .seg-cta { color: var(--navy); }
  .segments-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .entry-card { background: var(--white); border-radius: 12px; border: 1.5px solid var(--border); padding: 32px 28px; transition: border-color .2s, box-shadow .2s; }
  .entry-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,210,255,0.15); }
  .entry-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; margin-bottom: 1rem; }
  .badge-b2b { background: var(--teal-light); color: #1A6A8A; }
  .badge-b2c { background: var(--orange-light); color: #8A3A10; }
  .badge-spr { background: #E8E9F5; color: #2A2B5A; }
  .entry-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.3; }
  .entry-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
  .entry-link { font-weight: 600; font-size: 14px; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }
  .entry-link svg { width: 16px; height: 16px; transition: transform .2s; }
  .entry-card:hover .entry-link svg { transform: translateX(4px); }

  /* REFERENCES */
  .references { padding: 90px 5%; background: var(--white); }
  .ref-head { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
  .ref-check { width: 56px; height: 56px; border-radius: 50%; background: #00D2FF; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; box-shadow: 0 0 20px rgba(0,210,255,0.4); }
  .ref-check svg { width: 28px; height: 28px; color: #fff; }
  .ref-head h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3.2vw, 40px); color: var(--navy); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 1rem; }
  .ref-head p { font-size: 16px; color: var(--text-mid); line-height: 1.7; }

  .ref-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1360px; margin: 0 auto; }
  .ref-card { position: relative; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; cursor: pointer; background: var(--navy); box-shadow: 0 12px 28px rgba(13,21,32,0.14); }
  .ref-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.4,0,.2,1); }
  .ref-card:hover img { transform: translateY(52px); }
  .ref-card::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 -50px 40px -30px rgba(13,21,32,0.45); pointer-events: none; }
  .ref-label { position: absolute; top: 0; left: 0; right: 0; height: 52px; background: var(--navy); color: #fff; display: flex; align-items: center; padding: 0 16px; font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: -0.01em; opacity: 0; transform: translateY(-10px); transition: opacity .3s ease, transform .3s ease; z-index: 2; }
  .ref-card:hover .ref-label { opacity: 1; transform: translateY(0); }
  @media (max-width:900px) { .ref-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width:560px) { .ref-grid { grid-template-columns: 1fr; } }

  /* TESTIMONIAL */
  .testimonial-section { background: var(--bg); padding: 100px 5%; }
  .testimonial-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1280px; margin: 0 auto; }
  .testimonial-headline { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px,3.2vw,42px); color: var(--navy); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1.75rem; }
  .quote-mark { font-family: var(--font-head); font-size: 60px; color: #00D2FF; opacity: 0.5; line-height: 0.4; margin-bottom: 4px; }
  blockquote { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
  blockquote strong { color: var(--navy); font-weight: 700; }
  .testimonial-author { display: flex; align-items: center; gap: 14px; margin-bottom: 2rem; }
  .author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
  .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .author-name { font-weight: 700; font-size: 15px; color: var(--navy); }
  .author-company { font-size: 13px; color: var(--text-mid); }
  .author-stars { margin-left: auto; color: #F5A623; font-size: 18px; letter-spacing: 2px; }
  .testimonial-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; padding: 15px 28px; border-radius: 999px; transition: background .2s, transform .2s; }
  .testimonial-cta:hover { background: #d96820; transform: translateY(-1px); }
  .testimonial-cta svg { width: 16px; height: 16px; }
  .testimonial-photo { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 5/4; box-shadow: 0 30px 70px rgba(13,21,32,0.18); }
  .testimonial-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  @media (max-width:900px) { .testimonial-inner { grid-template-columns: 1fr; gap: 40px; } .testimonial-photo { order: -1; } }
  .testimonial-trust { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
  .trust-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
  .trust-logos { display: flex; flex-direction: column; gap: 10px; }
  .trust-logo-box { padding: 10px 20px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--white); min-width: 200px; }
  .trust-logo-text { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy); }

  /* WHY */
  .why { background: var(--white); padding: 80px 5%; }
  .why-inner { max-width: 760px; margin: 0 auto; }
  .why-text h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 3vw, 36px); color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.02em; }
  .why-text > p { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 2rem; }
  .why-items { display: flex; flex-direction: column; gap: 20px; }
  .why-item { display: flex; gap: 16px; align-items: flex-start; }
  .why-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 6px; }
  .why-item h4 { font-weight: 600; font-size: 15px; color: var(--navy); margin-bottom: 3px; }
  .why-item p { font-size: 14px; color: var(--text-mid); }

  /* PROCESS */
  .process { padding: 80px 5%; background: var(--bg); }
  .process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 3rem; position: relative; }
  .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; }
  .step-num { font-family: var(--font-head); font-weight: 800; font-size: 11px; letter-spacing: 0.12em; color: var(--teal); margin-bottom: 8px; }
  .step-line { position: absolute; top: 52px; left: calc(50% + 28px); right: calc(-50% + 28px); height: 1px; background: var(--border); z-index: 0; }
  .step-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; z-index: 1; position: relative; flex-shrink: 0; }
  .step-icon svg { width: 24px; height: 24px; }
  .process-step h4 { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 0.5rem; }
  .process-step p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

  /* FAQ */
  .faq { padding: 80px 5%; background: var(--white); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 3rem; }
  .faq-item { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
  .faq-q { width: 100%; background: none; border: none; padding: 18px 22px; text-align: left; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s; }
  .faq-q:hover { background: var(--bg); }
  .faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; stroke: var(--teal); }
  .faq-item.open .faq-q svg { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .faq-item.open .faq-a { max-height: 300px; }
  .faq-a p { padding: 0 22px 18px; font-size: 14px; color: var(--text-mid); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 14px; }

  /* CTA STRIP */
  .cta-strip { background: var(--teal); padding: 70px 5%; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
  .cta-strip h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 3vw, 34px); color: var(--navy-dark); letter-spacing: -0.02em; }
  .cta-strip p { font-size: 15px; color: rgba(13,21,32,0.7); margin-top: 8px; }
  .cta-strip-btns { display: flex; flex-direction: column; gap: 10px; align-items: center; }
  .btn-white { background: var(--navy-dark); color: #fff; font-weight: 700; font-size: 15px; padding: 14px 32px; border-radius: 7px; text-align: center; white-space: nowrap; transition: opacity .2s; }
  .btn-white:hover { opacity: 0.85; }
  .cta-tel { font-size: 13px; font-weight: 600; color: rgba(13,21,32,0.7); }
  .cta-disclaimer { font-size: 12px; color: rgba(13,21,32,0.55); margin-top: 4px; text-align: center; }

  /* LEAD FORM */
  .lead-form-section { background: var(--bg); padding: 90px 5%; }
  .lead-form-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
  .lead-form-card { background: #fff; border-radius: 20px; padding: 44px 40px; box-shadow: 0 20px 50px rgba(13,21,32,0.08); }
  .lead-form-card h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 2.8vw, 30px); color: var(--navy); letter-spacing: -0.02em; margin-bottom: 10px; }
  .lead-form-sub { font-size: 15px; color: var(--text-mid); line-height: 1.6; margin-bottom: 2rem; }
  .lead-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
  .lead-form-field { display: flex; flex-direction: column; gap: 6px; }
  .lead-form-field label { font-size: 13px; font-weight: 600; color: var(--navy); }
  .lead-form-field input, .lead-form-field select, .lead-form-field textarea {
    font-family: var(--font-body); font-size: 14.5px; padding: 12px 14px;
    border-radius: 8px; border: 1.5px solid var(--border); background: var(--bg); color: var(--text);
    outline: none; transition: border-color .2s, background .2s;
  }
  .lead-form-field input:focus, .lead-form-field select:focus, .lead-form-field textarea:focus { border-color: var(--teal); background: #fff; }
  .lead-form-field textarea { resize: vertical; min-height: 90px; font-family: inherit; line-height: 1.5; }
  .lead-form-field-standalone { margin-bottom: 18px; }
  .lead-form-field input[type="file"] { padding: 9px 12px; font-size: 13.5px; cursor: pointer; }
  .lead-form-file-hint { font-size: 12px; color: var(--text-light); margin-top: 4px; }
  .lead-form-submit {
    width: 100%; background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 700;
    font-size: 15.5px; padding: 15px; border: none; border-radius: 8px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .2s; margin-top: 6px;
  }
  .lead-form-submit:hover { background: #d96820; }
  .lead-form-submit svg { width: 16px; height: 16px; }
  .lead-form-submit:disabled { opacity: .6; cursor: default; }
  .lead-form-disclaimer { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 14px; }
  .lead-form-success { display: none; text-align: center; padding: 30px 0; }
  .lead-form-success.show { display: block; }
  .lead-form-success .success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
  .lead-form-success .success-icon svg { width: 28px; height: 28px; }
  .lead-form-success h3 { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
  .lead-form-success p { font-size: 14px; color: var(--text-mid); }
  .lead-form-error { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 8px; background: #FCE5D4; color: #8A3A10; font-size: 13.5px; font-weight: 500; text-align: center; }
  .lead-form-error a { color: inherit; font-weight: 700; text-decoration: underline; }
  .lead-form-error.show { display: block; }
  .lead-form-cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 700;
    font-size: 16px; padding: 18px; border-radius: 10px; transition: background .2s, transform .2s;
  }
  .lead-form-cta-btn:hover { background: #d96820; transform: translateY(-1px); }
  .lead-form-cta-btn svg { width: 18px; height: 18px; }

  .lead-contact-card { background: var(--navy-dark); border-radius: 20px; padding: 40px 34px; color: #fff; }
  .lead-contact-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 19px; margin-bottom: 24px; letter-spacing: -0.01em; }
  .lead-contact-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: #fff; }
  .lead-contact-item:last-of-type { border-bottom: none; }
  .lead-contact-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,210,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .lead-contact-icon svg { width: 19px; height: 19px; color: var(--teal); }
  .lead-contact-text { display: flex; flex-direction: column; gap: 2px; }
  .lead-contact-label { font-size: 11.5px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; }
  .lead-contact-value { font-size: 15px; font-weight: 600; }
  .lead-contact-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
  @media (max-width: 900px) {
    .lead-form-inner { grid-template-columns: 1fr; }
    .lead-form-card { padding: 32px 24px; }
    .lead-form-row { grid-template-columns: 1fr; gap: 14px; }
  }

  /* FOOTER */
  footer { background: var(--navy-dark); padding: 60px 5% 30px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-logo { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 1rem; }
  .footer-logo span { color: var(--teal); }
  .footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 1.5rem; }
  .footer-cta-small { background: var(--orange); color: #fff; font-weight: 600; font-size: 13px; padding: 10px 18px; border-radius: 6px; display: inline-block; transition: background .2s; }
  .footer-cta-small:hover { background: #d96820; }
  .footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul a, .footer-col ul span { font-size: 13px; color: rgba(255,255,255,0.55); transition: color .2s; }
  .footer-col ul a:hover { color: var(--teal); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
  .footer-value { font-size: 12px; color: rgba(255,255,255,0.5); font-style: italic; }

  /* POPUP */
  .popup-overlay { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(20,21,50,0.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; }
  .popup-overlay.open { display: flex; }
  .popup-box { background: #fff; border-radius: 16px; padding: 40px 36px 32px; max-width: 460px; width: 90%; position: relative; box-shadow: 0 24px 60px rgba(20,21,50,0.2); animation: popIn .25s ease; }
  @keyframes popIn { from { opacity:0; transform: scale(.95) translateY(12px); } to { opacity:1; transform: none; } }
  .popup-close { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; color: var(--text-light); font-size: 22px; line-height: 1; padding: 4px 8px; }
  .popup-close:hover { color: var(--navy); }
  .popup-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
  .popup-box h2 { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--navy); line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.01em; }
  .popup-sub { font-size: 14px; color: var(--text-mid); margin-bottom: 22px; line-height: 1.6; }
  .popup-form { display: flex; flex-direction: column; gap: 12px; }
  .popup-input { font-family: var(--font-body); font-size: 14px; padding: 11px 14px; border-radius: 7px; border: 1.5px solid var(--border); background: var(--bg); color: var(--text); outline: none; transition: border-color .2s; }
  .popup-input:focus { border-color: var(--teal); background: #fff; }
  .popup-input::placeholder { color: var(--text-light); }
  .popup-submit { background: var(--orange); color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 15px; padding: 13px; border-radius: 7px; border: none; cursor: pointer; transition: background .2s; margin-top: 4px; }
  .popup-submit:hover { background: #d96820; }
  .popup-disclaimer { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 10px; }
  .popup-success { text-align: center; padding: 20px 0; }
  .popup-success .success-icon { font-size: 40px; margin-bottom: 12px; }
  .popup-success h3 { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
  .popup-success p { font-size: 14px; color: var(--text-mid); }

  /* RESPONSIVE */
  /* Below this width the 8 nav links + logo + search + CTA can no longer fit
     the header, so switch straight to the hamburger drawer here instead of
     leaving a narrower two-stage zone where items would overlap/overflow. */
  @media (max-width: 1180px) {
    .nav-promo-bar { display: block; background: var(--teal); text-align: center; padding: 12px 5%; }
    .nav-promo-bar a { display: inline-flex; align-items: center; gap: 6px; color: var(--navy-dark); font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 0.02em; }
    .nav-promo-bar svg { width: 14px; height: 14px; }
    .nav-links { display: none; }
    .nav-tel, .nav-cta { display: none; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px rgba(0,210,255,0.5); }
    .nav-toggle span { background: var(--navy-dark); width: 18px; margin: 2.5px 0; }
  }
  @media (max-width: 900px) {
    .hero-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
    .hero h1 { white-space: normal; font-size: 32px; }
    .hero-stats { gap: 32px; }
    .hero-stat-num { font-size: 40px; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .segments-grid { grid-template-columns: 1fr; }
    .segments-elegant { grid-template-columns: 1fr; }
    .seg-cell { border-right: none; border-bottom: 1px solid var(--border); }
    .seg-cell:last-child { border-bottom: none; }
    .why-inner { grid-template-columns: 1fr; }
    .ref-grid { grid-template-columns: 1fr; }
    .cta-strip { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 28px; }
    .step-line { display: none !important; }
    .process-step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
    .testimonial-inner { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 26px; }
    .hero-stats { gap: 24px; }
    .hero-stat-num { font-size: 32px; }
  }

  /* SCROLL-IN REVEAL — text lands from the left, photos zoom in from small */
  .reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
  }
  .reveal-left.is-visible { opacity: 1; transform: translateX(0); }
  .reveal-zoom {
    opacity: 0;
    transform: scale(0.82);
    transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1);
  }
  .reveal-zoom.is-visible { opacity: 1; transform: scale(1); }
  @media (prefers-reduced-motion: reduce) {
    .reveal-left, .reveal-zoom { opacity: 1; transform: none; transition: none; }
  }

  /* GARANCE */
  .garance { position: relative; z-index: 3; background: var(--white); padding: 4.5rem 5% 4rem; text-align: center; }
  .garance-inner { max-width: 900px; margin: 0 auto; }
  .garance-hook { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 3.2vw, 34px); color: var(--navy); line-height: 1.35; margin-bottom: 3rem; }
  .garance-hook-accent { color: #00D2FF; text-shadow: 0 1px 2px rgba(13,21,32,0.12); }
  .garance-icons { display: flex; justify-content: center; gap: clamp(2.5rem, 9vw, 7.5rem); flex-wrap: wrap; }
  .garance-draw-icon path, .garance-draw-icon circle { transition: stroke-dashoffset 1s cubic-bezier(.4,0,.2,1); }
  .garance-item { position: relative; display: flex; flex-direction: column; align-items: center; cursor: pointer; outline: none; }
  .garance-icon-circle { position: relative; width: 72px; height: 72px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #7ae8ff, #00D2FF 70%); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 1px rgba(0,210,255,0.35), 0 6px 20px rgba(0,210,255,0.35); transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease; }
  .garance-icon-circle svg { width: 34px; height: 34px; color: #fff; filter: drop-shadow(0 0 3px rgba(255,255,255,0.5)); }
  .garance-item:hover .garance-icon-circle, .garance-item:focus .garance-icon-circle, .garance-item.tooltip-open .garance-icon-circle { transform: scale(1.08) rotate(-4deg); box-shadow: 0 0 0 1px rgba(0,210,255,0.4), 0 8px 26px rgba(0,210,255,0.55); }
  .garance-pulse { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(0,210,255,0.55); animation: garance-pulse-anim 2.4s cubic-bezier(.4,0,.3,1) infinite; }
  .garance-item:hover .garance-pulse, .garance-item:focus .garance-pulse, .garance-item.tooltip-open .garance-pulse { animation-play-state: paused; opacity: 0; }
  @keyframes garance-pulse-anim {
    0% { transform: scale(0.85); opacity: .9; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
  }
  .garance-hint { position: absolute; bottom: -3px; right: -3px; width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 3px var(--white); transition: background .25s ease, transform .25s ease; }
  .garance-item:hover .garance-hint, .garance-item:focus .garance-hint, .garance-item.tooltip-open .garance-hint { background: var(--orange); transform: scale(1.12); }
  .garance-item-label { margin-top: 1.1rem; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--navy); }
  .garance-tooltip { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px); width: 250px; background: var(--navy-dark); color: #fff; font-size: 13.5px; line-height: 1.5; font-weight: 500; border-radius: 10px; padding: 14px 16px; box-shadow: 0 16px 36px rgba(26,27,58,0.28); opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease, visibility .25s; z-index: 5; }
  .garance-tooltip-arrow { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); width: 0; height: 0; border: 7px solid transparent; border-bottom-color: var(--navy-dark); }
  .garance-item:hover .garance-tooltip, .garance-item:focus .garance-tooltip, .garance-item.tooltip-open .garance-tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
  .garance-tooltip.pos-above { top: auto; bottom: calc(100% + 14px); }
  .garance-tooltip.pos-above .garance-tooltip-arrow { bottom: auto; top: 100%; border-bottom-color: transparent; border-top-color: var(--navy-dark); }
  @media (hover: none) {
    .garance-hint { animation: garance-hint-bounce 1.8s ease-in-out infinite; }
  }
  @keyframes garance-hint-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }
  @media (max-width: 560px) {
    .garance-tooltip { width: 210px; font-size: 13px; }
  }

  /* SUBPAGES — service landing pages, kalkulátory hub, o nás */
  .service-hero { background: var(--navy-dark); padding: 150px 5% 80px; position: relative; overflow: hidden; }
  .service-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 460px; gap: 60px; align-items: center; }
  .service-hero-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; }
  .service-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 3.8vw, 50px); color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
  .service-hero h1 em { color: var(--teal); font-style: normal; }
  .service-hero p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 520px; margin-bottom: 28px; }
  .service-hero-photo { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
  .service-hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 900px) {
    .service-hero { padding: 120px 5% 50px; }
    .service-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .service-hero-photo { order: -1; aspect-ratio: 16/10; }
  }

  .service-body { padding: 90px 5%; background: #fff; }
  .svc-why + .service-body { padding-top: 50px; }
  .service-body-inner { max-width: 760px; margin: 0 auto; }
  .service-body h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 2.6vw, 30px); color: var(--navy); margin: 3rem 0 1rem; letter-spacing: -0.02em; }
  .service-body h2:first-child { margin-top: 0; }
  .service-body p { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.1rem; }
  .service-checklist { display: flex; flex-direction: column; gap: 16px; margin: 1.75rem 0; list-style: none; }
  .service-checklist li { display: flex; align-items: center; gap: 14px; font-size: 15.5px; font-weight: 700; color: var(--navy); }
  .service-back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--teal); margin-bottom: 1.5rem; }
  .service-back-link svg { width: 15px; height: 15px; }

  /* "Proč se vám vyplatí" — icon + text, centered, no card box */
  .svc-why { padding: 70px 5% 10px; background: var(--bg); }
  .svc-why-inner { max-width: 1100px; margin: 0 auto; }
  .svc-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .svc-why-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0; }
  .svc-why-icon { position: relative; width: 58px; height: 58px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #7ae8ff, #00D2FF 70%); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 0 0 1px rgba(0,210,255,0.35), 0 6px 20px rgba(0,210,255,0.35); transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease; }
  .svc-why-card:hover .svc-why-icon { transform: scale(1.08) rotate(-4deg); box-shadow: 0 0 0 1px rgba(0,210,255,0.4), 0 8px 26px rgba(0,210,255,0.55); }
  .svc-why-icon::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(0,210,255,0.4); animation: garance-pulse-anim 2.6s cubic-bezier(.4,0,.3,1) infinite; }
  .svc-why-card:hover .svc-why-icon::before { animation-play-state: paused; opacity: 0; }
  .svc-why-icon svg { position: relative; z-index: 1; width: 27px; height: 27px; color: #fff; filter: drop-shadow(0 0 3px rgba(255,255,255,0.5)); }
  .svc-why-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.03em; margin: 0 0 10px; }
  .svc-why-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; margin: 0; max-width: 300px; }
  @media (max-width: 900px) { .svc-why-grid { grid-template-columns: 1fr; gap: 34px; } }

  /* Upgraded "Záruka a výhody" cards on service subpages — risk-reversal copy */
  .svc-guarantee { display: flex; flex-direction: column; gap: 14px; margin: 1.75rem 0 0; }
  .svc-guarantee-item { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid rgba(42,43,90,0.07); border-radius: 16px; padding: 20px 22px; box-shadow: 0 8px 24px rgba(42,43,90,0.05); transition: transform .25s ease, box-shadow .25s ease; }
  .svc-guarantee-item:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(42,43,90,0.1); }
  .svc-guarantee-badge { position: relative; flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #7ae8ff, #00D2FF 70%); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 1px rgba(0,210,255,0.35), 0 6px 18px rgba(0,210,255,0.35); }
  .svc-guarantee-badge svg { width: 21px; height: 21px; filter: drop-shadow(0 0 3px rgba(255,255,255,0.5)); }
  .svc-guarantee-item.is-highlight { border-color: rgba(242,124,46,0.18); box-shadow: 0 8px 24px rgba(242,124,46,0.1); }
  .svc-guarantee-item.is-highlight .svc-guarantee-badge { background: radial-gradient(circle at 30% 30%, #ffc79a, var(--orange) 70%); box-shadow: 0 0 0 1px rgba(242,124,46,0.35), 0 6px 18px rgba(242,124,46,0.4); }
  .svc-guarantee-item h4 { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--navy); margin: 0 0 4px; }
  .svc-guarantee-item p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin: 0; }

  /* O NÁS */
  .about-hero { background: var(--navy-dark); padding: 150px 5% 90px; text-align: center; }
  .about-hero-inner { max-width: 760px; margin: 0 auto; }
  .about-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 3.8vw, 48px); color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 18px; }
  .about-hero h1 em { color: var(--teal); font-style: normal; }
  .about-hero p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; }
  .about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 900px; margin: 3rem auto 0; }
  .about-stat-num { font-family: var(--font-head); font-weight: 800; font-size: 36px; color: var(--teal); line-height: 1; }
  .about-stat-label { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 8px; }
  @media (max-width: 700px) { .about-stats { grid-template-columns: repeat(2,1fr); } }

  /* KALKULÁTORY HUB */
  .kalk-hero { background: var(--navy-dark); padding: 150px 5% 70px; text-align: center; }
  .kalk-hero-inner { max-width: 700px; margin: 0 auto; }
  .kalk-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 3.6vw, 44px); color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
  .kalk-hero h1 em { color: var(--teal); font-style: normal; }
  .kalk-hero p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; }
  .kalk-grid { padding: 70px 5% 100px; max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .kalk-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 34px 30px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
  .kalk-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(13,21,32,0.1); border-color: transparent; }
  .kalk-icon { width: 52px; height: 52px; border-radius: 14px; background: #00D2FF14; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
  .kalk-icon svg { width: 26px; height: 26px; color: var(--teal); }
  .kalk-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--navy); margin-bottom: 10px; }
  .kalk-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
  .kalk-card a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy-dark); background: var(--teal); padding: 11px 20px; border-radius: 999px; }
  @media (max-width: 700px) { .kalk-grid { grid-template-columns: 1fr; } }
