
  :root {
    --ink: #0d1014;
    --ink-2: #151a21;
    --ink-3: #1e252e;
    --line-dark: #2a323d;
    --amber: #f5a524;
    --amber-2: #ffbe4d;
    --amber-soft: rgba(245,165,36,.12);
    --paper: #f7f4ee;
    --paper-2: #efeae0;
    --text: #1a1d21;
    --muted: #5d6470;
    --muted-dark: #9aa3af;
    --white: #ffffff;
    --green: #2fbf71;
    --radius: 18px;
    --shadow: 0 20px 50px -20px rgba(13,16,20,.35);
    --head: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
    --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body { font-family: var(--body); color: var(--text); background: var(--paper); line-height: 1.6; overflow-x: hidden; }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; }
  .wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
  h1, h2, h3 { font-family: var(--head); line-height: 1.08; letter-spacing: -0.02em; }
  .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); }
  .eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }

  /* Buttons */
  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font: 600 16px/1 var(--body); padding: 16px 24px; border-radius: 999px; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s, box-shadow .2s, border-color .2s; white-space: nowrap; }
  .btn:active { transform: scale(.98); }
  .btn svg { width: 20px; height: 20px; flex: none; }
  .btn-amber { background: var(--amber); color: var(--ink); box-shadow: 0 10px 30px -10px rgba(245,165,36,.7); }
  .btn-amber:hover { background: var(--amber-2); transform: translateY(-2px); }
  .btn-ghost { border-color: var(--line-dark); color: var(--white); background: rgba(255,255,255,.03); }
  .btn-ghost:hover { border-color: var(--amber); }
  .btn-dark { background: var(--ink); color: var(--white); }
  .btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }
  .btn-outline { border-color: #cfc8ba; color: var(--text); background: transparent; }
  .btn-outline:hover { border-color: var(--ink); }
  :focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

  /* Nav */
  .nav { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: background .25s, border-color .25s; border-bottom: 1px solid transparent; }
  .nav.scrolled { background: rgba(13,16,20,.88); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-color: var(--line-dark); }
  .nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); font-family: var(--head); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; }
  .logo-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--amber); display: grid; place-items: center; }
  .logo-mark svg { width: 20px; height: 20px; }
  .logo-text span { color: var(--amber); margin-left: 5px; }
  .nav-links { display: flex; align-items: center; gap: 30px; }
  .nav-links a { color: #c9d0d8; text-decoration: none; font-size: 15px; font-weight: 500; }
  .nav-links a:hover { color: var(--white); }
  .nav-links a.btn, .nav-links a.btn:hover { color: var(--ink); }
  .nav .btn { padding: 11px 18px; font-size: 15px; }

  /* Hero */
  .hero { background: var(--ink); color: var(--white); position: relative; overflow: hidden; padding: 128px 0 88px; }
  .hero::before { content: ""; position: absolute; width: 900px; height: 900px; right: -300px; top: -300px; background: radial-gradient(circle, rgba(245,165,36,.16), transparent 60%); pointer-events: none; }
  .hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 70%); pointer-events: none; }
  .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
  .hero h1 { font-size: clamp(40px, 5.6vw, 68px); font-weight: 800; margin: 18px 0 22px; }
  .hero h1 em { font-style: normal; color: var(--amber); position: relative; white-space: nowrap; }
  .hero-sub { font-size: clamp(17px, 1.6vw, 20px); color: #c3cad3; max-width: 560px; margin-bottom: 34px; }
  .hero-sub strong { color: var(--white); font-weight: 600; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
  .hero-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted-dark); font-size: 14px; }
  .hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
  .hero-proof svg { width: 16px; height: 16px; color: var(--green); }

  /* Phone */
  .phone-stage { position: relative; display: flex; justify-content: center; }
  .phone { width: 330px; max-width: 100%; background: #07090c; border: 1px solid #2b333d; border-radius: 44px; padding: 12px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), inset 0 0 0 2px #11151a; position: relative; }
  .phone-screen { background: #f2f2f6; border-radius: 34px; height: 600px; overflow: hidden; display: flex; flex-direction: column; color: var(--text); }
  .phone-top { background: #fbfbfd; border-bottom: 1px solid #e2e2e8; padding: 14px 16px 12px; text-align: center; position: relative; }
  .notch { width: 96px; height: 24px; background: #07090c; border-radius: 0 0 16px 16px; margin: -14px auto 10px; }
  .avatar { width: 42px; height: 42px; border-radius: 50%; margin: 0 auto 4px; background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; }
  .phone-top .who { font-size: 13px; font-weight: 600; }
  .phone-top .status { font-size: 11px; color: var(--muted); }
  .chat { flex: 1; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; justify-content: flex-end; }
  .msg { max-width: 82%; padding: 9px 13px; border-radius: 18px; font-size: 13.5px; line-height: 1.38; opacity: 0; transform: translateY(8px) scale(.98); transition: opacity .35s ease, transform .35s ease; }
  .msg.show { opacity: 1; transform: none; }
  .msg.them { background: #e5e5ea; align-self: flex-start; border-bottom-left-radius: 6px; }
  .msg.ai { background: #0a84ff; color: #fff; align-self: flex-end; border-bottom-right-radius: 6px; }
  .msg.sys { align-self: center; background: transparent; color: var(--muted); font-size: 11.5px; text-align: center; max-width: 100%; padding: 2px; }
  .msg.sys b { color: #d92d20; font-weight: 600; }
  .typing { align-self: flex-end; background: #0a84ff; padding: 11px 14px; border-radius: 18px; border-bottom-right-radius: 6px; display: none; gap: 4px; }
  .typing.show { display: flex; }
  .typing i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.85); animation: blink 1.2s infinite; }
  .typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
  @keyframes blink { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
  .booked { position: absolute; left: -34px; bottom: 70px; background: var(--white); color: var(--text); border-radius: 16px; padding: 14px 16px; width: 250px; box-shadow: var(--shadow); display: flex; gap: 12px; align-items: center; opacity: 0; transform: translateY(14px) scale(.96); transition: all .45s cubic-bezier(.2,.9,.3,1.2); }
  .booked.show { opacity: 1; transform: none; }
  .booked .check { width: 38px; height: 38px; border-radius: 12px; background: #e3f7ec; color: var(--green); display: grid; place-items: center; flex: none; }
  .booked .check svg { width: 22px; height: 22px; }
  .booked b { display: block; font-size: 14px; }
  .booked small { color: var(--muted); font-size: 12.5px; }
  .phone-tag { position: absolute; right: -20px; top: 60px; background: var(--ink-3); border: 1px solid var(--line-dark); color: #d7dde4; font-size: 12.5px; padding: 8px 12px; border-radius: 12px; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow); }
  .phone-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(47,191,113,.2); animation: pulse 2s infinite; }
  @keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(47,191,113,0); } }

  /* Strip */
  .strip { background: var(--ink-2); color: #c9d0d8; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); overflow: hidden; }
  .strip-track { display: flex; gap: 44px; padding: 18px 0; width: max-content; animation: marquee 38s linear infinite; }
  .strip-track span { display: inline-flex; align-items: center; gap: 12px; font-weight: 500; white-space: nowrap; font-size: 15px; }
  .strip-track span::after { content: "✦"; color: var(--amber); margin-left: 32px; font-size: 12px; }
  @keyframes marquee { to { transform: translateX(-50%); } }

  /* Sections */
  section { scroll-margin-top: 72px; }
  .section { padding: 104px 0; }
  .section-head { max-width: 720px; margin-bottom: 56px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .section-head h2 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; margin: 14px 0 18px; }
  .section-head p { font-size: 18px; color: var(--muted); }
  .eyebrow.dark { color: #b7791f; }

  /* Pain */
  .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pain { background: var(--white); border: 1px solid var(--paper-2); border-radius: var(--radius); padding: 30px 28px; }
  .pain .time { font-family: var(--head); font-weight: 800; font-size: 15px; color: #b7791f; margin-bottom: 14px; letter-spacing: 0; }
  .pain h3 { font-size: 23px; margin-bottom: 10px; }
  .pain p { color: var(--muted); font-size: 16px; }
  .pain-kicker { margin-top: 44px; text-align: center; font-family: var(--head); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; letter-spacing: -0.01em; }
  .pain-kicker em { font-style: normal; background: linear-gradient(transparent 62%, rgba(245,165,36,.45) 62%); padding: 0 4px; }

  /* Calculator */
  .calc { background: var(--ink); color: var(--white); border-radius: 28px; padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; overflow: hidden; }
  .calc::before { content: ""; position: absolute; width: 520px; height: 520px; left: -200px; bottom: -260px; background: radial-gradient(circle, rgba(245,165,36,.18), transparent 65%); }
  .calc > * { position: relative; }
  .calc h2 { font-size: clamp(30px, 3.8vw, 46px); margin: 14px 0 16px; }
  .calc p.lead { color: #aeb6c0; font-size: 17px; }
  .field { margin-bottom: 26px; }
  .field-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; font-size: 15px; color: #c9d0d8; }
  .field-top output { font-family: var(--head); font-weight: 800; font-size: 22px; color: var(--white); }
  input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 99px; background: linear-gradient(90deg, var(--amber) var(--p, 50%), #2a323d var(--p, 50%)); outline: none; }
  input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--white); border: 5px solid var(--amber); cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,.4); }
  input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 5px solid var(--amber); cursor: pointer; }
  .calc-result { background: var(--ink-3); border: 1px solid var(--line-dark); border-radius: 20px; padding: 26px; margin-top: 8px; }
  .calc-result small { color: var(--muted-dark); font-size: 14px; display: block; }
  .calc-result .big { font-family: var(--head); font-weight: 800; font-size: clamp(44px, 5.6vw, 64px); color: var(--amber); line-height: 1.05; margin: 6px 0 4px; font-variant-numeric: tabular-nums; }
  .calc-result .year { color: #c9d0d8; font-size: 15px; }
  .calc-note { font-size: 13px; color: var(--muted-dark); margin-top: 14px; }

  /* System / journey */
  .system { background: var(--white); }
  .tabs { display: grid; grid-template-columns: 300px 1fr; gap: 28px; }
  .tab-list { display: flex; flex-direction: column; gap: 8px; }
  .tab { text-align: left; background: transparent; border: 1px solid transparent; border-radius: 16px; padding: 16px 18px; cursor: pointer; font: inherit; color: var(--text); display: flex; gap: 14px; align-items: center; transition: background .2s, border-color .2s; }
  .tab:hover { background: var(--paper); }
  .tab[aria-selected=true] { background: var(--ink); color: var(--white); }
  .tab .num { width: 34px; height: 34px; border-radius: 10px; background: var(--paper-2); display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 15px; flex: none; color: var(--text); }
  .tab[aria-selected=true] .num { background: var(--amber); color: var(--ink); }
  .tab b { display: block; font-size: 17px; font-weight: 700; }
  .tab small { display: block; font-size: 13.5px; color: var(--muted); }
  .tab[aria-selected=true] small { color: var(--muted-dark); }
  .panel { background: var(--paper); border-radius: 24px; padding: 38px; min-height: 100%; }
  .panel[hidden] { display: none; }
  .panel-head { margin-bottom: 26px; }
  .panel-head h3 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 8px; }
  .panel-head p { color: var(--muted); font-size: 17px; max-width: 620px; }
  .svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .svc { background: var(--white); border: 1px solid var(--paper-2); border-radius: 16px; padding: 20px; display: flex; gap: 14px; }
  .svc .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--amber-soft); color: #b7791f; display: grid; place-items: center; flex: none; }
  .svc .ico svg { width: 22px; height: 22px; }
  .svc h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 3px; }
  .svc p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
  .svc.star { border-color: rgba(245,165,36,.55); box-shadow: 0 0 0 3px rgba(245,165,36,.12); }
  .svc .pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: var(--ink); color: var(--amber); border-radius: 99px; padding: 2px 8px; margin-left: 6px; vertical-align: 2px; }
  .acc-title { display: none; }

  /* How */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
  .step { position: relative; background: var(--white); border-radius: var(--radius); padding: 34px 28px 30px; border: 1px solid var(--paper-2); }
  .step::before { counter-increment: s; content: counter(s); position: absolute; top: -20px; left: 28px; width: 44px; height: 44px; border-radius: 14px; background: var(--amber); color: var(--ink); font-family: var(--head); font-weight: 800; font-size: 20px; display: grid; place-items: center; box-shadow: 0 10px 20px -8px rgba(245,165,36,.8); }
  .step h3 { font-size: 23px; margin: 12px 0 10px; }
  .step p { color: var(--muted); }
  .step .meta { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--text); display: flex; gap: 8px; align-items: center; }
  .step .meta svg { width: 16px; height: 16px; color: var(--green); }

  /* Promise */
  .promise { background: var(--ink); color: var(--white); }
  .promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .promise h2 { font-size: clamp(34px, 4.4vw, 54px); margin: 14px 0 20px; }
  .promise p { color: #b8c0ca; font-size: 18px; margin-bottom: 16px; }
  .promise p strong { color: var(--white); }
  .promise-list { display: grid; gap: 14px; }
  .promise-item { display: flex; gap: 16px; background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 18px; padding: 22px; }
  .promise-item .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--amber-soft); color: var(--amber); display: grid; place-items: center; flex: none; }
  .promise-item .ico svg { width: 22px; height: 22px; }
  .promise-item h4 { font-size: 17px; margin-bottom: 4px; }
  .promise-item p { font-size: 15px; margin: 0; color: #9aa3af; }
  .signature { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
  .signature .init { width: 52px; height: 52px; border-radius: 50%; background: var(--amber); color: var(--ink); display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 20px; }
  .signature b { display: block; }
  .signature small { color: var(--muted-dark); }

  /* Contact builder */
  .start-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
  .start-copy h2 { font-size: clamp(34px, 4.4vw, 54px); margin: 14px 0 18px; }
  .start-copy p { color: var(--muted); font-size: 18px; margin-bottom: 26px; }
  .direct { display: grid; gap: 12px; }
  .direct a { display: flex; align-items: center; gap: 14px; text-decoration: none; background: var(--white); border: 1px solid var(--paper-2); border-radius: 16px; padding: 16px 18px; transition: border-color .2s, transform .2s; }
  .direct a:hover { border-color: var(--amber); transform: translateY(-2px); }
  .direct .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: var(--amber); display: grid; place-items: center; flex: none; }
  .direct .ico svg { width: 21px; height: 21px; }
  .direct small { display: block; color: var(--muted); font-size: 13px; }
  .direct b { font-size: 17px; word-break: break-all; }
  .form-card { background: var(--white); border-radius: 26px; padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--paper-2); }
  .form-card h3 { font-size: 26px; margin-bottom: 6px; }
  .form-card > p { color: var(--muted); margin-bottom: 24px; font-size: 15.5px; }
  .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .inp { display: block; margin-bottom: 16px; }
  .inp span { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
  .inp input, .inp select, .inp textarea { width: 100%; font: 16px var(--body); color: var(--text); padding: 13px 14px; border: 1.5px solid #ddd6c8; border-radius: 12px; background: #fffdf9; transition: border-color .2s, box-shadow .2s; }
  .inp input:focus, .inp select:focus, .inp textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(245,165,36,.18); }
  .inp textarea { min-height: 84px; resize: vertical; }
  .chips-label { font-size: 14px; font-weight: 600; margin-bottom: 8px; display: block; }
  .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
  .chip input { position: absolute; opacity: 0; pointer-events: none; }
  .chip span { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 99px; border: 1.5px solid #ddd6c8; font-size: 14.5px; font-weight: 500; cursor: pointer; user-select: none; transition: all .15s; background: #fffdf9; }
  .chip span::before { content: "+"; font-weight: 700; color: var(--muted); }
  .chip input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--white); }
  .chip input:checked + span::before { content: "✓"; color: var(--amber); }
  .chip input:focus-visible + span { outline: 3px solid var(--amber); outline-offset: 2px; }
  .send { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
  .form-foot { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
  .form-msg { display: none; margin-top: 12px; padding: 12px 14px; border-radius: 12px; background: #fff4dc; font-size: 14px; }
  .form-msg.show { display: block; }

  /* FAQ */
  .faq { max-width: 820px; margin: 0 auto; }
  .faq details { background: var(--white); border: 1px solid var(--paper-2); border-radius: 16px; margin-bottom: 12px; overflow: hidden; }
  .faq summary { list-style: none; cursor: pointer; padding: 22px 24px; font-weight: 600; font-size: 17.5px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after { content: ""; width: 12px; height: 12px; border-right: 2.5px solid var(--text); border-bottom: 2.5px solid var(--text); transform: rotate(45deg) translateY(-3px); transition: transform .25s; flex: none; }
  .faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
  .faq details p { padding: 0 24px 22px; color: var(--muted); font-size: 16px; }

  /* Final */
  .final { background: var(--ink); color: var(--white); text-align: center; position: relative; overflow: hidden; }
  .final::before { content: ""; position: absolute; width: 900px; height: 900px; left: 50%; top: 40%; transform: translate(-50%, 0); background: radial-gradient(circle, rgba(245,165,36,.18), transparent 60%); }
  .final .wrap { position: relative; }
  .final h2 { font-size: clamp(38px, 6vw, 72px); max-width: 900px; margin: 18px auto 20px; }
  .final h2 em { font-style: normal; color: var(--amber); }
  .final p { color: #b8c0ca; font-size: 19px; max-width: 600px; margin: 0 auto 34px; }
  .final .hero-cta { justify-content: center; }

  footer { background: #080a0d; color: var(--muted-dark); padding: 44px 0 110px; font-size: 14.5px; }
  footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: center; }
  footer a { text-decoration: none; color: #c9d0d8; }
  footer a:hover { color: var(--amber); }
  .foot-links { display: flex; flex-wrap: wrap; gap: 20px; }

  /* Mobile action bar */
  .mbar { display: none; }

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

  @media (max-width: 1020px) {
    .hero-grid, .promise-grid, .start-grid, .calc { grid-template-columns: 1fr; }
    .hero { padding-top: 112px; }
    .phone-stage { margin-top: 10px; }
    .booked { left: 0; }
    .phone-tag { right: 0; }
    .calc { padding: 40px 28px; gap: 36px; }
    .tabs { grid-template-columns: 1fr; }
    .tab-list { flex-direction: row; overflow-x: auto; scrollbar-width: none; margin: 0 -20px; padding: 0 20px 4px; }
    .tab-list::-webkit-scrollbar { display: none; }
    .tab { flex: none; padding: 12px 16px; }
    .tab small { display: none; }
  }
  @media (max-width: 760px) {
    .nav-links a:not(.btn) { display: none; }
    .section { padding: 76px 0; }
    .section-head { margin-bottom: 40px; }
    .pain-grid, .steps, .svc-grid, .row2 { grid-template-columns: 1fr; }
    .steps { gap: 36px; }
    .panel { padding: 24px 18px; border-radius: 20px; }
    .hero-cta .btn { flex: 1 1 100%; }
    .phone { width: 300px; }
    .phone-screen { height: 540px; }
    .booked { width: 230px; bottom: 40px; }
    .phone-tag { top: 20px; }
    .form-card { padding: 26px 20px; }
    .send { grid-template-columns: 1fr; }
    .mbar { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(13,16,20,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--line-dark); transform: translateY(110%); transition: transform .3s ease; }
    .mbar.show { transform: none; }
    .mbar .btn { padding: 14px 10px; font-size: 15px; }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .msg { opacity: 1; transform: none; }
  }

  /* ---------- Multi-page additions ---------- */
  .nav-links a.active { color: var(--white); position: relative; }
  .nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; border-radius: 2px; background: var(--amber); }
  .nav-links a.btn.active::after { display: none; }
  .menu-btn { display: none; background: transparent; border: 1px solid var(--line-dark); color: var(--white); width: 44px; height: 44px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
  .menu-btn svg { width: 22px; height: 22px; }
  .mobile-menu { display: none; }
  .page-hero { background: var(--ink); color: var(--white); padding: 140px 0 72px; position: relative; overflow: hidden; }
  .page-hero::before { content: ""; position: absolute; width: 760px; height: 760px; right: -260px; top: -320px; background: radial-gradient(circle, rgba(245,165,36,.15), transparent 60%); pointer-events: none; }
  .page-hero .wrap { position: relative; }
  .page-hero h1 { font-size: clamp(38px, 5.4vw, 64px); font-weight: 800; margin: 16px 0 16px; max-width: 860px; }
  .page-hero h1 em { font-style: normal; color: var(--amber); }
  .page-hero p { color: #b8c0ca; font-size: clamp(17px, 1.6vw, 20px); max-width: 680px; }
  .crumbs { font-size: 14px; color: var(--muted-dark); margin-top: 18px; }
  .crumbs a { color: #c9d0d8; }

  /* Stage overview cards (home) */
  .stages { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .stage { background: var(--white); border: 1px solid var(--paper-2); border-radius: var(--radius); padding: 24px 20px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: transform .2s, border-color .2s, box-shadow .2s; }
  .stage:hover { transform: translateY(-4px); border-color: var(--amber); box-shadow: var(--shadow); }
  .stage .num { width: 36px; height: 36px; border-radius: 11px; background: var(--ink); color: var(--amber); display: grid; place-items: center; font-family: var(--head); font-weight: 800; }
  .stage h3 { font-size: 20px; }
  .stage p { font-size: 14.5px; color: var(--muted); flex: 1; }
  .stage .go { font-size: 14px; font-weight: 600; color: #b7791f; }
  .center-cta { text-align: center; margin-top: 36px; }

  /* Written agreement strip */
  .writing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .writing .item { background: var(--white); border: 1px solid var(--paper-2); border-radius: 16px; padding: 22px; }
  .writing h4 { font-size: 16.5px; margin-bottom: 6px; }
  .writing p { font-size: 14.5px; color: var(--muted); }

  /* Legal pages */
  .legal { padding: 64px 0 100px; }
  .legal .doc { max-width: 820px; margin: 0 auto; background: var(--white); border: 1px solid var(--paper-2); border-radius: 22px; padding: 48px 52px; }
  .legal .meta { color: var(--muted); font-size: 14.5px; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--paper-2); }
  .legal h2 { font-size: 24px; margin: 34px 0 12px; }
  .legal h3 { font-size: 18px; margin: 22px 0 8px; font-family: var(--body); font-weight: 700; letter-spacing: 0; }
  .legal p, .legal li { color: #3a4048; font-size: 16px; margin-bottom: 12px; }
  .legal ul { padding-left: 22px; margin-bottom: 12px; }
  .legal a { color: #b7791f; }
  .legal .callout { background: var(--paper); border-left: 4px solid var(--amber); border-radius: 10px; padding: 16px 18px; margin: 18px 0; }
  .legal .callout p { margin: 0; }
  .legal .toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
  .legal .toc a { font-size: 13.5px; text-decoration: none; background: var(--paper); border-radius: 99px; padding: 6px 12px; color: var(--text); }
  .legal .toc a:hover { background: var(--paper-2); }
  .consent { font-size: 12.5px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
  .consent a { color: var(--muted); }
  .foot-legal { width: 100%; display: flex; flex-wrap: wrap; gap: 8px 20px; padding-top: 22px; border-top: 1px solid #1a2028; font-size: 13.5px; }
  .foot-legal a { color: var(--muted-dark); }
  .disclaim { width: 100%; font-size: 12.5px; color: #6b7480; line-height: 1.55; }

  @media (max-width: 1020px) {
    .stages { grid-template-columns: repeat(2, 1fr); }
    .writing { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 860px) {
    .nav-links { display: none; }
    .menu-btn { display: inline-flex; }
    .mobile-menu { display: block; position: fixed; top: 72px; left: 0; right: 0; background: rgba(13,16,20,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-dark); padding: 10px 20px 22px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
    .mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
    .mobile-menu a { display: block; color: #d5dbe2; text-decoration: none; font-size: 18px; font-weight: 600; padding: 14px 4px; border-bottom: 1px solid #1d232b; }
    .mobile-menu a.active { color: var(--amber); }
    .mobile-menu .btn { margin-top: 16px; width: 100%; border-bottom: 0; color: var(--ink); display: flex; }
    .nav.menu-open { background: rgba(13,16,20,.97); border-color: var(--line-dark); }
  }
  @media (max-width: 760px) {
    .stages, .writing { grid-template-columns: 1fr; }
    .page-hero { padding: 112px 0 52px; }
    .legal { padding: 28px 0 80px; }
    .legal .doc { padding: 28px 20px; border-radius: 16px; }
  }

  /* ---------- Clickable services + modal ---------- */
  .svc[role=button] { cursor: pointer; transition: border-color .2s, transform .2s, box-shadow .2s; }
  .svc[role=button]:hover { border-color: var(--amber); transform: translateY(-2px); box-shadow: 0 12px 30px -18px rgba(13,16,20,.35); }
  .svc .more, .mode .more { display: inline-block; margin-top: 8px; font-size: 13.5px; font-weight: 600; color: #b7791f; }
  .modal[hidden] { display: none; }
  .modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
  .modal-back { position: absolute; inset: 0; background: rgba(8,10,13,.62); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); animation: fadeIn .2s ease; }
  .modal-card { position: relative; background: var(--white); border-radius: 24px; width: 100%; max-width: 560px; max-height: calc(100vh - 40px); overflow: auto; padding: 34px 32px 28px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); animation: popIn .25s cubic-bezier(.2,.9,.3,1.15); }
  @keyframes fadeIn { from { opacity: 0; } }
  @keyframes popIn { from { opacity: 0; transform: translateY(16px) scale(.97); } }
  .modal-x { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 12px; border: 0; background: var(--paper); cursor: pointer; display: grid; place-items: center; color: var(--text); }
  .modal-x svg { width: 18px; height: 18px; }
  .modal-card h3 { font-size: clamp(26px, 3.4vw, 34px); margin: 10px 40px 12px 0; }
  .m-lead { color: var(--muted); font-size: 16.5px; margin-bottom: 20px; }
  .modal-card h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 10px; }
  .modal-card ol { list-style: none; counter-reset: m; display: grid; gap: 10px; margin-bottom: 20px; }
  .modal-card ol li { counter-increment: m; display: flex; gap: 12px; font-size: 15.5px; line-height: 1.5; }
  .modal-card ol li::before { content: counter(m); flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--ink); color: var(--amber); font-weight: 700; font-size: 13px; display: grid; place-items: center; margin-top: 1px; }
  .m-best { background: var(--paper); border-radius: 14px; padding: 14px 16px; font-size: 15px; margin-bottom: 22px; }
  .m-cta { display: flex; flex-wrap: wrap; gap: 10px; }
  .m-cta .btn { flex: 1 1 200px; }
  body.modal-open { overflow: hidden; }

  /* ---------- Receptionist modes ---------- */
  .coverage { background: var(--paper); }
  .modes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .mode { position: relative; text-align: left; font: inherit; color: var(--text); background: var(--white); border: 1px solid var(--paper-2); border-radius: var(--radius); padding: 28px 22px 22px; cursor: pointer; transition: border-color .2s, transform .2s, box-shadow .2s; }
  .mode:hover { border-color: var(--amber); transform: translateY(-3px); box-shadow: var(--shadow); }
  .mode h3 { font-size: 21px; margin-bottom: 8px; }
  .mode p { color: var(--muted); font-size: 15px; }
  .mode-tag { position: absolute; top: -11px; left: 20px; background: var(--amber); color: var(--ink); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 10px; border-radius: 99px; }
  .modes-note { text-align: center; margin-top: 28px; color: var(--muted); font-size: 15.5px; }

  /* ---------- Chat widget ---------- */
  .chatw { position: fixed; right: 20px; bottom: 20px; z-index: 150; }
  .chatw-btn { width: 60px; height: 60px; border-radius: 50%; border: 0; background: var(--amber); color: var(--ink); cursor: pointer; display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(245,165,36,.8), 0 4px 12px rgba(0,0,0,.25); transition: transform .2s; margin-left: auto; }
  .chatw-btn:hover { transform: scale(1.06); }
  .chatw-btn svg { width: 26px; height: 26px; grid-area: 1/1; transition: opacity .2s, transform .2s; }
  .chatw-btn .i-close { opacity: 0; transform: rotate(-45deg); }
  .chatw.open .chatw-btn .i-open { opacity: 0; transform: rotate(45deg); }
  .chatw.open .chatw-btn .i-close { opacity: 1; transform: none; }
  .chatw-panel[hidden] { display: none; }
  .chatw-panel { position: absolute; right: 0; bottom: 74px; width: 370px; max-width: calc(100vw - 32px); height: 540px; max-height: calc(100vh - 120px); background: var(--white); border-radius: 22px; box-shadow: 0 30px 70px -20px rgba(0,0,0,.5); display: flex; flex-direction: column; overflow: hidden; animation: popIn .22s ease; border: 1px solid var(--paper-2); }
  .chatw-head { background: var(--ink); color: var(--white); padding: 16px 18px; display: flex; gap: 12px; align-items: center; }
  .chatw-head b { display: block; font-size: 15.5px; }
  .chatw-head small { color: var(--muted-dark); font-size: 12.5px; }
  .chatw-log { flex: 1; overflow-y: auto; padding: 16px 14px 6px; display: flex; flex-direction: column; gap: 8px; background: #faf8f4; }
  .cb { max-width: 86%; padding: 10px 13px; border-radius: 16px; font-size: 14.5px; line-height: 1.45; animation: popIn .2s ease; }
  .cb.bot { background: var(--white); border: 1px solid var(--paper-2); border-bottom-left-radius: 6px; align-self: flex-start; }
  .cb.me { background: var(--ink); color: var(--white); border-bottom-right-radius: 6px; align-self: flex-end; }
  .cb a { color: #b7791f; font-weight: 600; }
  .cb.me a { color: var(--amber); }
  .cb .cb-btn { display: inline-flex; margin-top: 8px; background: var(--amber); color: var(--ink); text-decoration: none; padding: 8px 14px; border-radius: 99px; font-weight: 600; font-size: 14px; }
  .chatw-chips { display: flex; gap: 6px; flex-wrap: wrap; padding: 8px 12px; background: #faf8f4; border-top: 1px solid var(--paper-2); }
  .chatw-chips button { font: 500 13px var(--body); border: 1.5px solid #ddd6c8; background: var(--white); color: var(--text); border-radius: 99px; padding: 6px 11px; cursor: pointer; }
  .chatw-chips button:hover { border-color: var(--amber); }
  .chatw-form { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--paper-2); }
  .chatw-form input { flex: 1; min-width: 0; font: 15px var(--body); border: 1.5px solid #ddd6c8; border-radius: 99px; padding: 10px 14px; }
  .chatw-form input:focus { outline: none; border-color: var(--amber); }
  .chatw-form button { width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--ink); color: var(--amber); display: grid; place-items: center; cursor: pointer; flex: none; }
  .chatw-form button svg { width: 18px; height: 18px; }
  .chatw-foot { font-size: 11.5px; color: var(--muted); text-align: center; padding: 0 12px 10px; }
  .chatw-foot a { color: var(--muted); }
  .typing-dots { display: inline-flex; gap: 4px; padding: 4px 2px; }
  .typing-dots i { width: 6px; height: 6px; border-radius: 50%; background: #b9b2a5; animation: blink 1.2s infinite; }
  .typing-dots i:nth-child(2) { animation-delay: .15s; } .typing-dots i:nth-child(3) { animation-delay: .3s; }

  @media (max-width: 1020px) { .modes { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 760px) {
    .modes { grid-template-columns: 1fr; gap: 20px; }
    .chatw { right: 14px; bottom: 84px; }
    .chatw-btn { width: 54px; height: 54px; }
    .chatw-panel { position: fixed; left: 12px; right: 12px; bottom: 150px; width: auto; max-width: none; height: auto; top: 84px; max-height: none; }
    .modal { align-items: flex-end; padding: 0; }
    .modal-card { border-radius: 22px 22px 0 0; max-height: 88vh; padding: 28px 20px calc(22px + env(safe-area-inset-bottom)); }
  }

  @media (max-width: 760px) { .mbar { grid-template-columns: 1fr; } }

  /* ---------- Live demo band ---------- */
  .demo-card { max-width: 660px; margin: 0 auto; background: var(--ink); color: var(--white); border-radius: 28px; padding: 46px 30px 34px; text-align: center; position: relative; overflow: hidden; }
  .demo-card::before { content: ""; position: absolute; width: 620px; height: 620px; left: 50%; top: -320px; transform: translateX(-50%); background: radial-gradient(circle, rgba(245,165,36,.22), transparent 62%); pointer-events: none; }
  .demo-card > * { position: relative; }
  .demo-live { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #8ee6b8; background: rgba(47,191,113,.12); border: 1px solid rgba(47,191,113,.35); border-radius: 99px; padding: 6px 14px; }
  .demo-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(47,191,113,.2); animation: pulse 2s infinite; }
  .demo-num { display: block; font-family: var(--head); font-weight: 800; font-size: clamp(40px, 7vw, 60px); letter-spacing: -0.02em; color: var(--amber); text-decoration: none; margin: 16px 0 10px; font-variant-numeric: tabular-nums; }
  .demo-num:hover { color: var(--amber-2); }
  .demo-sub { color: #b8c0ca; font-size: 16.5px; max-width: 480px; margin: 0 auto 20px; }
  .demo-try { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 22px; }
  .demo-try span { font-size: 13.5px; color: #d7dde4; background: var(--ink-3); border: 1px solid var(--line-dark); border-radius: 99px; padding: 7px 14px; }
  .demo-note { font-size: 12.5px; color: var(--muted-dark); max-width: 460px; margin: 0 auto; }
