  *,*::before,*::after{box-sizing:border-box}
  html,body{margin:0;padding:0}
  html{scroll-behavior:smooth}
  body{
    font-family: var(--font-body, "Onest"), ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01","cv11";
    overflow-x: hidden;
  }
  :root{
    --accent: #F5B324;
    --accent-ink: #1A1410;
    --bg: #FAF7F2;
    --surface: #FFFFFF;
    --surface-2: #F1ECE3;
    --ink: #14110E;
    --ink-2: #4A453D;
    --ink-3: #8B847A;
    --line: #E8E2D5;
    --line-2: #D8D1C0;
    --black: #14110E;
    --r-card: 18px;
    --r-pill: 999px;
    --r-input: 12px;
    --space: 1;
    --container: 1240px;
    --maxw: min(var(--container), calc(100vw - 48px));
  }
  body[data-mode="dark"]{
    --bg: #0E0C0A;
    --surface: #15110D;
    --surface-2: #1C1814;
    --ink: #F5EFE3;
    --ink-2: #B8B0A0;
    --ink-3: #807868;
    --line: #2A241D;
    --line-2: #3A3328;
    --black: #000;
  }
  body[data-rounded="sharp"]{ --r-card:6px; --r-input:6px; }
  body[data-rounded="soft"]{ --r-card:18px; --r-input:12px; }
  body[data-rounded="pill"]{ --r-card:26px; --r-input:16px; }
  body[data-density="compact"]{ --space:.82 }
  body[data-density="comfy"]{ --space:1.18 }

  /* Display font binds at root */
  h1,h2,h3,.display{ font-family: var(--font-display, "Unbounded"), "Onest", system-ui, sans-serif; font-weight: 700; letter-spacing: -.02em;}
  h1{ letter-spacing: -.035em; }
  h2{ letter-spacing: -.028em; }
  a{ color: inherit; text-decoration: none; }
  button{ font-family: inherit; cursor: pointer; }
  input, select, textarea{ font-family: inherit; }

  /* Containers / utilities */
  .wrap{ width: var(--maxw); margin: 0 auto; }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-2); font-weight: 600;
  }
  .eyebrow::before{
    content:""; width: 22px; height: 1px; background: currentColor; opacity:.6;
  }
  .pill{
    display:inline-flex; align-items:center; gap:8px;
    padding: 7px 12px; border-radius: var(--r-pill);
    background: var(--surface); border:1px solid var(--line);
    font-size: 12.5px; font-weight: 500; color: var(--ink-2);
  }
  .pill .dot{ width:7px; height:7px; border-radius:50%; background: #22A55E; box-shadow: 0 0 0 4px rgba(34,165,94,.18); }

  /* Buttons */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    height: 52px; padding: 0 22px; border-radius: var(--r-pill);
    font-weight: 600; font-size: 15px; letter-spacing: -.005em;
    border: 1px solid transparent;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .2s ease;
    white-space: nowrap;
  }
  .btn:active{ transform: translateY(1px); }
  .btn-primary{
    background: var(--accent); color: var(--accent-ink);
    box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 10px 24px -8px color-mix(in oklab, var(--accent) 60%, transparent);
  }
  .btn-primary:hover{ filter: brightness(1.04); box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 14px 30px -8px color-mix(in oklab, var(--accent) 70%, transparent); }
  .btn-ghost{ background: transparent; color: var(--ink); border-color: var(--line-2); }
  .btn-ghost:hover{ background: var(--surface); }
  .btn-dark{ background: var(--ink); color: var(--bg); }
  .btn-dark:hover{ background: color-mix(in oklab, var(--ink) 88%, var(--accent) 12%); }
  .btn-sm{ height: 40px; padding: 0 16px; font-size: 13.5px; }
  .btn-icon-r svg{ transition: transform .2s ease }
  .btn-icon-r:hover svg{ transform: translateX(3px) }

  /* Nav */
  .nav{
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    background: color-mix(in oklab, var(--bg) 78%, transparent);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
  }
  .nav.scrolled{ border-bottom-color: var(--line); }
  .nav-inner{ display:flex; align-items:center; gap: 32px; height: 72px; }
  .logo{ display:flex; align-items:center; gap: 10px; font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
  .logo-mark{
    width: 34px; height: 34px; border-radius: 10px; background: var(--ink);
    color: var(--accent); display: grid; place-items: center; font-weight: 800; font-size: 15px;
    font-family: var(--font-display, "Unbounded"), sans-serif;
    box-shadow: 0 0 0 1px var(--line) inset;
  }
  .nav-links{ display:flex; gap: 6px; margin-left: 18px; }
  .nav-link{ padding: 8px 12px; border-radius: 10px; color: var(--ink-2); font-size: 14px; font-weight: 500; }
  .nav-link:hover{ background: var(--surface); color: var(--ink); }
  .nav-spacer{ flex: 1; }
  .nav-tel{ display:flex; align-items:center; gap:8px; font-weight: 600; font-size: 15px; }
  .nav-tel svg{ color: var(--accent); }

  /* Hero */
  .hero{ padding: 56px 0 64px; position: relative; }
  .hero-grid{
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: stretch;
  }
  .hero-l{ display: flex; flex-direction: column; gap: 28px; padding-top: 16px; }
  .hero-l h1{
    font-size: clamp(40px, 5.6vw, 76px);
    line-height: .96; margin: 0;
  }
  .hero-l h1 .accent-word{
    background: var(--accent); color: var(--accent-ink);
    padding: 0 .12em; border-radius: 14px; display: inline-block;
    transform: rotate(-1.2deg);
  }
  .hero-sub{ font-size: 18px; line-height: 1.5; color: var(--ink-2); max-width: 540px; margin: 0; }
  .hero-offer-banner{
    display:flex;
    align-items:center;
    gap: 12px;
    width: min(100%, 560px);
    padding: 14px 16px;
    border: 1px solid color-mix(in oklab, var(--accent) 62%, var(--line));
    border-radius: 16px;
    background:
      linear-gradient(135deg, color-mix(in oklab, var(--accent) 30%, var(--surface)), var(--surface) 72%);
    box-shadow: 0 18px 34px -28px color-mix(in oklab, var(--accent) 72%, var(--ink));
  }
  .hero-offer-label{
    flex: 0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--bg);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .hero-offer-banner strong{
    color: var(--ink);
    font-size: 18px;
    line-height: 1.18;
    letter-spacing: -.015em;
  }
  .hero-cta{ display:flex; gap: 12px; flex-wrap: wrap; }
  .hero-stats{
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 0; margin-top: 12px;
    border-top: 1px solid var(--line);
  }
  .hero-stat{ padding: 22px 20px 0; border-right: 1px solid var(--line); text-align: center; }
  .hero-stat:last-child{ border-right: 0; }
  .hero-stat .v{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 700; font-size: 34px; line-height: 1;
    letter-spacing: -.02em; display:flex; align-items:baseline; justify-content:center; gap:4px;
  }
  .hero-stat .v small{ font-size: 14px; color: var(--ink-3); font-weight: 500; font-family: var(--font-body); }
  .hero-stat .l{ margin-top: 8px; font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }

  /* Hero card */
  .hero-r{ position: relative; }
  .hero-card{
    position: relative; height: 100%; min-height: 560px;
    border-radius: 28px; overflow: hidden;
    background: var(--ink);
    color: #F5EFE3;
    box-shadow: 0 30px 80px -30px rgba(20,17,14,.4), 0 0 0 1px var(--line);
  }
  .hero-photo{
    position: absolute; inset: 0;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%),
      url("hero-taxi-interior.jpg");
    background-size: cover; background-position: center;
    filter: saturate(.9) contrast(1.05);
  }
  .hero-card[data-style="gradient"] .hero-photo{
    background:
      radial-gradient(120% 90% at 80% 10%, color-mix(in oklab, var(--accent) 50%, transparent), transparent 55%),
      radial-gradient(140% 90% at 10% 90%, rgba(40,30,20,.9), transparent 60%),
      linear-gradient(135deg, #1a1410, #0c0907 70%);
  }
  .hero-card[data-style="gradient"] .hero-photo::after{
    content:"";
    position:absolute; inset:0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(245,179,36,.16), transparent 35%),
      radial-gradient(circle at 80% 70%, rgba(245,179,36,.10), transparent 40%);
  }
  .hero-meter{
    position: absolute; top: 24px; left: 24px; right: 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
  }
  .hero-meter .chip{
    display:inline-flex; gap:8px; align-items:center;
    padding: 8px 12px; border-radius: 999px;
    background: rgba(255,255,255,.1); color: #F5EFE3;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    font-size: 12px; font-weight: 500;
  }
  .hero-meter .chip .live{ width: 7px; height: 7px; background: #5CE08A; border-radius: 50%; box-shadow: 0 0 0 4px rgba(92,224,138,.2); }
  .hero-overlay{
    position: absolute; left: 24px; right: 24px; bottom: 24px;
    display: flex; justify-content: flex-end; align-items: end;
  }
  .hero-overlay .quote{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 22px; line-height: 1.15; letter-spacing: -.01em;
    color: #fff; max-width: 340px;
  }
  .hero-overlay .quote em{ font-style: normal; color: var(--accent); }
  .hero-counter{
    display:flex; align-items:center; gap: 10px;
    padding: 10px 14px; border-radius: 999px;
    background: var(--accent); color: var(--accent-ink);
    font-weight: 600; font-size: 13px;
  }
  .hero-counter svg{ width: 16px; height: 16px; }
  /* Floating sticker */
  .hero-sticker{
    position: absolute; left: -18px; top: 96px;
    width: 130px; height: 130px; border-radius: 50%;
    background: var(--accent); color: var(--accent-ink);
    display: grid; place-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 700; font-size: 16px; line-height: 1.1;
    text-align: center; padding: 18px;
    transform: rotate(-8deg);
    box-shadow: 0 12px 30px -8px color-mix(in oklab, var(--accent) 50%, transparent);
    animation: spin 22s linear infinite;
  }
  @keyframes spin { to { transform: rotate(352deg);} }

  /* Marquee logos */
  .marquee{
    margin-top: 0; padding: 22px 0;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: var(--surface);
    overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .marquee-track{
    display: flex; gap: 56px; align-items: center;
    animation: slide 38s linear infinite;
    white-space: nowrap;
  }
  @keyframes slide { to { transform: translateX(-50%); } }
  .marquee-item{
    display:flex; align-items:center; gap: 10px;
    font-size: 14px; color: var(--ink-2); font-weight: 500;
  }
  .marquee-item svg{ color: var(--accent); }
  .marquee-dot{ width: 4px; height: 4px; background: var(--line-2); border-radius:50%; }

  /* Section base */
  section{ padding: 88px 0; }
  section.tight{ padding: 56px 0; }
  .sec-head{ display:flex; align-items:end; justify-content: space-between; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
  .sec-head h2{ font-size: clamp(32px, 4vw, 52px); line-height: 1.02; margin: 14px 0 0; max-width: 760px; }
  .sec-head .lede{ font-size: 16px; color: var(--ink-2); max-width: 380px; margin: 0; line-height: 1.5; }

  /* FORM SECTION */
  .form-section{
    padding: 88px 0 88px;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .form-grid{ display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start;}
  .form-left h2{ font-size: clamp(32px, 3.4vw, 44px); margin: 14px 0 16px; line-height: 1.04; }
  .form-left p{ font-size: 16px; color: var(--ink-2); line-height: 1.55; margin: 0 0 28px; max-width: 460px;}
  .form-left ul{ list-style: none; padding: 0; margin: 0; display:flex; flex-direction: column; gap: 14px; }
  .form-left li{ display:flex; gap: 14px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); line-height: 1.45; }
  .form-left li b{ color: var(--ink); font-weight: 600; }
  .form-left li .ic{
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 10px;
    background: color-mix(in oklab, var(--accent) 22%, var(--bg));
    color: var(--ink); display:grid; place-items:center;
  }

  .form-card{
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    padding: 32px;
    box-shadow: 0 24px 60px -30px rgba(20,17,14,.25);
  }
  .form-card h3{ font-size: 22px; margin: 0 0 6px; }
  .form-card .sub{ color: var(--ink-2); font-size: 14px; margin: 0 0 22px; }
  .optional-mark{
    margin-left: 4px;
    color: var(--ink-3);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }
  .form-hint{
    margin: -4px 0 16px;
    color: var(--ink-2);
    font-size: 13px;
    line-height: 1.45;
  }
  .optional-details{
    margin: 0 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-input);
    background: var(--surface);
    overflow: hidden;
  }
  .optional-details summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    min-height: 50px;
    padding: 0 14px;
    cursor: pointer;
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    list-style: none;
  }
  .optional-details summary::-webkit-details-marker{ display:none; }
  .optional-details summary::after{
    content:"+";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display:grid;
    place-items:center;
    background: var(--bg);
    color: var(--ink-2);
    border: 1px solid var(--line);
  }
  .optional-details[open] summary::after{ content:"−"; }
  .optional-details summary span{
    margin-left:auto;
    color: var(--ink-3);
    font-size: 12px;
    font-weight: 500;
  }
  .optional-details[open]{ padding-bottom: 14px; }
  .optional-details[open] summary{ border-bottom: 1px solid var(--line); margin-bottom: 14px; }
  .optional-details .field,
  .optional-details .row-2col{ margin-left: 14px; margin-right: 14px; }
  .optional-details-note{
    margin: 0 14px 14px;
    color: var(--ink-2);
    font-size: 13px;
    line-height: 1.45;
  }
  .field{ display:flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
  .field label{ font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); }
  .field input, .field select{
    height: 50px; padding: 0 14px;
    background: var(--surface); color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--r-input);
    font-size: 15px;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    outline: none;
  }
  .field input::placeholder{ color: var(--ink-3); }
  .field input:focus, .field select:focus{
    border-color: color-mix(in oklab, var(--accent) 70%, var(--ink-2));
    box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 26%, transparent);
    background: var(--bg);
  }
  .field-err input{ border-color: #E25C42; box-shadow: 0 0 0 4px rgba(226,92,66,.15); }
  .err-msg{ color: #E25C42; font-size: 12px; margin-top: -2px; }

  .seg{
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 6px; padding: 4px; background: var(--surface);
    border: 1px solid var(--line); border-radius: var(--r-input);
  }
  .seg-opt{
    padding: 11px 8px; text-align: center; font-size: 13.5px; font-weight: 500;
    border-radius: calc(var(--r-input) - 4px);
    color: var(--ink-2); transition: all .15s ease;
    background: transparent; border: 0; cursor: pointer;
  }
  .seg-opt:hover{ color: var(--ink); }
  .seg-opt[aria-pressed="true"]{ background: var(--ink); color: var(--bg); }

  .consent{ display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; margin: 6px 0 20px; }
  .consent a{ color: var(--ink); text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: 2px; }
  .consent input{ margin-top: 3px; width: 16px; height: 16px; accent-color: var(--accent); }
  .submit-row{ display:flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
  .submit-row .reass{ font-size: 12px; color: var(--ink-3); display:flex; gap: 6px; align-items: center; }

  .success{
    text-align: center; padding: 24px 8px 8px;
  }
  .success .ring{
    width: 64px; height: 64px; border-radius: 50%;
    background: color-mix(in oklab, var(--accent) 28%, var(--bg));
    color: var(--ink); display: grid; place-items: center; margin: 0 auto 18px;
    animation: pop .4s ease;
  }
  @keyframes pop{ from{ transform: scale(.6); opacity: 0;} }
  .success h3{ margin: 0 0 6px; }
  .success p{ color: var(--ink-2); margin: 0 0 18px; }

  /* HOW IT WORKS  */
  .steps-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .step{
    position: relative;
    padding: 28px;
    border-radius: var(--r-card);
    border: 1px solid var(--line);
    background: var(--surface);
    display: flex; flex-direction: column; gap: 14px;
    min-height: 240px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .step:hover{ transform: translateY(-3px); box-shadow: 0 18px 36px -20px rgba(20,17,14,.18); border-color: var(--line-2); }
  .step .num{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 64px; font-weight: 700;
    line-height: 1; letter-spacing: -.04em;
    color: var(--accent);
    -webkit-text-stroke: 1px var(--accent);
  }
  .step:nth-child(1) .num{ color: var(--accent); -webkit-text-stroke: 0; }
  .step:nth-child(2) .num{ color: transparent; -webkit-text-stroke: 1.5px var(--ink); opacity:.85;}
  .step:nth-child(3) .num{ color: var(--ink); -webkit-text-stroke: 0; }
  .step h3{ font-size: 20px; margin: 0; line-height: 1.2; }
  .step p{ margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
  .step .arrow{
    position: absolute; right: 20px; top: 24px;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg); border: 1px solid var(--line);
    display: grid; place-items: center; color: var(--ink-3);
  }

  /* Two-paths split */
  .paths{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .path-card{
    position: relative;
    border-radius: var(--r-card);
    padding: 36px 32px;
    overflow: hidden;
    min-height: 320px;
    display: flex; flex-direction: column; justify-content: space-between;
    border: 1px solid var(--line);
  }
  .path-a{ background: var(--ink); color: var(--bg); border-color: transparent; }
  .path-b{ background: var(--accent); color: var(--accent-ink); border-color: transparent; }
  .path-card .tag{
    display:inline-flex; align-items:center; gap: 8px;
    padding: 6px 10px; border-radius: 999px;
    background: rgba(255,255,255,.12); color: inherit;
    font-size: 12px; font-weight: 500; align-self: flex-start;
  }
  .path-b .tag{ background: rgba(0,0,0,.1); }
  .path-card h3{ font-size: 32px; margin: 18px 0 10px; line-height: 1.05; max-width: 380px; }
  .path-card p{ margin: 0 0 24px; opacity: .8; line-height: 1.55; max-width: 420px; font-size: 15.5px; }
  .path-card .glyph{
    position: absolute; right: -28px; bottom: -40px;
    width: 200px; height: 200px; opacity: .15;
    color: currentColor;
  }
  .path-card .arrow-btn{
    display:inline-flex; align-items:center; gap: 10px;
    align-self: flex-start;
    padding: 12px 18px; border-radius: 999px;
    background: rgba(255,255,255,.1); color: inherit;
    font-weight: 600; font-size: 14px;
    border: 1px solid rgba(255,255,255,.18);
    transition: all .2s ease;
  }
  .path-b .arrow-btn{ background: rgba(0,0,0,.1); border-color: rgba(0,0,0,.18); }
  .path-card .arrow-btn:hover{ background: rgba(255,255,255,.18); }
  .path-b .arrow-btn:hover{ background: rgba(0,0,0,.18); }

  /* FAQ */
  .faq-grid{ display:grid; grid-template-columns: .6fr 1.4fr; gap: 56px; }
  .faq-aside .pill{ margin-bottom: 14px; }
  .faq-aside h2{ font-size: clamp(32px,3.4vw,46px); margin: 0 0 16px; line-height: 1.04; }
  .faq-aside p{ color: var(--ink-2); line-height: 1.55; margin: 0 0 24px; }
  .faq-list{ border-top: 1px solid var(--line); }
  .faq-item{
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }
  .faq-q{
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; cursor: pointer;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 600; font-size: 19px;
    letter-spacing: -.01em;
  }
  .faq-q .toggle{
    width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%;
    background: var(--bg); border: 1px solid var(--line);
    display: grid; place-items: center; transition: all .2s ease;
    color: var(--ink-2);
  }
  .faq-item.open .faq-q .toggle{ background: var(--accent); color: var(--accent-ink); border-color: transparent; transform: rotate(45deg); }
  .faq-item.open .faq-q{ color: var(--ink); }
  .faq-a{
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, margin-top .35s ease;
    color: var(--ink-2); font-size: 15.5px; line-height: 1.6;
    max-width: 720px;
  }
  .faq-item.open .faq-a{ max-height: 220px; margin-top: 16px; }

  /* CTA strip */
  .cta-strip{
    margin: 0 0 88px;
    border-radius: var(--r-card);
    padding: 56px;
    background: var(--ink);
    color: var(--bg);
    display: grid; grid-template-columns: 1.4fr .9fr; gap: 56px; align-items: center;
    position: relative; overflow: hidden;
  }
  .cta-strip::before{
    content:""; position: absolute; right: -60px; top: -60px;
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, color-mix(in oklab, var(--accent) 75%, transparent), transparent 65%);
    filter: blur(4px);
  }
  .cta-strip h2{ font-size: clamp(32px, 3.8vw, 52px); margin: 0; line-height: 1.02; max-width: 540px; }
  .cta-strip p{ color: rgba(245,239,227,.7); margin: 16px 0 0; max-width: 480px; line-height: 1.5; font-size: 16px; }
  .cta-strip .actions{ display:flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }
  .cta-strip .btn-ghost{ color: var(--bg); border-color: rgba(245,239,227,.25); background: transparent; }
  .cta-strip .btn-ghost:hover{ background: rgba(245,239,227,.08); }

  /* Footer */
  footer{
    border-top: 1px solid var(--line);
    padding: 56px 0 28px;
    color: var(--ink-2); font-size: 13.5px;
  }
  .foot-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
  .foot-grid h4{ font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin: 0 0 14px; }
  .foot-grid ul{ list-style: none; padding: 0; margin: 0; display:flex; flex-direction: column; gap: 8px; }
  .foot-grid li a:hover{ color: var(--ink); }
  .foot-grid .legal-mini{ color: var(--ink-3); font-size: 12.5px; line-height: 1.6; max-width: 320px; }
  .foot-bottom{
    display:flex; justify-content: space-between; align-items: center; gap: 20px;
    padding-top: 24px; border-top: 1px solid var(--line);
    color: var(--ink-3); font-size: 12.5px; flex-wrap: wrap;
  }

  /* Mobile sticky bar */
  .mobile-bar{ display: none; }

  /* Reveals */
  .reveal{ opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity: 1; transform: none; }

  /* Responsive */
  @media (max-width: 1080px){
    .hero-grid{ grid-template-columns: 1fr; gap: 36px; }
    .hero-card{ min-height: 440px; }
    .form-grid{ grid-template-columns: 1fr; gap: 36px; }
    .faq-grid{ grid-template-columns: 1fr; gap: 28px; }
    .steps-grid{ grid-template-columns: 1fr; }
    .paths{ grid-template-columns: 1fr; }
    .foot-grid{ grid-template-columns: 1fr 1fr; gap: 28px; }
    .cta-strip{ grid-template-columns: 1fr; padding: 36px; }
    section{ padding: 56px 0; }
    .form-section{ padding: 56px 0; }
  }
  /* Tablet / collapsed nav — must trigger before nav items break out */
  @media (max-width: 960px){
    .nav-links{ display: none; }
    .nav-inner{ gap: 14px; }
  }
  @media (max-width: 820px){
    .nav-tel span.tel-num{ display: none; }
    .nav-tel{
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--surface); border: 1px solid var(--line);
      display: grid; place-items: center; flex-shrink: 0;
      overflow: hidden;
      font-size: 0;
      line-height: 0;
      color: transparent;
    }
    .nav-tel::before{
      content: "☎";
      color: var(--ink);
      font-size: 17px;
      line-height: 1;
    }
    .nav-tel svg{ display: none; }
  }
  @media (max-width: 720px){
    :root{ --maxw: calc(100vw - 32px); }

    /* Nav */
    .nav-inner{ height: 60px; gap: 14px; }
    .nav-links{ display: none; }
    .nav-tel span.tel-num{ display: none; }
    .nav-tel{
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--surface); border: 1px solid var(--line);
      display: grid; place-items: center;
      overflow: hidden;
      font-size: 0;
      line-height: 0;
      color: transparent;
    }
    .nav-tel::before{
      content: "☎";
      color: var(--ink);
      font-size: 17px;
      line-height: 1;
    }
    .nav-tel svg{ display: none; }
    .logo{ font-size: 15px; gap: 8px; }
    .logo-mark{ width: 30px; height: 30px; font-size: 13px; border-radius: 8px; }
    .nav .btn-primary.btn-sm{ height: 40px; padding: 0 14px; font-size: 13px; }
    .nav .btn-primary.btn-sm svg{ display: none; }

    /* Hero */
    .hero{ padding: 32px 0 40px; }
    .hero-grid{ gap: 28px; }
    .hero-l{ gap: 22px; padding-top: 0; }
    .hero-l h1{ font-size: clamp(28px, 8vw, 38px); line-height: 1.02; text-wrap: balance; }
    .hero-l h1 br{ display: none; }
    .hero-l h1 .accent-word{ border-radius: 10px; padding: 0 .14em; }
    .hero-sub{ font-size: 16px; line-height: 1.5; }
    .hero-offer-banner{
      align-items:flex-start;
      flex-direction: column;
      gap: 10px;
      padding: 13px 14px;
      border-radius: 14px;
    }
    .hero-offer-label{ min-height: 24px; font-size: 10px; }
    .hero-offer-banner strong{ font-size: 16px; line-height: 1.25; }
    .hero-cta{ gap: 10px; }
    .hero-cta .btn{ flex: 1; min-width: 140px; height: 50px; padding: 0 16px; font-size: 14px; }
    .hero-stats{ grid-template-columns: 1fr; margin-top: 6px; }
    .hero-stat{ border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 0; }
    .hero-stat:last-child{ border-bottom: 0; padding-bottom: 0; }
    .hero-stat .v{ font-size: 28px; }
    .hero-stat .v[style]{ font-size: 18px !important; }
    .hero-card{ min-height: 380px; border-radius: 22px; }
    .hero-sticker{
      display: grid;
      width: 96px; height: 96px;
      left: auto; right: 12px; top: 12px;
      font-size: 12px; padding: 14px;
    }
    .hero-overlay{ left: 16px; right: 16px; bottom: 16px; }
    .hero-counter{ font-size: 12px; padding: 9px 12px; }

    /* Marquee */
    .marquee{ padding: 16px 0; }
    .marquee-track{ gap: 36px; }
    .marquee-item{ font-size: 13px; }

    /* Section base */
    section{ padding: 48px 0; }
    .sec-head{ margin-bottom: 32px; gap: 18px; }
    .sec-head h2{ font-size: clamp(28px, 7vw, 36px); margin: 10px 0 0; }
    .sec-head .lede{ font-size: 15px; }

    /* Lead form */
    .form-section{ padding: 48px 0; }
    .form-card{ padding: 22px; border-radius: 16px; }
    .form-card h3{ font-size: 19px; }
    .form-card .sub{ font-size: 13.5px; margin-bottom: 18px; }
    .field input, .field select{ height: 48px; font-size: 15px; }
    .seg{ grid-template-columns: 1fr 1fr; }
    .seg-opt:last-child{ grid-column: 1 / -1; }
    .seg-opt{ padding: 12px 8px; font-size: 13px; }
    .form-card form > div[style*="grid-template-columns: 1.4fr 1fr"],
    .form-card form > .row-2col{
      display: flex !important; flex-direction: column; gap: 0 !important;
    }
    .form-left h2{ font-size: clamp(28px, 7vw, 36px); }
    .form-left ul{ gap: 12px; }
    .form-left li{ font-size: 14px; }
    .submit-row{ flex-direction: column; align-items: stretch; gap: 12px; }
    .submit-row .btn{ width: 100%; }
    .submit-row .reass{ justify-content: center; }
    .consent{ font-size: 12px; }

    /* Steps */
    .steps-grid{ grid-template-columns: 1fr; gap: 12px; }
    .step{ padding: 22px; min-height: 0; }
    .step .num{ font-size: 48px; }
    .step h3{ font-size: 18px; }
    .step p{ font-size: 14px; }
    .step .arrow{ width: 28px; height: 28px; top: 20px; right: 16px; }

    /* Paths */
    .paths{ grid-template-columns: 1fr; gap: 12px; }
    .path-card{ padding: 28px 24px; min-height: 0; }
    .path-card h3{ font-size: 26px; margin-top: 14px; }
    .path-card p{ font-size: 15px; margin-bottom: 18px; }
    .path-card .glyph{ width: 140px; height: 140px; right: -20px; bottom: -30px; }

    /* FAQ */
    .faq-grid{ grid-template-columns: 1fr; gap: 24px; }
    .faq-aside h2{ font-size: clamp(28px,7vw,34px); }
    .faq-aside p{ font-size: 15px; }
    .faq-q{ font-size: 16px; gap: 12px; }
    .faq-q .toggle{ width: 30px; height: 30px; }
    .faq-a{ font-size: 14.5px; }
    .faq-item.open .faq-a{ max-height: 320px; }
    .faq-item{ padding: 18px 0; }

    /* CTA strip */
    .cta-strip{
      grid-template-columns: 1fr; padding: 28px 22px;
      margin: 0 0 56px;
      border-radius: 18px;
    }
    .cta-strip h2{ font-size: clamp(28px,7vw,36px); }
    .cta-strip p{ font-size: 15px; margin-top: 12px; }
    .cta-strip .actions{ flex-direction: column; align-items: stretch; gap: 10px; }
    .cta-strip .actions .btn{ width: 100%; }
    .cta-strip::before{ width: 220px; height: 220px; right: -80px; top: -80px; }

    /* Footer */
    footer{ padding: 40px 0 16px; }
    .foot-grid{ grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
    .foot-bottom{ flex-direction: column; align-items: flex-start; gap: 8px; }

    /* Quick actions are already duplicated in the mobile header. */
    body{ padding-bottom: 0; }
    .mobile-bar{ display: none; }

    @media (max-width: 420px){
      .nav-inner{ gap: 10px; }
      .nav-tel{ display: none; }
      .nav .btn-primary.btn-sm{ padding: 0 12px; }
    }

    /* Smaller phones */
    @media (max-width: 380px){
      :root{ --maxw: calc(100vw - 24px); }
      .form-card{ padding: 18px; }
      .hero-cta .btn{ font-size: 13px; padding: 0 12px; gap: 6px; }
    }
  }
[hidden] { display: none !important; }
.spam-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.hero-stat-long {
  font-size: 22px;
  line-height: 1.1;
}
.car-choice-modern {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}
.car-choice-modern legend {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.seg-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.seg-opt:has(input:checked) {
  background: var(--ink);
  color: var(--bg);
}
.row-2col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}
.form-status {
  display: block;
  min-height: 20px;
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 13px;
}
.steps-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 10px;
}
.step-icon.accent {
  background: var(--accent);
  color: var(--accent-ink);
}
.foot-grid .logo {
  display: inline-flex;
  margin-bottom: 14px;
}
.legal-mini {
  margin-top: 14px;
}
@media (max-width: 720px) {
  .row-2col { grid-template-columns: 1fr; gap: 0; }
}
