  /* ─── DESIGN TOKENS ─── */
  :root {
    --c-bg: #fbfbf9;
    --c-text-subdued: #5b666f;
    --c-white: #ffffff;
    --c-accent: #004250;
    --shadow-card: 0px 17px 37px rgba(41,42,45,0.02), 0px 67px 67px rgba(41,42,45,0.02), 0px 150px 90px rgba(41,42,45,0.01), 0px 267px 107px rgba(41,42,45,0);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 9999px;
    --max-w: 1280px;
    --pad-h: 40px;
    --ease-organic: cubic-bezier(0.22, 1, 0.36, 1);
    --dur-btn: 0.45s;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  /* ─── DECK-STYLE SNAP SCROLL (desktop only) ─── */
  @media (min-width: 901px) {
    html {
      scroll-padding-top: 64px;
    }
    #solution,
    #why,
    #services,
    #testimonials,
    #process,
    #faq,
    #cta-final {
      min-height: 90vh;
      display: flex;
      align-items: center;
    }
    #solution > .container,
    #why > .container,
    #services > .container,
    #testimonials > .container,
    #process > .container,
    #faq > .container,
    #cta-final > .container {
      width: 100%;
    }
    #services,
    #testimonials,
    #faq {
      padding-top: 100px;
      padding-bottom: 100px;
    }
    .faq-item { padding: 16px 0; }
  }

  body {
    font-family: var(--font-sans);
    background: var(--c-bg);
    color: var(--c-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ─── CONTAINER ─── */
  .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-h);
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(251,251,249,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-border);
    transition: opacity 220ms ease, transform 220ms ease;
  }
  nav.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }
  @media (max-width: 900px) {
    nav.is-hidden {
      opacity: 1;
      pointer-events: auto;
      transform: none;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    nav { transition: none; }
  }
  .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-h);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--c-text);
    letter-spacing: -0.5px;
    text-decoration: none;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px;
    color: var(--c-text-secondary);
    text-decoration: none;
    transition: color var(--dur-btn) var(--ease-organic);
  }
  .nav-links a:not(.nav-cta) {
    position: relative;
  }
  .nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1.5px;
    background: var(--c-btn);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--dur-btn) var(--ease-organic);
  }
  .nav-links a:not(.nav-cta):hover { color: var(--c-btn); }
  .nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--c-btn);
    color: var(--c-white) !important;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px !important;
    line-height: 1;
    transition: background var(--dur-btn) var(--ease-organic) !important;
  }
  .nav-cta:hover { background: var(--c-btn-hover) !important; color: var(--c-white) !important; }
  .nav-cta::after {
    content: '→';
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 1.25em;
    max-width: 0;
    margin-left: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width var(--dur-btn) var(--ease-organic), margin-left var(--dur-btn) var(--ease-organic), opacity var(--dur-btn) var(--ease-organic);
  }
  .nav-cta:hover::after {
    max-width: 1.5em;
    margin-left: 6px;
    opacity: 1;
  }
  .nav-mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--c-text);
  }

  /* ─── BUTTONS ─── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    border-radius: var(--radius-pill);
    padding: 10px 24px;
    height: 44px;
    text-decoration: none;
    transition: background var(--dur-btn) var(--ease-organic), transform var(--dur-btn) var(--ease-organic);
    letter-spacing: -0.2px;
  }
  .btn-primary { background: var(--c-btn); color: var(--c-white); }
  .btn-primary:hover { background: var(--c-btn-hover); transform: translateY(-1px); }
  .btn-primary::after {
    content: '→';
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 1.25em;
    max-width: 0;
    margin-left: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width var(--dur-btn) var(--ease-organic), margin-left var(--dur-btn) var(--ease-organic), opacity var(--dur-btn) var(--ease-organic);
  }
  .btn-primary:hover::after {
    max-width: 1.5em;
    margin-left: 8px;
    opacity: 1;
  }
  .btn-sm { font-size: 14px; height: 36px; padding: 8px 18px; }

  /* ─── LOCATION PILL ─── */
  .location-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: #A6A09B;
  }

  /* ─── SCROLL ANIMATION ─── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }

  /* ─── SECTION HEADINGS ─── */
  .section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-secondary);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-sans);
    font-size: 48px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: -1.92px;
    color: var(--c-text);
    margin-bottom: 24px;
  }
  @keyframes title-em-shine {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
  }
  .section-title em,
  .problem-card-headline em,
  .outcome-headline em,
  .objection-bold em {
    font-style: italic;
    display: inline-block;
    padding: 0 0.12em;
    margin: 0 -0.12em;
    background: linear-gradient(
      90deg,
      #C2AB8E 0%,
      #C2AB8E 42%,
      #F0DDC2 50%,
      #C2AB8E 58%,
      #C2AB8E 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: title-em-shine 7s linear infinite;
  }
  /* ─── ICON CIRCLE ─── */
  .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-text);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 280ms ease, transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .icon-circle svg {
    width: 16px;
    height: 16px;
    stroke: var(--c-white);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }


  /* ═══════════════════════════════════════
     SECTION 1: HERO
  ═══════════════════════════════════════ */
  #hero {
    position: relative;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: 60% center;
    background-repeat: no-repeat;
    padding-top: calc(80px + 64px);
    padding-bottom: 160px;
    overflow: hidden;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 15, 0.48);
    z-index: 0;
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
  }
  .hero-text { max-width: 1100px; }

  .hero-eyebrow {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
  }
  .hero-headline {
    font-family: var(--font-sans);
    font-size: 72px;
    font-weight: 400;
    line-height: 78px;
    letter-spacing: -2.7px;
    color: #ffffff;
    margin-bottom: 24px;
  }
  .hero-headline em {
    font-style: italic;
    display: inline-block;
    padding: 0 0.12em;
    margin: 0 -0.12em;
    background: linear-gradient(
      90deg,
      #cfc6b0 0%,
      #cfc6b0 35%,
      #ffffff 50%,
      #cfc6b0 65%,
      #cfc6b0 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: title-em-shine 7s linear infinite;
  }
  .hero-subheadline {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 32px;
    max-width: 480px;
  }
  .hero-bullets {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255,255,255,0.88);
  }
  .hero-bullets li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    flex-shrink: 0;
  }

  /* ─── SHARED INPUT (used by hero easy-form) ─── */
  .trust-cta-input {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--c-text);
    background: var(--c-bg-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 0 18px;
    height: 44px;
    outline: none;
    transition: border-color 0.2s;
    width: 180px;
  }
  .trust-cta-input:focus { border-color: var(--c-text-secondary); }
  .trust-cta-input::placeholder { color: #b0aea9; }
  .trust-cta-btn { white-space: nowrap; flex-shrink: 0; }

  /* ─── HERO EASY-FORM (glass → solid on hover) ─── */
  .hero-easy-form {
    margin-top: 32px;
    max-width: 560px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.22);
    transition: background 240ms ease, border-color 240ms ease,
                box-shadow 240ms ease, transform 240ms ease;
  }
  .hero-easy-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
    transition: color 240ms ease;
  }
  .hero-easy-desc {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    margin: 0 0 18px;
    transition: color 240ms ease;
  }
  .hero-easy-form form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero-easy-form .trust-cta-input {
    background: rgba(255,255,255,0.10);
    color: #fff;
    border-color: rgba(255,255,255,0.28);
    width: auto;
    flex: 1;
    min-width: 140px;
    transition: background 240ms ease, border-color 240ms ease, color 240ms ease;
  }
  .hero-easy-form .trust-cta-input::placeholder { color: rgba(255,255,255,0.65); }

  .hero-easy-form:hover,
  .hero-easy-form:focus-within,
  .hero-easy-form.is-tapped {
    background: #ffffff;
    border-color: rgba(0,0,0,0.06);
    box-shadow: 0 18px 50px rgba(20,18,15,0.28);
    transform: translateY(-2px);
  }
  .hero-easy-form:hover .hero-easy-title,
  .hero-easy-form:focus-within .hero-easy-title,
  .hero-easy-form.is-tapped .hero-easy-title { color: var(--c-text); }
  .hero-easy-form:hover .hero-easy-desc,
  .hero-easy-form:focus-within .hero-easy-desc,
  .hero-easy-form.is-tapped .hero-easy-desc { color: var(--c-text-secondary); }
  .hero-easy-form:hover .trust-cta-input,
  .hero-easy-form:focus-within .trust-cta-input,
  .hero-easy-form.is-tapped .trust-cta-input {
    background: var(--c-bg-alt);
    color: var(--c-text);
    border-color: var(--c-border);
  }
  .hero-easy-form:hover .trust-cta-input::placeholder,
  .hero-easy-form:focus-within .trust-cta-input::placeholder,
  .hero-easy-form.is-tapped .trust-cta-input::placeholder { color: #b0aea9; }
  @media (max-width: 900px) {
    .hero-easy-form { max-width: 100%; }
  }

  /* ═══════════════════════════════════════
     BENTO GRID (used inside Still Wondering)
  ═══════════════════════════════════════ */
  .bento-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      "big top"
      "big bottom";
    gap: 16px;
    min-height: 340px;
  }
  .bento-card {
    background: #dcd8d2;
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    text-align: left;
  }
  .bento-card:nth-child(1) { grid-area: big; }
  .bento-card:nth-child(2) { grid-area: top; }
  .bento-card:nth-child(3) { grid-area: bottom; }
  .bento-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: transform;
  }
  @media (hover: hover) and (min-width: 901px) {
    .bento-card:hover .bento-card-img { transform: scale(1.07); }
  }
  .bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.42) 45%, rgba(0,0,0,0.05) 80%);
    z-index: 1;
    pointer-events: none;
  }
  .bento-card-text {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.88px;
    color: #ffffff;
    margin: 0;
    max-width: 100%;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 12px rgba(0,0,0,0.25);
  }
  @media (max-width: 900px) {
    .bento-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      grid-template-areas: "big" "top" "bottom";
      min-height: 0;
      gap: 14px;
    }
    .bento-card { padding: 32px; min-height: 200px; }
    .bento-card-text {
      font-size: 20px;
      line-height: 28px;
      letter-spacing: -0.8px;
    }
  }
  @media (max-width: 480px) {
    .bento-card { padding: 28px; min-height: 180px; }
    .bento-card-text {
      font-size: 18px;
      line-height: 26px;
      letter-spacing: -0.72px;
    }
  }

  /* ═══════════════════════════════════════
     SECTION 3: PROBLEM
  ═══════════════════════════════════════ */
  #problem {
    background: var(--c-bg);
    padding: 160px 0;
  }
  .problem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
  .problem-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 600px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #d9d4ca;
  }
  .problem-carousel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .problem-carousel-img.active { opacity: 1; }
  .problem-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
  }
  .problem-card-block {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-card);
  }
  .problem-card-block .section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-secondary);
    margin-bottom: 16px;
  }
  .problem-card-headline {
    font-family: var(--font-sans);
    font-size: 48px;
    font-weight: 400;
    line-height: 58px;
    color: var(--c-text);
    margin-bottom: 24px;
    letter-spacing: -1.92px;
  }
  .problem-body p {
    font-size: 18px;
    line-height: 28px;
    color: var(--c-text);
    margin-bottom: 16px;
  }
  .problem-body p:last-child { margin-bottom: 0; }
  .problem-subheading {
    font-size: 18px;
    color: var(--c-text);
    margin-bottom: 24px;
  }
  .problem-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
  .problem-checklist li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    line-height: 26px;
    color: var(--c-text);
  }
  .problem-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--c-text);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .problem-check svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @media (max-width: 768px) {
    .problem-inner { grid-template-columns: 1fr; gap: 24px; }
    .problem-carousel { min-height: 400px; }
    .problem-card-block { padding: 32px; }
    .problem-card-headline { font-size: 38px; line-height: 46px; }
  }

  /* ═══════════════════════════════════════
     SECTION 4: SOLUTION
  ═══════════════════════════════════════ */
  #solution {
    background: var(--c-bg);
    padding: 160px 0;
  }
  .solution-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .solution-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
  }
  .service-pill {
    background: var(--c-bg-alt);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 14px;
    color: var(--c-text);
    line-height: 22px;
    cursor: default;
    transition: background var(--dur-btn) var(--ease-organic), transform var(--dur-btn) var(--ease-organic), box-shadow var(--dur-btn) var(--ease-organic);
  }
  .service-pill:hover {
    background: var(--c-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41,42,45,0.06);
  }

  /* ═══════════════════════════════════════
     SECTION 5: EMOTIONAL OUTCOME
  ═══════════════════════════════════════ */
  #outcome {
    background: var(--c-bg-alt);
    padding: 160px 0;
  }
  .outcome-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
  .outcome-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 600px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #d9d4ca;
  }
  .outcome-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .outcome-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
  }
  .outcome-card-block {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-card);
  }
  .outcome-card-block .section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-secondary);
    margin-bottom: 16px;
  }
  .outcome-card-block .outcome-headline {
    font-family: var(--font-sans);
    font-size: 48px;
    font-weight: 400;
    line-height: 58px;
    color: var(--c-text);
    margin-bottom: 24px;
    letter-spacing: -1.92px;
  }
  .outcome-body p {
    font-size: 18px;
    line-height: 28px;
    color: var(--c-text);
    margin-bottom: 16px;
  }
  .outcome-body p:last-child { margin-bottom: 0; }
  .outcome-subheading {
    font-size: 18px;
    color: var(--c-text);
    margin-bottom: 24px;
  }
  .outcome-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .outcome-checklist li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    line-height: 26px;
    color: var(--c-text);
  }
  .outcome-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--c-text);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .outcome-check svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @media (max-width: 768px) {
    .outcome-inner { grid-template-columns: 1fr; gap: 24px; }
    .outcome-card-block { padding: 32px; }
    .outcome-card-block .outcome-headline { font-size: 38px; line-height: 46px; }
  }

  /* ═══════════════════════════════════════
     SECTION 6: WHY M&L
  ═══════════════════════════════════════ */
  #why {
    background: var(--c-bg);
    padding: 160px 0;
  }
  .why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "header header"
      "media list";
    column-gap: 80px;
    row-gap: 56px;
    align-items: center;
  }
  .why-header {
    grid-area: header;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .why-media { grid-area: media; }
  .why-list { grid-area: list; }
  .why-desc {
    font-size: 18px;
    line-height: 30px;
    color: var(--c-text-secondary);
    max-width: 600px;
  }
  .why-reasons {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .why-reason {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .why-reason .icon-circle {
    width: 52px;
    height: 52px;
  }
  .why-reason .icon-circle svg {
    width: 20px;
    height: 20px;
  }
  .why-reason-text { font-size: 18px; line-height: 30px; color: var(--c-text); }
  .why-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-top: 16px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--c-bg-alt);
  }
  .why-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 900ms ease;
  }
  .why-slide.is-active { opacity: 1; }
  .why-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
  }
  .why-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    border: none;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(0,0,0,0.25);
    transition: background 200ms ease, transform 200ms ease;
  }
  .why-slider-dot:hover { background: rgba(255,255,255,0.9); }
  .why-slider-dot.is-active { background: #fff; transform: scale(1.3); }

  /* ═══════════════════════════════════════
     SECTION 7: SERVICES
  ═══════════════════════════════════════ */
  #services {
    background: var(--c-bg-alt);
    padding: 160px 0;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 64px;
  }
  .service-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
                box-shadow 320ms ease;
  }
  .service-card-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--c-text);
    line-height: 26px;
    letter-spacing: -0.3px;
    transition: color 240ms ease;
  }
  .service-card-desc {
    font-size: 14px;
    line-height: 22px;
    color: var(--c-text-secondary);
  }
  .service-card::after {
    content: 'Learn more →';
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-btn);
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 280ms ease, transform 280ms ease;
  }
  @media (hover: hover) and (min-width: 901px) {
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 44px rgba(41,42,45,0.14);
    }
    .service-card:hover .icon-circle {
      background: var(--c-btn);
    }
    .service-card:hover::after {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .services-cta {
    margin-top: 56px;
    text-align: center;
  }

  /* ═══════════════════════════════════════
     SECTION 8: OBJECTION
  ═══════════════════════════════════════ */
  #objection {
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%);
    padding: 40px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
  }
  .objection-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    background: var(--c-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 56px 56px;
  }
  .objection-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .objection-header .section-eyebrow {
    margin-bottom: 0;
  }
  .objection-header .section-title {
    margin-bottom: 0;
  }
  .objection-header .section-title em {
    font-style: italic;
    background-image: linear-gradient(to right, var(--c-btn), #90728e, #ff9c7c, var(--c-btn));
    background-size: 300% 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradientYoyo 18s ease-in-out infinite;
  }
  @keyframes gradientYoyo {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  .objection-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 640px;
  }
  .objection-body p {
    font-size: 20px;
    line-height: 32px;
    color: var(--c-text);
    margin: 0;
  }
  .objection-bold {
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 38px;
    font-weight: 300;
    color: var(--c-text);
    letter-spacing: -0.3px;
    max-width: 640px;
  }
  .objection-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  @media (max-width: 768px) {
    #objection { min-height: 0; padding: 80px 0; }
    .objection-inner { gap: 40px; padding: 56px 28px; }
    .objection-bold { font-size: 22px; line-height: 32px; }
    .objection-body p { font-size: 18px; line-height: 28px; }
  }

  /* ═══════════════════════════════════════
     SECTION 9: TESTIMONIALS
  ═══════════════════════════════════════ */
  #testimonials {
    background: var(--c-bg-alt);
    padding: 160px 0;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }
  .testimonial-card {
    background: linear-gradient(180deg, #f9f8f7 0%, #f4f2f7 100%);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1),
                box-shadow 280ms ease,
                z-index 0s linear 0s;
    will-change: transform;
  }
  .testimonial-stars {
    color: #b5a99a;
    font-size: 14px;
    letter-spacing: 2px;
  }
  .testimonial-quote {
    font-size: 16px;
    line-height: 26px;
    color: var(--c-text);
    font-style: italic;
    transition: font-size 280ms ease, line-height 280ms ease;
  }
  .testimonial-attr {
    font-size: 13px;
    color: var(--c-text-secondary);
    margin-top: auto;
  }
  @media (hover: hover) and (min-width: 901px) {
    .testimonial-card:hover {
      transform: scale(1.08);
      box-shadow: 0 24px 60px rgba(41,42,45,0.14);
      z-index: 5;
      position: relative;
    }
    .testimonial-card:hover .testimonial-quote {
      font-size: 18px;
      line-height: 28px;
    }
  }
  .testimonials-cta {
    margin-top: 56px;
    text-align: center;
  }

  /* ═══════════════════════════════════════
     SECTION 10: PROCESS
  ═══════════════════════════════════════ */
  #process {
    background: var(--c-bg);
    padding: 160px 0;
  }
  .process-inner {
    background: var(--c-text);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(41,42,45,0.10),
                0 8px 24px rgba(41,42,45,0.06);
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .process-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
  }
  .process-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,18,15,0.82) 0%, rgba(20,18,15,0.62) 60%, rgba(20,18,15,0.78) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .process-inner > .process-header,
  .process-inner > .process-steps {
    position: relative;
    z-index: 2;
  }
  .process-inner .section-eyebrow { color: rgba(255,255,255,0.78); }
  .process-inner .section-title { color: #ffffff; }
  .process-inner .process-step-number { color: rgba(255,255,255,0.35); }
  .process-inner .process-step-title { color: #ffffff; }
  .process-inner .process-step-desc { color: rgba(255,255,255,0.82); }
  .process-header {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .process-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .process-step-number {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 400;
    color: var(--c-border);
    line-height: 1;
    letter-spacing: -1.2px;
  }
  .process-step-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--c-text);
    letter-spacing: -0.4px;
    line-height: 34px;
    min-height: 68px;
    display: flex;
    align-items: center;
  }
  @media (max-width: 768px) {
    .process-step-title { min-height: 0; display: block; }
  }
  .process-step-desc {
    font-size: 18px;
    line-height: 28px;
    color: var(--c-text-secondary);
  }

  /* ═══════════════════════════════════════
     SECTION 11: LOCAL
  ═══════════════════════════════════════ */
  #local {
    background: var(--c-bg-alt);
    padding: 160px 0;
  }
  .local-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .local-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
  }

  /* ═══════════════════════════════════════
     SECTION 12: FAQ
  ═══════════════════════════════════════ */
  #faq {
    background: var(--c-bg);
    padding: 160px 0;
  }
  .faq-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .faq-item {
    border-top: 1px solid var(--c-border);
    padding: 20px 0;
  }
  .faq-item:last-child {
    border-bottom: 1px solid var(--c-border);
  }
  .faq-question {
    font-size: 16px;
    font-weight: 400;
    color: var(--c-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
  }
  .faq-question:hover { color: var(--c-text-secondary); }
  .faq-chevron {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
  }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-answer {
    font-size: 15px;
    line-height: 24px;
    color: var(--c-text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
  }
  .faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 12px;
  }

  /* ═══════════════════════════════════════
     SECTION 13: FINAL CTA
  ═══════════════════════════════════════ */
  #cta-final {
    background: var(--c-bg-alt);
    padding: 120px 0;
  }
  .cta-final-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .cta-final-left .section-title { margin-bottom: 16px; }
  .cta-final-subtitle {
    font-size: 18px;
    line-height: 28px;
    color: var(--c-text-secondary);
  }
  .cta-form {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-label {
    font-size: 13px;
    color: var(--c-text-secondary);
    letter-spacing: 0.02em;
  }
  .form-input {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--c-text);
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-input:focus { border-color: var(--c-text-secondary); }
  .form-input::placeholder { color: #b0aea9; }
  .form-textarea {
    resize: vertical;
    min-height: 90px;
  }
  .form-microcopy {
    font-size: 13px;
    color: var(--c-text-secondary);
    text-align: center;
    margin-top: 4px;
  }

  /* ═══════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════ */
  footer {
    background: var(--c-text);
    color: var(--c-white);
    padding: 60px 0 40px;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: start;
  }
  .footer-logo {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--c-white);
    letter-spacing: -0.5px;
  }
  .footer-links {
    display: flex;
    gap: 60px;
  }
  .footer-col-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--c-white); }
  .footer-contact { text-align: right; }
  .footer-contact a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--c-white); }
  .footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
  }

  /* ═══════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════ */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    :root { --pad-h: 24px; }

    #hero { padding-top: calc(60px + 64px); padding-bottom: 120px; background-position: center center; }
    .hero-inner { flex-direction: column; }
    .hero-text { max-width: 100%; }
    .hero-headline { font-size: 54px; line-height: 62px; }

    .problem-inner,
    .solution-inner,
    .outcome-inner,
    .why-inner,
    .faq-inner,
    .local-inner,
    .cta-final-inner { grid-template-columns: 1fr; gap: 48px; }
    .why-inner { grid-template-areas: "header" "media" "list"; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 40px; }
    .process-inner { padding: 56px 32px; gap: 40px; border-radius: 22px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    #problem, #solution, #outcome, #why, #services,
    #objection, #testimonials, #process, #local,
    #faq, #cta-final { padding: 100px 0; }

    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-contact { text-align: left; }
    .nav-links { display: none; }
    .nav-mobile-btn { display: flex; }
  }

  @media (max-width: 480px) {
    :root { --pad-h: 20px; }
    #hero { padding-top: calc(40px + 64px); padding-bottom: 80px; }
    .hero-headline { font-size: 44px; line-height: 52px; }
    .section-title { font-size: 38px; line-height: 46px; }
    .services-grid { grid-template-columns: 1fr; }
    .solution-services { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 32px; }
    #problem, #solution, #outcome, #why, #services,
    #objection, #testimonials, #process, #local,
    #faq, #cta-final { padding: 80px 0; }
  }
