
    :root {
      --ink: #0a0c11;
      --ink-soft: #171a22;
      --paper: #ffffff;
      --cream: #f8f5e7;
      --cream-deep: #eee8d4;
      --brand: #f4d426;
      --brand-hover: #dfc008;
      --text: #20242e;
      --muted: #626a78;
      --line: #d8d8d0;
      --line-dark: rgba(255,255,255,.14);
      --success: #14734a;
      --danger: #a62d25;
      --warning: #8a7200;
      --radius-sm: 12px;
      --radius: 22px;
      --radius-lg: 34px;
      --shadow: 0 28px 80px rgba(10,12,17,.16);
      --container: 1180px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 92px; }
    body {
      margin: 0;
      color: var(--text);
      background: var(--paper);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.58;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }
    h1, h2, h3, p { margin-top: 0; }
    ::selection { background: var(--brand); color: var(--ink); }

    .skip-link {
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 9999;
      transform: translateY(-160%);
      padding: 10px 14px;
      border-radius: 9px;
      background: #fff;
      color: var(--ink);
      font-weight: 900;
    }
    .skip-link:focus { transform: none; }

    .container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
    .section { padding: 96px 0; }
    .section-cream { background: var(--cream); }
    .section-dark { background: var(--ink); color: #fff; }
    .visually-hidden {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0,0,0,0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }

    .topbar {
      background: var(--brand);
      color: var(--ink);
      border-bottom: 1px solid rgba(10,12,17,.16);
      font-size: .79rem;
      font-weight: 900;
      letter-spacing: .015em;
    }
    .topbar-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 26px;
      text-align: center;
    }
    .topbar-item { display: inline-flex; align-items: center; gap: 7px; }
    .topbar-item svg { width: 15px; height: 15px; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 200;
      color: #fff;
      background: rgba(10,12,17,.97);
      border-bottom: 1px solid var(--line-dark);
      backdrop-filter: blur(12px);
    }
    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand-lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
    .brand-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 8px;
      background: var(--brand);
      color: var(--ink);
    }
    .brand-mark svg { width: 28px; height: 28px; }
    .brand-name { display: grid; line-height: 1.05; text-transform: uppercase; letter-spacing: .05em; }
    .brand-name strong { font-size: 1rem; }
    .brand-name small { margin-top: 5px; color: #c4c7cf; font-size: .61rem; font-weight: 750; letter-spacing: .08em; }
    .header-actions { display: flex; align-items: center; gap: 12px; }
    .header-disclosure { flex: 1; min-width: 0; margin: 0; text-align: right; color: #9aa1ad; font-size: .72rem; line-height: 1.4; }
    .phone-link { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-weight: 850; white-space: nowrap; }
    .phone-link svg { width: 18px; height: 18px; color: var(--brand); }

    .btn {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 14px 21px;
      text-decoration: none;
      font-weight: 950;
      line-height: 1.12;
      text-align: center;
      letter-spacing: -.012em;
      transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 3px solid rgba(244,212,38,.54);
      outline-offset: 3px;
    }
    .btn-primary { background: var(--brand); color: var(--ink); box-shadow: 0 14px 32px rgba(244,212,38,.22); }
    .btn-primary:hover { background: var(--brand-hover); }
    .btn-dark { background: var(--ink); color: #fff; }
    .btn-dark:hover { background: #20242d; }
    .btn-outline-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
    .btn-outline-light { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
    .btn-outline-light:hover { border-color: var(--brand); color: var(--brand); }
    .btn-block { width: 100%; }
    .btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

    .hero {
      position: relative;
      overflow: hidden;
      color: #fff;
      background: var(--ink);
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .34;
      background-image: radial-gradient(rgba(244,212,38,.26) 1px, transparent 1px);
      background-size: 25px 25px;
      mask-image: linear-gradient(90deg, #000 0 58%, transparent 84%);
    }
    .hero::after {
      content: "";
      position: absolute;
      top: -210px;
      right: -170px;
      width: 570px;
      height: 570px;
      border: 70px solid rgba(244,212,38,.12);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(380px, .82fr);
      gap: 70px;
      align-items: center;
      padding: 78px 0 84px;
    }
    .hero-copy { padding: 10px 0; }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 20px;
      padding: 9px 13px;
      border: 1px solid rgba(244,212,38,.62);
      border-radius: 999px;
      color: var(--brand);
      background: rgba(244,212,38,.06);
      font-size: .74rem;
      font-weight: 950;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .hero-kicker::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(244,212,38,.12); }
    h1 {
      max-width: 770px;
      margin-bottom: 24px;
      color: #fff;
      font-size: clamp(2.7rem, 5.35vw, 5.25rem);
      line-height: .99;
      letter-spacing: -.061em;
    }
    h1 .highlight { color: var(--brand); }
    .hero-subhead { max-width: 730px; margin-bottom: 26px; color: #cbd0d8; font-size: clamp(1.05rem, 1.55vw, 1.22rem); }
    .hero-bullets { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px 18px; margin: 0 0 31px; padding: 0; list-style: none; }
    .hero-bullets li { display: flex; align-items: flex-start; gap: 10px; color: #f1f2f4; font-weight: 760; }
    .bullet-icon {
      width: 23px;
      height: 23px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      margin-top: 1px;
      border-radius: 6px;
      background: var(--brand);
      color: var(--ink);
    }
    .bullet-icon svg { width: 14px; height: 14px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
    .hero-proof { margin: 17px 0 0; color: #aeb5c0; font-size: .83rem; font-weight: 800; }
    .hero-disclosure { margin: 12px 0 0; color: #9aa1ad; font-size: .78rem; line-height: 1.55; max-width: 660px; }

    .warning-board {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: var(--radius-lg);
      background: #fff;
      color: var(--text);
      box-shadow: 0 34px 100px rgba(0,0,0,.34);
    }
    .warning-board::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 7px;
      background: repeating-linear-gradient(135deg, var(--ink) 0 12px, var(--brand) 12px 24px);
    }
    .board-head {
      padding: 29px 30px 22px;
      border-bottom: 1px solid var(--line);
      background: var(--cream);
    }
    .board-label { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; color: var(--warning); font-size: .73rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
    .board-label svg { width: 18px; height: 18px; }
    .board-head h2 { margin-bottom: 8px; color: var(--ink); font-size: 1.65rem; line-height: 1.08; letter-spacing: -.035em; }
    .board-head p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
    .board-list { display: grid; gap: 0; padding: 0 30px; }
    .board-row { display: grid; grid-template-columns: 28px 1fr auto; gap: 12px; align-items: center; padding: 17px 0; border-bottom: 1px solid #ecece7; }
    .board-row:last-child { border-bottom: 0; }
    .board-row-icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: var(--ink); color: var(--brand); }
    .board-row-icon svg { width: 15px; height: 15px; }
    .board-row strong { display: block; color: var(--ink); font-size: .92rem; line-height: 1.25; }
    .board-row small { display: block; margin-top: 3px; color: var(--muted); font-size: .72rem; }
    .status-tag { padding: 6px 8px; border-radius: 999px; background: #fff5bd; color: #6b5700; font-size: .62rem; font-weight: 950; text-transform: uppercase; white-space: nowrap; }
    .board-action { padding: 22px 30px 30px; background: #fff; }
    .board-note { margin: 11px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }

    .pressure-strip { background: var(--brand); color: var(--ink); border-bottom: 1px solid rgba(10,12,17,.18); }
    .pressure-grid { display: grid; grid-template-columns: repeat(3,1fr); }
    .pressure-item { padding: 24px 28px; border-right: 1px solid rgba(10,12,17,.2); }
    .pressure-item:last-child { border-right: 0; }
    .pressure-item strong { display: block; margin-bottom: 4px; font-size: 1rem; letter-spacing: -.02em; }
    .pressure-item span { color: rgba(10,12,17,.72); font-size: .82rem; font-weight: 700; }

    .section-head { max-width: 790px; margin-bottom: 46px; }
    .section-head.center { margin-inline: auto; text-align: center; }
    .kicker { margin-bottom: 12px; color: #8a7200; font-size: .77rem; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
    .section-dark .kicker { color: var(--brand); }
    .section-head h2 {
      margin-bottom: 16px;
      color: var(--ink);
      font-size: clamp(2.15rem, 4.25vw, 4.05rem);
      line-height: 1.02;
      letter-spacing: -.052em;
    }
    .section-dark .section-head h2 { color: #fff; }
    .section-head p { margin-bottom: 0; color: var(--muted); font-size: 1.07rem; }
    .section-dark .section-head p { color: #c8cdd5; }

    .pain-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
    .pain-card {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 66px 1fr;
      gap: 22px;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 14px 36px rgba(10,12,17,.055);
    }
    .pain-card::after { content: ""; position: absolute; right: -40px; bottom: -55px; width: 120px; height: 120px; border: 20px solid rgba(244,212,38,.2); border-radius: 50%; }
    .pain-num { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 18px; background: var(--ink); color: var(--brand); font-size: 1.15rem; font-weight: 950; }
    .pain-card h3 { margin-bottom: 8px; color: var(--ink); font-size: 1.28rem; line-height: 1.18; letter-spacing: -.025em; }
    .pain-card p { margin-bottom: 0; color: var(--muted); }

    .service-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
    .service-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .service-card:hover { transform: translateY(-4px); border-color: #b7b7af; box-shadow: 0 24px 60px rgba(10,12,17,.09); }
    .service-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
    .service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--brand); color: var(--ink); }
    .service-icon svg { width: 27px; height: 27px; }
    .service-index { color: #a0a4ad; font-size: .73rem; font-weight: 950; letter-spacing: .12em; }
    .service-card h3 { margin-bottom: 10px; color: var(--ink); font-size: 1.45rem; line-height: 1.12; letter-spacing: -.035em; }
    .service-card > p { margin-bottom: 19px; color: var(--muted); }
    .service-list { display: grid; gap: 9px; margin: 0 0 25px; padding: 0; list-style: none; }
    .service-list li { display: flex; align-items: flex-start; gap: 9px; color: #3d434e; font-size: .9rem; font-weight: 700; }
    .service-list svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 4px; color: #8a7200; }
    .service-card .btn { margin-top: auto; align-self: flex-start; }

    .reset-band {
      position: relative;
      overflow: hidden;
      background: var(--brand);
      color: var(--ink);
      border-block: 1px solid rgba(10,12,17,.18);
    }
    .reset-band::before { content: ""; position: absolute; left: -90px; top: -110px; width: 300px; height: 300px; border: 42px solid rgba(10,12,17,.07); border-radius: 50%; }
    .reset-inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; padding: 55px 0; }
    .reset-copy h2 { max-width: 760px; margin-bottom: 11px; color: var(--ink); font-size: clamp(2rem,3.6vw,3.5rem); line-height: 1.02; letter-spacing: -.045em; }
    .reset-copy p { max-width: 760px; margin-bottom: 0; color: rgba(10,12,17,.72); font-size: 1rem; font-weight: 700; }
    .reset-actions { display: flex; flex-direction: column; gap: 11px; min-width: 290px; }

    .timeline { position: relative; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
    .timeline::before { content: ""; position: absolute; top: 31px; left: 10%; right: 10%; height: 2px; background: rgba(244,212,38,.28); }
    .timeline-step { position: relative; z-index: 1; padding: 0 18px 24px; text-align: center; }
    .timeline-num { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 20px; border: 2px solid var(--brand); border-radius: 50%; background: var(--ink); color: var(--brand); font-weight: 950; }
    .timeline-step h3 { margin-bottom: 9px; color: #fff; font-size: 1.18rem; letter-spacing: -.025em; }
    .timeline-step p { margin-bottom: 0; color: #bfc4cc; font-size: .9rem; }
    .timeline-cta { margin-top: 36px; text-align: center; }

    .support-grid { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: 60px; align-items: start; }
    .support-intro { position: sticky; top: 115px; }
    .support-intro h2 { margin-bottom: 16px; color: var(--ink); font-size: clamp(2.2rem,4vw,3.8rem); line-height: 1.03; letter-spacing: -.05em; }
    .support-intro p { color: var(--muted); }
    .support-note { margin-top: 22px; padding: 18px 20px; border-left: 4px solid var(--brand); background: #fff; color: #4c535e; font-size: .88rem; }
    .disclosure-band { background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
    .disclosure-band p { margin: 0; color: #4c535e; font-size: .82rem; line-height: 1.6; }
    .disclosure-band strong { color: var(--ink); }
    .support-list { display: grid; gap: 12px; }
    .support-item { display: grid; grid-template-columns: 48px 1fr; gap: 17px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
    .support-check { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--ink); color: var(--brand); }
    .support-check svg { width: 22px; height: 22px; }
    .support-item h3 { margin-bottom: 5px; color: var(--ink); font-size: 1.04rem; }
    .support-item p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }

    .audience-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
    .audience-card { padding: 25px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.045); }
    .audience-card svg { width: 27px; height: 27px; margin-bottom: 16px; color: var(--brand); }
    .audience-card h3 { margin-bottom: 8px; color: #fff; font-size: 1.08rem; }
    .audience-card p { margin-bottom: 0; color: #bfc4cc; font-size: .88rem; }

    .reason-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 17px; }
    .reason { padding: 27px 24px; border-top: 5px solid var(--brand); border-radius: 0 0 18px 18px; background: #fff; box-shadow: 0 16px 44px rgba(10,12,17,.07); }
    .reason h3 { margin-bottom: 10px; color: var(--ink); font-size: 1.1rem; line-height: 1.2; }
    .reason p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }

    .faq-list { max-width: 900px; margin-inline: auto; }
    details { border-bottom: 1px solid var(--line); }
    summary { position: relative; cursor: pointer; list-style: none; padding: 23px 48px 23px 0; color: var(--ink); font-weight: 900; }
    summary::-webkit-details-marker { display: none; }
    summary::before, summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 17px; height: 2px; background: var(--ink); transition: transform .2s ease; }
    summary::after { transform: rotate(90deg); }
    details[open] summary::after { transform: rotate(0); }
    .faq-answer { padding: 0 48px 22px 0; }
    .faq-answer p { margin-bottom: 0; color: var(--muted); }

    .final-cta {
      position: relative;
      overflow: hidden;
      background: var(--brand);
      color: var(--ink);
    }
    .final-cta::after { content: ""; position: absolute; right: -120px; top: -170px; width: 480px; height: 480px; border: 58px solid rgba(10,12,17,.08); border-radius: 50%; }
    .final-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; padding: 78px 0; }
    .final-copy h2 { max-width: 820px; margin-bottom: 13px; color: var(--ink); font-size: clamp(2.25rem,4.5vw,4.4rem); line-height: 1; letter-spacing: -.055em; }
    .final-copy p { max-width: 780px; margin-bottom: 0; color: rgba(10,12,17,.72); font-size: 1.06rem; font-weight: 700; }
    .final-actions { display: flex; flex-direction: column; gap: 11px; min-width: 310px; }

    .site-footer { background: var(--ink); color: #fff; }
    .footer-main { display: grid; grid-template-columns: 1.15fr .75fr .85fr; gap: 48px; padding: 58px 0 42px; }
    .footer-main p { max-width: 460px; margin: 19px 0 0; color: #aeb3bd; font-size: .88rem; }
    .footer-col h3 { margin-bottom: 16px; color: var(--brand); font-size: .83rem; letter-spacing: .1em; text-transform: uppercase; }
    .footer-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #c5c9d0; font-size: .88rem; }
    .footer-list a { text-decoration: none; }
    .footer-list a:hover { color: var(--brand); }
    .footer-bottom { display: grid; gap: 8px; padding: 18px 0 26px; border-top: 1px solid rgba(255,255,255,.1); color: #969ca7; font-size: .72rem; }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 600;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(4,5,8,.82);
      backdrop-filter: blur(7px);
    }
    .modal-backdrop.is-open { display: flex; }
    .lead-modal {
      position: relative;
      width: min(100%, 760px);
      max-height: calc(100vh - 48px);
      overflow: auto;
      border-radius: 26px;
      background: #fff;
      box-shadow: 0 38px 120px rgba(0,0,0,.42);
    }
    .modal-close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(10,12,17,.08); color: var(--ink); }
    .modal-close:hover { background: rgba(10,12,17,.15); }
    .modal-close svg { width: 20px; height: 20px; }
    .form-head { padding: 31px 34px 24px; border-bottom: 1px solid var(--line); background: var(--cream); }
    .form-head small { display: block; margin-bottom: 8px; color: var(--warning); font-size: .72rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
    .form-head h2 { margin-bottom: 8px; color: var(--ink); font-size: 1.85rem; line-height: 1.08; letter-spacing: -.04em; }
    .form-head p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }
    .lead-form { padding: 25px 34px 34px; }
    .form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
    .field { display: grid; gap: 7px; }
    .field-full { grid-column: 1 / -1; }
    .field label { color: #303540; font-size: .78rem; font-weight: 900; }
    input, select, textarea {
      width: 100%;
      border: 1px solid #cfd0cb;
      border-radius: 10px;
      background: #fff;
      color: var(--ink);
      padding: 12px 13px;
    }
    textarea { min-height: 98px; resize: vertical; }
    input::placeholder, textarea::placeholder { color: #9499a2; }
    [aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(166,45,37,.1); }
    .field-error { min-height: 15px; color: var(--danger); font-size: .7rem; font-weight: 760; }
    .consent-row { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 17px 0 8px; color: var(--muted); font-size: .73rem; }
    .consent-row input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--ink); }
    .consent-row a { color: var(--ink); font-weight: 850; }
    .form-status { display: none; margin: 14px 0 0; padding: 11px 12px; border-radius: 9px; font-size: .82rem; font-weight: 760; }
    .form-status.is-visible { display: block; }
    .form-status.success { background: #e8f7ef; color: #0b603b; }
    .form-status.error { background: #fff0ee; color: #8e241a; }
    .form-note { margin: 11px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }

    .mobile-sticky {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 350;
      display: none;
      grid-template-columns: 1fr auto;
      gap: 8px;
      padding: 9px max(12px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
      background: rgba(10,12,17,.98);
      border-top: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 -12px 30px rgba(0,0,0,.22);
    }
    .mobile-sticky .btn { min-height: 48px; padding: 12px 15px; font-size: .8rem; }

    @media (max-width: 1050px) {
      .hero-grid { grid-template-columns: 1fr; gap: 46px; }
      .warning-board { max-width: 720px; }
      .support-grid { grid-template-columns: 1fr; gap: 36px; }
      .support-intro { position: static; }
      .reason-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .final-inner, .reset-inner { grid-template-columns: 1fr; }
      .final-actions, .reset-actions { min-width: 0; max-width: 480px; flex-direction: row; flex-wrap: wrap; }
      .final-actions .btn, .reset-actions .btn { flex: 1 1 220px; }
    }

    @media (max-width: 820px) {
      .section { padding: 72px 0; }
      .container { width: min(calc(100% - 30px), var(--container)); }
      .topbar-inner { min-height: 35px; gap: 12px; }
      .topbar-item:nth-child(2) { display: none; }
      .header-inner { min-height: 69px; }
      .header-actions .phone-link, .header-actions .btn { display: none; }
      .header-disclosure { display: none; }
      .hero-grid { padding: 57px 0 64px; }
      .hero-bullets { grid-template-columns: 1fr; }
      .pressure-grid { grid-template-columns: 1fr; }
      .pressure-item { border-right: 0; border-bottom: 1px solid rgba(10,12,17,.2); }
      .pressure-item:last-child { border-bottom: 0; }
      .pain-grid, .service-grid { grid-template-columns: 1fr; }
      .timeline { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .timeline::before { display: none; }
      .audience-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .footer-main { grid-template-columns: 1fr; gap: 34px; padding-bottom: 35px; }
      .mobile-sticky { display: grid; }
      body { padding-bottom: 75px; }
    }

    @media (max-width: 560px) {
      .container { width: min(calc(100% - 24px), var(--container)); }
      .brand-mark { width: 40px; height: 40px; }
      .brand-name strong { font-size: .88rem; }
      .brand-name small { font-size: .53rem; }
      h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
      .hero-actions { display: grid; }
      .hero-actions .btn { width: 100%; }
      .warning-board { border-radius: 22px; }
      .board-head, .board-action { padding-left: 21px; padding-right: 21px; }
      .board-list { padding: 0 21px; }
      .board-row { grid-template-columns: 27px 1fr; }
      .status-tag { grid-column: 2; justify-self: start; }
      .pain-card { grid-template-columns: 1fr; gap: 16px; padding: 25px; }
      .pain-num { width: 55px; height: 55px; border-radius: 15px; }
      .service-card { padding: 27px 23px; }
      .reset-actions, .final-actions { display: grid; }
      .timeline { grid-template-columns: 1fr; }
      .timeline-step { text-align: left; display: grid; grid-template-columns: 55px 1fr; column-gap: 16px; }
      .timeline-num { width: 55px; height: 55px; margin: 0; grid-row: 1 / span 2; }
      .timeline-step h3 { margin-top: 4px; }
      .audience-grid, .reason-grid { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .field-full { grid-column: auto; }
      .form-head { padding: 28px 22px 21px; }
      .lead-form { padding: 21px 22px 27px; }
      .modal-backdrop { padding: 10px; }
      .lead-modal { max-height: calc(100vh - 20px); border-radius: 19px; }
      .final-inner { padding: 66px 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    }
  