  :root {
    --bg:        #fafaf7;
    --bg-soft:   #f3f1ec;
    --bg-tint:   #f0eef6;
    --accent:    #ff5a2c;
    --accent-soft: rgba(255,90,44,.10);
    --ink:       #0a0a0a;
    --ink-soft:  #1a1a1f;
    --muted:     rgba(10,10,10,.65);
    --dim:       rgba(10,10,10,.42);
    --line:      rgba(10,10,10,.08);
    --line-st:   rgba(10,10,10,.14);
    --ease-out:  cubic-bezier(.22,1,.36,1);
    --spring:    cubic-bezier(.34,1.56,.64,1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
                 "Helvetica Neue", "Inter", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    line-height: 1.5;
    overflow-x: hidden;
  }
  button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  ul { list-style: none; }

  /* ═══════════════════════════════════════════════════════════
     HEADER (sticky, transparent → solid on scroll)
  ═══════════════════════════════════════════════════════════ */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding:
      max(14px, calc(env(safe-area-inset-top) + 10px))
      clamp(20px, 4vw, 48px)
      14px;
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 36px);
    background: rgba(250,250,247,0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition:
      background 400ms var(--ease-out),
      backdrop-filter 400ms var(--ease-out),
      border-color 400ms var(--ease-out);
  }
  .header.scrolled {
    background: rgba(250,250,247,.86);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom-color: var(--line);
  }

  .logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    height: 38px;
  }
  .logo svg { height: 100%; width: auto; display: block; }
  .logo svg path, .logo svg polygon {
    fill: var(--ink); stroke: var(--ink); stroke-width: 1;
    stroke-linecap: round; stroke-linejoin: round;
  }

  .nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.8vw, 28px);
  }
  .nav a {
    padding: 10px 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    transition: color 220ms ease;
  }
  .nav a::after {
    content: "";
    position: absolute;
    left: 6px; right: 6px;
    bottom: 4px;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 320ms var(--ease-out);
  }
  .nav a:hover { color: var(--accent); }
  .nav a:hover::after { transform: scaleX(1); }

  .header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .lang {
    display: flex; gap: 2px; padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(0,0,0,.03);
    height: 34px;
    position: relative;
  }
  .lang-btn {
    position: relative; z-index: 1;
    padding: 0 11px;
    font: inherit; font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(10,10,10,.55);
    background: transparent; border: none; border-radius: 999px;
    cursor: pointer;
    transition: color 220ms ease;
  }
  .lang-btn:hover { color: var(--ink); }
  .lang-btn.active { color: #fff; }
  .lang-indicator {
    position: absolute;
    top: 3px; bottom: 3px;
    border-radius: 999px;
    background: var(--ink);
    transition: left 420ms var(--ease-out), width 420ms var(--ease-out);
  }

  .btn-cta {
    height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 200ms ease, transform 120ms ease, box-shadow 200ms ease;
    box-shadow: 0 4px 18px -4px rgba(255,90,44,.5);
    white-space: nowrap;
    position: relative;
    animation: ctaPulse 3s ease-in-out infinite;
  }
  .btn-cta:hover {
    background: #ff7b54;
    box-shadow: 0 6px 24px -4px rgba(255,90,44,.65);
  }
  .btn-cta:active { transform: scale(.97); }
  @keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 18px -4px rgba(255,90,44,.5), 0 0 0 0 rgba(255,90,44,.5); }
    50%      { box-shadow: 0 4px 18px -4px rgba(255,90,44,.5), 0 0 0 10px rgba(255,90,44,0); }
  }

  /* Mobile menu toggle */
  .menu-toggle {
    display: none;
    width: 36px; height: 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
  .menu-toggle span {
    width: 18px; height: 1.5px;
    background: var(--ink);
    transition: transform 240ms var(--ease-out), opacity 220ms ease;
  }
  .menu-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

  /* ═══════════════════════════════════════════════════════════
     HERO — full-width image, parallax + continuous breathing
  ═══════════════════════════════════════════════════════════ */
  .hero {
    position: relative;
    min-height: clamp(680px, 100vh, 940px);
    padding: clamp(120px, 14vh, 180px) clamp(20px, 4vw, 48px) clamp(80px, 11vh, 140px);
    overflow: hidden;
  }
  .hero-img {
    --scroll: 0px;
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1573164574572-cb89e39749b4?w=1800&h=1300&fit=crop&auto=format&q=85");
    background-size: 110% auto;
    background-position: center calc(30% + var(--scroll));
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    animation:
      heroImgIn 1400ms var(--ease-out) 200ms forwards,
      heroBreathe 22s ease-in-out 1.5s infinite;
    will-change: opacity, background-size;
  }
  /* Soft gradient overlay — readable cards on bright image */
  .hero-img::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(105deg, rgba(250,250,247,.78) 0%, rgba(250,250,247,.4) 40%, rgba(250,250,247,0) 70%),
      linear-gradient(180deg, rgba(250,250,247,.3) 0%, rgba(250,250,247,0) 30%, rgba(250,250,247,.55) 100%);
  }
  /* Soft orange glow corner — depth + brand accent */
  .hero-glow {
    position: absolute;
    z-index: 0;
    top: -10%; right: -10%;
    width: 60%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(255,90,44,.18) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlowDrift 16s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes heroImgIn { to { opacity: 1; } }
  @keyframes heroBreathe {
    0%, 100% { background-size: 110% auto; }
    50%      { background-size: 118% auto; }
  }
  .hero-glow {
    --scroll: 0px;
    --mx: 0px;
  }
  @keyframes heroGlowDrift {
    0%, 100% { transform: translate(calc(-0% + var(--mx)), var(--scroll)); }
    50%      { transform: translate(calc(-4% + var(--mx)), calc(5% + var(--scroll))); }
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1340px;
    margin: 0 auto;
  }
  .hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 1.6vw, 22px);
    max-width: 820px;
  }
  .hero-card {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    padding: clamp(24px, 3vw, 36px);
    border-radius: 22px;
    border: 1px solid var(--line);
    box-shadow:
      0 24px 60px -20px rgba(0,0,0,.18),
      0 8px 24px -10px rgba(0,0,0,.08);
    opacity: 0;
    transform: translateY(32px);
    animation:
      heroCardIn 900ms var(--ease-out) forwards,
      heroCardFloat 6s ease-in-out infinite;
    transition: transform 220ms var(--ease-out), box-shadow 320ms var(--ease-out);
    will-change: transform;
  }
  .hero-card:nth-child(1) { animation-delay: 400ms, 1.5s; }
  .hero-card:nth-child(2) {
    animation-delay: 560ms, 1.8s;
    animation-direction: normal, alternate;
  }
  .hero-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 36px 80px -24px rgba(0,0,0,.24),
      0 14px 30px -14px rgba(0,0,0,.14);
  }
  @keyframes heroCardIn { to { opacity: 1; transform: translateY(0); } }
  @keyframes heroCardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }

  .hero-card h2 {
    font-size: clamp(20px, 1.7vw, 26px);
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.18;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .hero-card-list {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .hero-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
  }
  .hero-card-list li::before {
    content: "✓";
    width: 18px; height: 18px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex: 0 0 auto;
  }
  .hero-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 22px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-size: 13.5px; font-weight: 600;
    transition: background 200ms ease, gap 240ms var(--ease-out), box-shadow 200ms ease;
    box-shadow: 0 4px 18px -4px rgba(255,90,44,.4);
  }
  .hero-card-cta:hover {
    background: #ff7b54;
    gap: 14px;
    box-shadow: 0 6px 24px -4px rgba(255,90,44,.55);
  }
  .hero-card-cta .arrow { font-size: 14px; line-height: 1; }

  /* ═══════════════════════════════════════════════════════════
     CLIENT LOGO STRIP
  ═══════════════════════════════════════════════════════════ */
  .clients {
    padding: clamp(40px, 5vh, 70px) clamp(20px, 4vw, 48px);
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .clients-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: clamp(20px, 4vw, 50px);
    flex-wrap: wrap;
  }
  .client-logo {
    font-family: inherit;
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dim);
    opacity: .75;
    transition: opacity 220ms ease, color 220ms ease;
    white-space: nowrap;
  }
  .client-logo:hover { opacity: 1; color: var(--ink); }
  .client-logo.italic { font-style: italic; }
  .client-logo.mono { font-family: "SF Mono", Menlo, monospace; font-size: clamp(12px, 1vw, 15px); }
  .client-logo.thin { font-weight: 400; letter-spacing: 0.06em; font-size: clamp(13px, 1.1vw, 16px); }

  /* ═══════════════════════════════════════════════════════════
     BENEFITS GRID — 4 cards (why choose us)
  ═══════════════════════════════════════════════════════════ */
  .benefits {
    padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 48px);
    background: var(--bg);
  }
  .benefits-inner { max-width: 1340px; margin: 0 auto; }
  .benefits-header { text-align: center; margin-bottom: clamp(40px, 6vh, 70px); }
  .benefits-header .section-title { max-width: 22ch; margin: 0 auto 16px; }
  .benefits-header .section-lead { max-width: 60ch; margin: 0 auto; }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 26px);
  }
  .benefit-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(24px, 2.6vw, 34px);
    transition:
      transform 360ms var(--ease-out),
      border-color 320ms ease,
      box-shadow 360ms var(--ease-out);
    position: relative;
    overflow: hidden;
  }
  .benefit-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 480ms var(--ease-out);
  }
  .benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-st);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.15);
  }
  .benefit-card:hover::before { transform: scaleX(1); }
  .benefit-icon {
    width: 48px; height: 48px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: transform 480ms var(--spring), background 320ms ease, color 320ms ease;
  }
  .benefit-card:hover .benefit-icon {
    transform: scale(1.08) rotate(-8deg);
    background: var(--accent);
    color: #fff;
  }
  .benefit-card h4 {
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 700;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.25;
  }
  .benefit-card p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--muted);
  }

  /* ═══════════════════════════════════════════════════════════
     WHY IT MATTERS — narrative split section
  ═══════════════════════════════════════════════════════════ */
  .why-section {
    padding: clamp(60px, 9vh, 120px) clamp(20px, 4vw, 48px);
    background: var(--bg-tint);
  }
  .why-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
  }
  .why-text { min-width: 0; }
  .why-text .section-title { margin-bottom: 24px; }
  .why-text p {
    font-size: clamp(14.5px, 1.1vw, 16.5px);
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 56ch;
  }
  .why-list {
    margin-top: 28px;
    display: grid;
    gap: 16px;
  }
  .why-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: transform 280ms var(--ease-out), border-color 280ms ease;
  }
  .why-list-item:hover {
    transform: translateX(4px);
    border-color: var(--accent);
  }
  .why-list-icon {
    flex: 0 0 auto;
    width: 32px; height: 32px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
  }
  .why-list-text {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
  }
  .why-list-text span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    margin-top: 4px;
  }
  .why-visual {
    aspect-ratio: 4/5;
    max-height: 580px;
    border-radius: 24px;
    overflow: hidden;
    background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=900&h=1100&fit=crop&auto=format&q=85");
    background-size: cover;
    background-position: center;
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px -30px rgba(0,0,0,.25);
    position: relative;
  }
  .why-badge {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    padding: 18px 22px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,.3);
  }
  .why-badge-num {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--accent);
    line-height: 1;
  }
  .why-badge-text {
    margin-top: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.4;
  }

  /* ═══════════════════════════════════════════════════════════
     TESTIMONIAL section
  ═══════════════════════════════════════════════════════════ */
  .testimonial {
    padding: clamp(70px, 10vh, 130px) clamp(20px, 4vw, 48px);
    background: var(--bg);
  }
  .testimonial-inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .quote-mark {
    font-family: Georgia, serif;
    font-size: 140px;
    line-height: 0.7;
    color: var(--accent);
    opacity: .25;
    margin-bottom: -20px;
    display: inline-block;
  }
  .testimonial-quote {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 500;
    letter-spacing: -0.018em;
    line-height: 1.35;
    color: var(--ink);
    max-width: 28ch;
    margin: 0 auto 40px;
  }
  .testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 22px;
    background: var(--bg-tint);
    border-radius: 999px;
  }
  .testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-image: url("https://images.unsplash.com/photo-1573164574572-cb89e39749b4?w=200&h=200&fit=crop&auto=format&q=75");
    flex: 0 0 auto;
  }
  .testimonial-name {
    text-align: left;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
  }
  .testimonial-role {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    margin-top: 2px;
  }
  .testimonial-companies {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 50px);
    flex-wrap: wrap;
    opacity: .55;
  }
  .testimonial-companies span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--dim);
    transition: opacity 220ms ease, color 220ms ease;
  }
  .testimonial-companies span:hover { color: var(--ink); }
  .testimonial-companies .it { font-style: italic; }
  .testimonial-companies .mono { font-family: "SF Mono", Menlo, monospace; font-size: 12px; }

  /* ═══════════════════════════════════════════════════════════
     FAQ accordion
  ═══════════════════════════════════════════════════════════ */
  .faq {
    padding: clamp(70px, 10vh, 130px) clamp(20px, 4vw, 48px);
    background: var(--bg-tint);
  }
  .faq-inner {
    max-width: 920px;
    margin: 0 auto;
  }
  .faq-header { text-align: center; margin-bottom: clamp(40px, 5vh, 60px); }
  .faq-header .section-title { max-width: 26ch; margin: 0 auto 14px; }
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .faq-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 280ms ease, box-shadow 280ms ease;
  }
  .faq-item.open {
    border-color: var(--line-st);
    box-shadow: 0 16px 40px -20px rgba(0,0,0,.12);
  }
  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 700;
    letter-spacing: -0.012em;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: color 220ms ease;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-icon {
    flex: 0 0 auto;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: transform 360ms var(--spring), background 280ms ease, color 280ms ease;
  }
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 480ms var(--ease-out);
  }
  .faq-a-inner {
    padding: 0 26px 24px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--muted);
  }

  /* ═══════════════════════════════════════════════════════════
     STATS section
  ═══════════════════════════════════════════════════════════ */
  .stats {
    padding: clamp(40px, 5vh, 70px) clamp(20px, 4vw, 48px);
    background: var(--bg);
  }
  .stats-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr;
    gap: clamp(16px, 2vw, 28px);
    align-items: stretch;
  }
  .stats-image {
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=900&h=600&fit=crop&auto=format&q=85");
    background-size: cover;
    background-position: center;
    border: 1px solid var(--line);
  }
  .stat-card {
    background: var(--bg-tint);
    border-radius: 22px;
    padding: clamp(30px, 4vw, 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--line);
    transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
  }
  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,.18);
  }
  .stat-num {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
    font-size: clamp(48px, 5.2vw, 80px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
  }
  .stat-num::after {
    content: "";
    position: absolute;
    left: 50%; right: 50%;
    bottom: -8px;
    height: 2.5px;
    background: var(--accent);
    border-radius: 999px;
    transition: left 600ms var(--ease-out) 200ms, right 600ms var(--ease-out) 200ms;
  }
  .stats-inner.in-view .stat-num::after,
  .stat-card:hover .stat-num::after {
    left: 15%; right: 15%;
  }
  .stat-label {
    font-size: clamp(13px, 1.05vw, 15px);
    color: var(--muted);
    font-weight: 500;
  }

  /* ═══════════════════════════════════════════════════════════
     VALUES section (What drives us)
  ═══════════════════════════════════════════════════════════ */
  .values {
    padding: clamp(60px, 9vh, 120px) clamp(20px, 4vw, 48px);
    background: var(--bg-tint);
  }
  .values-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
  }
  .values-text { min-width: 0; }
  .section-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
    font-size: clamp(32px, 3.8vw, 50px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.07;
    color: var(--ink);
    margin-bottom: 20px;
    max-width: 18ch;
  }
  .section-lead {
    font-size: clamp(15px, 1.2vw, 17px);
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: clamp(28px, 4vh, 44px);
    max-width: 52ch;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 28px);
  }
  .value-card {
    padding: 24px 0;
  }
  .value-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    transition: transform 480ms var(--spring), background 320ms ease;
  }
  .value-card:hover .value-icon {
    transform: rotate(-12deg) scale(1.08);
    background: var(--accent);
    color: #fff;
  }
  .value-card h4 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .value-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
  }
  .values-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-height: 620px;
    background-image: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1000&h=1250&fit=crop&auto=format&q=85");
    background-size: cover;
    background-position: center;
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px -30px rgba(0,0,0,.25);
  }

  /* ═══════════════════════════════════════════════════════════
     SERVICES detail (alternating rows)
  ═══════════════════════════════════════════════════════════ */
  .services-detail {
    padding: clamp(60px, 9vh, 120px) clamp(20px, 4vw, 48px);
    background: var(--bg);
  }
  .services-inner {
    max-width: 1180px;
    margin: 0 auto;
  }
  .svc-header { text-align: center; margin-bottom: clamp(50px, 7vh, 90px); }
  .svc-header .section-title { margin: 0 auto 20px; }
  .svc-header .section-lead { margin: 0 auto; }
  .svc-cat { margin-bottom: clamp(80px, 12vh, 130px); }
  .svc-cat:last-child { margin-bottom: 0; }
  .svc-cat-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: clamp(30px, 4vh, 56px);
    padding-bottom: clamp(20px, 3vh, 28px);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .svc-cat-title::before {
    content: "";
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 999px;
    box-shadow: 0 0 0 0 var(--accent);
    animation: dotPulse 2.4s ease-in-out infinite;
  }
  @keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,90,44,.55); }
    70%      { box-shadow: 0 0 0 14px rgba(255,90,44,0); }
  }
  .svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "img text";
    gap: clamp(28px, 4.5vw, 70px);
    align-items: center;
    margin-bottom: clamp(50px, 8vh, 90px);
    opacity: 0;
    transform: translateY(36px);
    transition:
      opacity   900ms var(--ease-out),
      transform 1100ms var(--ease-out);
  }
  .svc-row.reverse { grid-template-areas: "text img"; }
  .svc-row.in-view { opacity: 1; transform: translateY(0); }
  .svc-row:last-child { margin-bottom: 0; }
  .svc-img-wrap {
    grid-area: img;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--line);
    aspect-ratio: 4/3;
    box-shadow: 0 16px 40px -20px rgba(0,0,0,.22);
  }
  .svc-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    filter: brightness(.92);
    transition: transform 1400ms var(--ease-out), filter 1200ms var(--ease-out);
  }
  .svc-row.in-view .svc-img-wrap img { transform: scale(1); filter: brightness(1); }
  .svc-text { grid-area: text; }
  .svc-num {
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
  }
  .svc-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 700;
    letter-spacing: -0.018em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 14px;
    max-width: 16ch;
  }
  .svc-desc {
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.6;
    color: var(--muted);
    max-width: 48ch;
  }

  /* ═══════════════════════════════════════════════════════════
     CTA BAND
  ═══════════════════════════════════════════════════════════ */
  .cta-band {
    padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 48px);
    background: var(--bg);
  }
  .cta-band-inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
    border-radius: 28px;
    padding: clamp(50px, 7vh, 90px) clamp(28px, 5vw, 80px);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .cta-band-inner::before {
    content: "";
    position: absolute;
    top: -60%; right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, var(--accent-soft), transparent 60%);
    pointer-events: none;
    animation: ctaGradientDrift 12s ease-in-out infinite;
  }
  .cta-band-inner::after {
    content: "";
    position: absolute;
    bottom: -40%; left: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(110,60,200,.08), transparent 60%);
    pointer-events: none;
    animation: ctaGradientDrift 14s ease-in-out -3s infinite reverse;
  }
  @keyframes ctaGradientDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%      { transform: translate(-8%, 4%) rotate(15deg); }
    66%      { transform: translate(5%, -6%) rotate(-10deg); }
  }
  .cta-band-inner > * { position: relative; }
  .cta-band h2 {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 800;
    letter-spacing: -0.022em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 18px;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-band p {
    font-size: clamp(14.5px, 1.1vw, 16.5px);
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 30px;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-band-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0 30px;
    background: var(--ink);
    color: #fff;
    border-radius: 999px;
    font-size: 14.5px; font-weight: 600;
    transition: background 200ms ease, gap 240ms var(--ease-out), transform 100ms ease;
  }
  .cta-band-btn:hover { background: var(--ink-soft); gap: 14px; }
  .cta-band-btn:active { transform: scale(.97); }
  .cta-band-btn .arrow { font-size: 16px; }

  /* ═══════════════════════════════════════════════════════════
     INSIGHTS / KNOWLEDGE
  ═══════════════════════════════════════════════════════════ */
  .insights {
    padding: clamp(60px, 9vh, 120px) clamp(20px, 4vw, 48px);
    background: var(--bg);
  }
  .insights-inner { max-width: 1340px; margin: 0 auto; }
  .insights-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: clamp(36px, 5vh, 60px);
  }
  .insights-header .section-title { margin: 0; }
  .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.2vw, 32px);
  }
  .insight-card {
    background: var(--bg);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    cursor: pointer;
    position: relative;
    transition: transform 360ms var(--ease-out), box-shadow 360ms var(--ease-out);
  }
  .insight-card::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,.45), transparent);
    pointer-events: none;
    transition: left 800ms var(--ease-out);
    z-index: 2;
  }
  .insight-card:hover::before { left: 150%; }
  .insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.18);
  }
  .insight-img {
    width: 100%;
    aspect-ratio: 16 / 11;
    background-size: cover;
    background-position: center;
    transition: transform 800ms var(--ease-out);
  }
  .insight-card:hover .insight-img { transform: scale(1.04); }
  .insight-img-1 { background-image: url("https://images.unsplash.com/photo-1573164574572-cb89e39749b4?w=800&h=550&fit=crop&auto=format&q=80"); }
  .insight-img-2 { background-image: url("https://images.unsplash.com/photo-1560264280-88b68371db39?w=800&h=550&fit=crop&auto=format&q=80"); }
  .insight-img-3 { background-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=800&h=550&fit=crop&auto=format&q=80"); }
  .insight-tag {
    position: absolute;
    margin: -36px 18px 0;
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg);
    color: var(--accent);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid var(--line);
  }
  .insight-body {
    padding: clamp(20px, 2.4vw, 30px);
    padding-top: 20px;
  }
  .insight-title {
    font-size: clamp(16px, 1.4vw, 19px);
    font-weight: 700;
    letter-spacing: -0.012em;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .insight-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 240ms var(--ease-out);
  }
  .insight-card:hover .insight-link { gap: 10px; }

  /* ═══════════════════════════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════════════════════════ */
  .footer {
    background: var(--ink);
    color: rgba(255,255,255,.78);
    padding: clamp(60px, 8vh, 100px) clamp(20px, 4vw, 48px) 30px;
  }
  .footer-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    margin-bottom: 50px;
  }
  .footer-brand .logo {
    height: 42px;
    margin-bottom: 22px;
  }
  .footer-brand .logo svg path,
  .footer-brand .logo svg polygon {
    fill: #f5f5f5; stroke: #f5f5f5;
  }
  .footer-brand p {
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 32ch;
    margin-bottom: 28px;
    color: rgba(255,255,255,.6);
  }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  }
  .footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .footer-social svg { width: 16px; height: 16px; }

  .footer-col h5 {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 18px;
  }
  .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    font-size: 13.5px;
    color: rgba(255,255,255,.62);
    transition: color 200ms ease;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-col li.contact-row {
    font-size: 13px;
    color: rgba(255,255,255,.62);
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }
  .footer-col .row-icon { color: var(--accent); font-size: 14px; flex: 0 0 auto; margin-top: 1px; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 1340px;
    margin: 0 auto;
    font-size: 12.5px;
    color: rgba(255,255,255,.45);
  }
  .footer-bottom-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
  }
  .footer-bottom-links a:hover { color: var(--accent); }

  /* ═══════════════════════════════════════════════════════════
     COOKIE / Privacy modal
  ═══════════════════════════════════════════════════════════ */
  .cookie-policy {
    position: fixed; inset: 0;
    z-index: 110;
    display: none;
    align-items: center; justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .cookie-policy.show { display: flex; }
  .cookie-policy-box {
    max-width: 600px; max-height: 80vh;
    overflow-y: auto;
    padding: 32px 30px;
    background: #fff;
    border-radius: 22px;
    color: var(--ink);
    font-size: 13.5px;
    line-height: 1.6;
  }
  .cookie-policy-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
  .cookie-policy-box h4 { font-size: 14px; font-weight: 700; margin: 16px 0 8px; }
  .cookie-policy-box p { margin-bottom: 8px; color: var(--muted); }
  .cookie-policy-box a { color: var(--accent); }
  .cookie-policy-close {
    margin-top: 22px;
    width: 100%; height: 44px;
    background: var(--ink); color: #fff;
    border: none; border-radius: 12px;
    font-family: inherit; font-size: 14px; font-weight: 600;
    cursor: pointer;
  }

  /* Scroll-reveal helper */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 900ms var(--ease-out), transform 1100ms var(--ease-out);
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
  .reveal-stagger > * {
    opacity: 0; transform: translateY(28px);
    transition: opacity 800ms var(--ease-out), transform 1000ms var(--ease-out);
  }
  .reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0ms; }
  .reveal-stagger.in-view > *:nth-child(2) { transition-delay: 120ms; }
  .reveal-stagger.in-view > *:nth-child(3) { transition-delay: 240ms; }
  .reveal-stagger.in-view > *:nth-child(4) { transition-delay: 360ms; }

  [data-i18n] { transition: opacity 220ms var(--ease-out); }
  body.lang-changing [data-i18n] { opacity: 0; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .001ms !important;
      transition-duration: .001ms !important;
    }
  }

  /* ═══════════════════════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════════════════════ */
  @media (max-width: 1100px) {
    .nav { gap: 14px; }
    .nav a { font-size: 13px; }
    .hero-cards { max-width: 720px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .stats-image { grid-column: 1 / -1; aspect-ratio: 21/8; }
    .values-inner { grid-template-columns: 1fr; gap: 40px; }
    .values-image { max-height: 480px; aspect-ratio: 16/10; }
    .why-inner { grid-template-columns: 1fr; gap: 40px; }
    .why-visual { aspect-ratio: 16/11; max-height: none; }
  }
  /* Backdrop — click-area to dismiss dropdown */
  .nav-backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,.25);
    z-index: 90;
  }
  .nav-backdrop.open { display: block; animation: backdropFade 220ms var(--ease-out); }
  @keyframes backdropFade { from {opacity:0} to {opacity:1} }
  body.nav-open { overflow: hidden; }

  @media (max-width: 860px) {
    .nav {
      display: none;
      position: fixed;
      top: 64px;
      left: 12px;
      right: 12px;
      width: auto;
      height: auto;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: #ffffff;
      padding: 8px;
      border-radius: 18px;
      border: 1px solid rgba(10,10,10,.08);
      box-shadow:
        0 8px 24px rgba(10,10,10,.08),
        0 24px 60px rgba(10,10,10,.14);
      z-index: 100;
      overflow: hidden;
    }
    .nav.open { display: flex; animation: navDropDown 260ms var(--ease-out); }
    @keyframes navDropDown {
      from { opacity: 0; transform: translateY(-10px) scale(.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    .nav a {
      width: 100%;
      padding: 15px 18px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: -0.005em;
      color: var(--ink);
      border-radius: 12px;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 180ms ease, color 180ms ease;
    }
    .nav a:not(:last-child) { border-bottom: 1px solid rgba(10,10,10,.05); border-radius: 0; }
    .nav a:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; }
    .nav a:last-child  { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }
    .nav a::after {
      content: "→";
      position: static;
      transform: none;
      background: none;
      font-size: 15px;
      color: var(--accent);
      opacity: .55;
      transition: opacity 200ms ease, transform 200ms ease;
      display: inline-block;
    }
    .nav a:active {
      background: rgba(255,90,44,.08);
      color: var(--accent);
    }
    .nav a:active::after { opacity: 1; transform: translateX(3px); }
    .menu-toggle { display: inline-flex; margin-left: 12px; }
    .header-right .btn-cta { display: none; }
    .header-right { gap: 10px; margin-left: auto; }
    .header { padding-right: 14px; }
    .hero-cards { grid-template-columns: 1fr; max-width: 480px; }
    .hero-img { width: 100%; opacity: .35; }
    .hero-img::after {
      background: linear-gradient(180deg, rgba(250,250,247,.4) 0%, rgba(250,250,247,.85) 100%);
    }
    .insights-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .svc-row, .svc-row.reverse {
      grid-template-columns: 1fr;
      grid-template-areas: "img" "text";
    }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .testimonial-quote { font-size: clamp(18px, 5vw, 24px); }
    .quote-mark { font-size: 100px; }
  }
  @media (max-width: 540px) {
    .stats-inner { grid-template-columns: 1fr; }
    .stats-image { grid-column: auto; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .insights-header { flex-direction: column; align-items: flex-start; }
    .header { padding-left: 16px; padding-right: 16px; }
    .logo { height: 34px; }
    .lang { height: 30px; }
    .lang-btn { font-size: 10px; padding: 0 9px; }
  }

/* ═══════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS — applies only at ≤640px, does not touch desktop
═══════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  /* Header: compress nav + hide CTA button (replaced by hamburger menu) */
  .nav { gap: 12px; }
  .nav a { font-size: 12.5px; padding: 8px 4px; }
  .header-right { gap: 8px; }
  .header-right .btn-cta { padding: 0 14px; font-size: 12px; height: 34px; }
}
@media (max-width: 640px) {
  /* Header — minimal, hamburger primary */
  .header { padding: 12px 16px; gap: 8px; }
  .header.scrolled { padding: 10px 16px; }
  .logo { height: 32px; }
  .header-right .btn-cta { display: none; }
  .lang { height: 30px; padding: 2px; }
  .lang-btn { font-size: 10px; padding: 0 8px; }
  .menu-toggle { display: inline-flex; }

  /* Hero detail (service pages) — readable on small screens */
  .hero-detail { padding: 110px 18px 60px; }
  .hero-detail h1 { font-size: clamp(28px, 9vw, 42px); line-height: 1.05; }
  .hero-detail-lead { font-size: 15px; margin-bottom: 26px; }
  .hero-detail-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-detail-ctas a { justify-content: center; width: 100%; }

  /* Benefits / values / insights — single column with tighter spacing */
  .benefits-inner, .insights-inner, .values-inner { padding: 0; }
  .benefits-grid, .values-grid, .insights-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit-card, .insight-card, .value-card { padding: 22px; }
  .benefit-card h4, .insight-title, .value-card h4 { font-size: 16px; }

  /* Section titles tighter */
  .section-title { font-size: clamp(26px, 7vw, 34px); line-height: 1.1; }
  .section-lead { font-size: 14.5px; }

  /* Stats — 2 columns, tighter */
  .stats-inner { grid-template-columns: 1fr 1fr !important; }
  .stat-card { padding: 22px 16px; }
  .stat-num { font-size: clamp(38px, 11vw, 52px); }

  /* Service rows — stack image then text */
  .svc-row, .svc-row.reverse {
    grid-template-columns: 1fr !important;
    grid-template-areas: "img" "text" !important;
    gap: 18px;
    margin-bottom: 50px;
  }
  .svc-title { font-size: clamp(20px, 6vw, 26px); }
  .svc-desc { font-size: 14.5px; }
  .svc-cat-title { font-size: clamp(22px, 6vw, 28px); margin-bottom: 28px; padding-bottom: 16px; }

  /* Why section — stack with smaller badge */
  .why-inner { grid-template-columns: 1fr; gap: 30px; }
  .why-visual { aspect-ratio: 16/11; max-height: none; }
  .why-badge { bottom: 16px; left: 16px; right: 16px; padding: 14px 18px; }
  .why-badge-num { font-size: 24px; }
  .why-list-item { padding: 12px 14px; }

  /* Testimonial — smaller quote */
  .testimonial { padding: 50px 20px; }
  .testimonial-quote { font-size: clamp(18px, 5.5vw, 22px); margin-bottom: 28px; }
  .quote-mark { font-size: 80px; }
  .testimonial-author { padding: 10px 16px; gap: 12px; }

  /* CTA band — tighter padding */
  .cta-band-inner { padding: 40px 22px; border-radius: 20px; }
  .cta-band h2 { font-size: clamp(22px, 6.5vw, 30px); }
  .cta-band p { font-size: 14.5px; margin-bottom: 22px; }
  .cta-band-btn { height: 48px; padding: 0 24px; font-size: 13.5px; }

  /* FAQ — tighter */
  .faq { padding: 50px 18px; }
  .faq-q { padding: 18px 20px; font-size: 14.5px; gap: 14px; }
  .faq-icon { width: 24px; height: 24px; font-size: 16px; }
  .faq-a-inner { padding: 0 20px 18px; font-size: 13.5px; }

  /* Footer — single column, tighter */
  .footer { padding: 50px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 32px; margin-bottom: 32px; }
  .footer-brand p { max-width: none; }
  .footer-col h5 { font-size: 11px; }
  .footer-col a, .footer-col li.contact-row { font-size: 13.5px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 12px; }
}
@media (max-width: 380px) {
  .nav a { font-size: 12px; }
  .hero-detail h1 { font-size: clamp(26px, 9vw, 36px); }
  .section-title { font-size: clamp(24px, 7vw, 30px); }
  .stats-inner { grid-template-columns: 1fr !important; }
}
