/* =========================================================
   ClearWay Recovery & Transport
   Redesign: "Hazard & Rescue" system
   Grounded in recovery-truck vernacular: rescue red +
   hazard amber on structural charcoal. Signage-condensed
   display type against neutral body.
   Functionality preserved: every JS DOM hook is kept.
   ========================================================= */

:root {
  --ink: #101216;
  --ink-2: #171a20;
  --ink-3: #1e222a;
  --ink-4: #262b34;
  --line: #2a2f39;
  --line-2: #39404c;

  --paper: #f5f6f8;
  --muted: #b3bac6;
  --steel: #868f9d;

  --rescue: #ff3b30;
  --rescue-deep: #d21f16;
  --rescue-soft: rgba(255, 59, 48, 0.14);
  --rescue-glow: rgba(255, 59, 48, 0.34);
  --amber: #ffb400;
  --amber-soft: rgba(255, 180, 0, 0.14);

  --wa: #25d366;
  --success: #34c759;

  --disp: "Saira Condensed", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;

  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.32);
  --max: 1180px;
  --sec-y: clamp(64px, 9vw, 108px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink); color: var(--paper); font-family: var(--body);
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--disp); font-weight: 600; line-height: 1.0; letter-spacing: 0.005em; }
h1 { font-size: clamp(46px, 8vw, 92px); }
h2 { font-size: clamp(34px, 5.4vw, 60px); }
p { text-wrap: pretty; }

.sec-head { max-width: 46ch; margin-bottom: clamp(30px, 4vw, 46px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: 9px; font-family: var(--body); font-size: 13px; font-weight: 600; color: var(--amber); margin-bottom: 12px; }
.kicker::before { content: ""; width: 8px; height: 8px; background: var(--amber); border-radius: 2px; transform: rotate(45deg); }
.sec-head h2 { margin-bottom: 12px; }
.sec-head p { color: var(--muted); font-size: clamp(15px, 1.6vw, 17.5px); max-width: 52ch; }
.sec-head.center p { margin-left: auto; margin-right: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--amber); margin-bottom: 12px; }

.rv { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .rev-track { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 600; font-size: 15px; font-family: var(--body); border: none; border-radius: 12px; padding: 15px 26px; min-height: 52px; cursor: pointer; text-align: center; transition: transform 0.14s ease, filter 0.16s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease; }
.btn:active { transform: translateY(1px) scale(0.995); }
.btn-red { background: var(--rescue); color: #fff; box-shadow: 0 10px 26px var(--rescue-glow); }
.btn-red:hover { filter: brightness(1.07); box-shadow: 0 14px 32px var(--rescue-glow); }
.btn-line { background: transparent; color: var(--paper); border: 1.5px solid var(--line-2); }
.btn-line:hover { border-color: var(--steel); background: rgba(255,255,255,0.03); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--paper); border: 1.5px solid var(--line); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--steel); background: rgba(255,255,255,0.09); }
.btn-block { width: 100%; }

/* Nav */
.top { position: sticky; top: 0; z-index: 90; background: rgba(16, 18, 22, 0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.top-in { display: flex; align-items: center; gap: 22px; height: 70px; }
.logo { display: inline-flex; flex-direction: column; line-height: 1; flex: none; }
.logo .name { font-family: var(--disp); font-weight: 700; font-size: 27px; letter-spacing: 0.02em; }
.logo .name b { color: var(--paper); font-weight: 700; }
.logo .name span { color: var(--rescue); }
.logo .sub { font-family: var(--body); font-size: 8.5px; font-weight: 600; letter-spacing: 2.6px; color: var(--steel); margin-top: 3px; }
.logo-img { height: 46px; width: auto; display: block; }
.f-logo-img { height: 60px; margin-bottom: 4px; }
@media (max-width: 560px) { .logo-img { height: 40px; } }
.nav-links { display: flex; gap: 3px; margin-left: 8px; flex: 1; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); padding: 8px 12px; border-radius: 9px; transition: color 0.15s, background 0.15s; }
.nav-links a:hover { color: var(--paper); background: rgba(255,255,255,0.04); }
.top-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.pill { display: inline-flex; align-items: center; gap: 9px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 11px; padding: 7px 12px; transition: border-color 0.15s, transform 0.15s; }
.pill:hover { border-color: var(--line-2); transform: translateY(-1px); }
.pill .mk { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; flex: none; }
.pill .mk svg { width: 15px; height: 15px; }
.rt-g { background: var(--amber-soft); } .rt-g svg { fill: var(--amber); }
.ig-g { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); } .ig-g svg { fill: #fff; }
.tp-g { background: rgba(52,199,89,0.14); } .tp-g svg { fill: var(--success); }
.pill .tx { display: flex; flex-direction: column; line-height: 1.15; }
.pill .tx small { font-size: 9.5px; color: var(--steel); font-weight: 500; }
.pill .tx b { font-size: 12.5px; font-weight: 700; }
.top-call { display: none; }
@media (max-width: 1080px) { .nav-links { display: none; } .pill.ig, .pill.tp { display: none; } }
@media (max-width: 560px) { .pill.rt { display: none; } .top-in { gap: 12px; } }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 9vw, 104px) 0 clamp(80px, 11vw, 132px); border-bottom: 1px solid var(--line); }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(107deg, var(--ink) 30%, rgba(16,18,22,0.60) 62%, rgba(16,18,22,0.34) 100%), url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1600&q=72&auto=format&fit=crop") center right/cover no-repeat; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent 0 22px, rgba(255,180,0,0.028) 22px 44px); -webkit-mask-image: linear-gradient(300deg, #000 0%, transparent 45%); mask-image: linear-gradient(300deg, #000 0%, transparent 45%); }
.hero-inner { position: relative; max-width: 760px; }
.hero-flag { display: inline-flex; align-items: center; gap: 10px; background: var(--rescue-soft); border: 1px solid rgba(255,59,48,0.3); color: #ff9a93; font-weight: 600; font-size: 13.5px; padding: 8px 15px; border-radius: 100px; margin-bottom: 22px; }
.hero-flag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rescue); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 var(--rescue-glow);} 70%{box-shadow:0 0 0 9px rgba(255,59,48,0);} 100%{box-shadow:0 0 0 0 rgba(255,59,48,0);} }
.hero h1 { margin-bottom: 20px; text-transform: uppercase; }
.hero h1 .l2 { display: block; color: var(--muted); font-weight: 500; }
.hero .lead { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 54ch; margin-bottom: 30px; }
.hero-choose { margin-bottom: 26px; }
.hero-choose-label { font-size: 13px; font-weight: 600; color: var(--steel); margin-bottom: 11px; }
.hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; max-width: 460px; }
.hero-act { display: flex; align-items: center; gap: 12px; text-align: left; background: rgba(23, 26, 32, 0.92); border: 1.5px solid var(--line-2); border-radius: 14px; padding: 15px 16px; cursor: pointer; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: border-color 0.15s, background 0.15s, transform 0.15s; }
.hero-act:hover { border-color: var(--rescue); background: var(--ink-3); transform: translateY(-2px); }
.hero-act .hi { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 9px; background: var(--rescue-soft); }
.hero-act .hi svg { width: 19px; height: 19px; stroke: var(--rescue); fill: none; stroke-width: 1.8; }
.hero-act b { font-size: 15px; font-weight: 600; display: block; color: var(--paper); }
.hero-act small { font-size: 12px; color: var(--muted); }
.trust-row { display: flex; flex-wrap: wrap; gap: 9px 18px; }
.trust-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--muted); font-weight: 500; }
.trust-badge i { color: var(--amber); font-style: normal; font-weight: 700; }
@media (max-width: 520px) { .hero-actions { grid-template-columns: 1fr; } }

/* Section base */
section { padding: var(--sec-y) 0; }
section[id] { scroll-margin-top: 84px; }
.section-tight { padding-top: 0; }

/* How it works */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px 28px; border-top: 3px solid var(--rescue); }
.step-card .step-num { font-family: var(--disp); font-size: 52px; font-weight: 700; color: var(--ink-4); line-height: 0.8; margin-bottom: 14px; }
.step-card h3 { font-size: 25px; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 15px; }
@media (max-width: 780px) { .steps-grid { grid-template-columns: 1fr; } }

/* Booking wizard */
.estimate-section { position: relative; }
.calc { background: linear-gradient(168deg, var(--ink-3), var(--ink-2)); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 44px); max-width: 860px; margin: 0 auto; box-shadow: var(--shadow); }
.calc-head { margin-bottom: 26px; }
.calc-head h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 8px; }
.calc-head p { color: var(--muted); font-size: 15px; max-width: 56ch; }
.wiz-steps { display: flex; align-items: center; gap: 7px; margin-bottom: 30px; }
.ws { width: 32px; height: 32px; border-radius: 50%; background: var(--ink); border: 1.5px solid var(--line-2); color: var(--steel); display: grid; place-items: center; font-weight: 700; font-size: 13.5px; flex: none; font-family: var(--body); transition: 0.25s; }
.ws.on { background: var(--rescue); border-color: var(--rescue); color: #fff; box-shadow: 0 0 0 4px var(--rescue-soft); }
.ws.done { background: var(--rescue-soft); border-color: var(--rescue); color: #ff9a93; }
.ws-l { flex: 1; height: 2px; background: var(--line); border-radius: 2px; }
.wiz-panel { animation: fadeSlide 0.32s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.wiz-q { font-family: var(--disp); font-weight: 600; font-size: 27px; margin-bottom: 16px; }
.wiz-q span { font-family: var(--body); font-size: 13px; color: var(--steel); font-weight: 500; }
.wiz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 10px; }
.wopt { background: var(--ink); border: 1.5px solid var(--line-2); border-radius: 13px; color: var(--paper); font-weight: 500; font-size: 15px; padding: 16px 15px; cursor: pointer; text-align: left; transition: 0.15s; font-family: var(--body); }
.wopt:hover { border-color: var(--rescue); background: var(--ink-3); }
.wopt.on { background: var(--rescue-soft); border-color: var(--rescue); color: #ffb8b3; }
.wiz-nav { display: flex; gap: 11px; margin-top: 22px; flex-wrap: wrap; }
.calc-grid { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; }
.field label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.calc input, .calc select, .calc textarea { background: var(--ink); border: 1.5px solid var(--line-2); border-radius: 12px; color: var(--paper); padding: 14px 15px; min-height: 52px; width: 100%; transition: border-color 0.15s, box-shadow 0.15s; }
.calc textarea { min-height: 90px; resize: vertical; }
.calc input:focus, .calc select:focus, .calc textarea:focus { outline: none; border-color: var(--rescue); box-shadow: 0 0 0 3px var(--rescue-soft); }
.calc input::placeholder, .calc textarea::placeholder { color: var(--steel); }
.gps-row { display: flex; gap: 9px; }
.gps-row input { flex: 1; }
.gps-btn { flex: none; background: var(--ink-3); border: 1.5px solid var(--line-2); color: var(--muted); border-radius: 12px; padding: 0 16px; font-size: 13px; font-weight: 600; cursor: pointer; transition: 0.15s; min-height: 52px; white-space: nowrap; }
.gps-btn:hover { border-color: var(--amber); color: var(--amber); }
.gps-btn.ok { border-color: var(--success); color: var(--success); }
.addr-status { font-size: 11.5px; font-weight: 600; margin-left: 6px; }
.addr-status.ok { color: var(--success); }
.addr-status.bad { color: var(--amber); }
.addr-status.checking { color: var(--steel); }
.addr-status.neutral { color: var(--steel); font-weight: 500; }
.calc-err { display: none; margin-top: 14px; padding: 12px 15px; background: var(--rescue-soft); border: 1px solid rgba(255,59,48,0.3); border-radius: 11px; color: #ff9a93; font-size: 14px; font-weight: 500; }
@media (min-width: 720px) { .calc-grid { grid-template-columns: 1fr 1fr; } .calc-grid .field:last-child { grid-column: 1 / -1; } }
.calc-result { display: none; margin-top: 24px; }
.calc-result.show { display: block; animation: fadeSlide 0.4s ease; }
.quote-card { background: var(--ink); border: 1px solid var(--line-2); border-radius: var(--r); padding: 26px; }
.cr-price { font-family: var(--disp); font-size: 52px; font-weight: 700; line-height: 1; }
.cr-price small { font-family: var(--body); font-size: 14px; font-weight: 500; color: var(--steel); margin-left: 8px; }
.cr-meta { color: var(--muted); font-size: 14px; margin: 6px 0 18px; }
.cr-lines { display: flex; flex-direction: column; gap: 9px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cr-lines > div { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; }
.cr-summary span { color: var(--steel); }
.cr-summary b { color: var(--paper); font-weight: 600; text-align: right; }
.cr-lines span { color: var(--muted); }
.cr-lines b { font-weight: 600; white-space: nowrap; }
.cr-total-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0 4px; font-family: var(--disp); }
.cr-total-row span { font-size: 16px; color: var(--muted); }
.cr-total-row b { font-size: 30px; }
.cr-cta { display: flex; gap: 11px; margin-top: 18px; flex-wrap: wrap; }
.cr-cta .btn { flex: 1; min-width: 160px; }
.cr-note { margin-top: 14px; font-size: 12.5px; color: var(--steel); line-height: 1.5; }
.wheel-wrap { position: relative; }
.wheel-picker { position: relative; height: 150px; overflow-y: scroll; scroll-snap-type: y proximity; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; border-radius: 13px; background: var(--ink); border: 1.5px solid var(--line-2); scrollbar-width: none; }
.wheel-picker::-webkit-scrollbar { display: none; }
.wheel-item { height: 44px; display: flex; align-items: center; justify-content: center; scroll-snap-align: center; font-size: 17px; color: var(--steel); font-weight: 600; transition: color 0.15s, font-size 0.15s; user-select: none; cursor: pointer; }
.wheel-item.active { color: var(--paper); font-size: 24px; font-weight: 700; }
.wheel-center-line { position: absolute; top: 50%; left: 8px; right: 8px; height: 44px; margin-top: -22px; border-top: 1.5px solid var(--rescue); border-bottom: 1.5px solid var(--rescue); pointer-events: none; border-radius: 6px; background: var(--rescue-soft); }
.wheel-fade-top, .wheel-fade-bottom { position: absolute; left: 0; right: 0; height: 52px; pointer-events: none; z-index: 2; }
.wheel-fade-top { top: 0; background: linear-gradient(180deg, var(--ink), transparent); }
.wheel-fade-bottom { bottom: 0; background: linear-gradient(0deg, var(--ink), transparent); }
.wheel-value-label { text-align: center; margin-top: 8px; font-size: 13px; color: var(--muted); font-weight: 500; }
.wheel-value-label b { color: var(--amber); }
.yn-field { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.yn-field > span { font-size: 14.5px; font-weight: 500; }
.yn-btns { display: flex; gap: 7px; flex: none; }
.yn-btns button { background: var(--ink); border: 1.5px solid var(--line-2); color: var(--muted); border-radius: 9px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: 0.15s; }
.yn-btns button.on { background: var(--rescue); border-color: var(--rescue); color: #fff; }
.toggle-row { display: flex; gap: 8px; flex-wrap: wrap; }
.toggle-btn { background: var(--ink); border: 1.5px solid var(--line-2); color: var(--paper); border-radius: 11px; padding: 12px 16px; font-size: 14px; font-weight: 500; cursor: pointer; transition: 0.15s; }
.toggle-btn:hover { border-color: var(--rescue); }
.toggle-btn.on { background: var(--rescue-soft); border-color: var(--rescue); color: #ffb8b3; }
.photo-drop { border: 1.5px dashed var(--line-2); border-radius: 12px; padding: 22px 16px; text-align: center; color: var(--steel); font-size: 14px; cursor: pointer; transition: 0.15s; }
.photo-drop:hover { border-color: var(--amber); color: var(--amber); }
.photo-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.photo-thumbs img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line-2); }

/* Services */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 22px; transition: border-color 0.18s, transform 0.18s, background 0.18s; }
.svc-card:hover { border-color: var(--rescue); transform: translateY(-3px); background: var(--ink-3); }
.svc-card .ic { width: 46px; height: 46px; margin-bottom: 16px; }
.svc-card .ic svg { width: 46px; height: 46px; stroke: var(--amber); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { font-size: 24px; margin-bottom: 7px; }
.svc-card p { color: var(--muted); font-size: 14px; }
@media (max-width: 940px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .card-grid { grid-template-columns: 1fr; } }

/* Why */
.why-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-item { display: flex; gap: 13px; padding: 18px; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); }
.why-item .tick { flex: none; width: 26px; height: 26px; border-radius: 7px; background: var(--amber-soft); color: var(--amber); display: grid; place-items: center; font-weight: 800; font-size: 14px; }
.why-item b { display: block; font-size: 15.5px; margin-bottom: 3px; }
.why-item span { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
@media (max-width: 900px) { .why-wrap { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* Coverage */
.coverage-layout { position: relative; }
.map-panel { position: relative; border-radius: var(--r-lg); border: 1px solid var(--line-2); background: var(--ink); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-panel.map-dispatch { min-height: 420px; display: flex; flex-direction: column; }
.map-chrome { position: absolute; top: 0; left: 0; right: 0; z-index: 50; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; background: linear-gradient(180deg, rgba(16,18,22,0.92), transparent); pointer-events: none; }
.map-chrome::before { content: "LIVE DISPATCH"; font-size: 10px; font-weight: 700; letter-spacing: 1.4px; color: var(--amber); }
.map-chrome-meta { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; color: var(--muted); text-shadow: 0 1px 4px rgba(0,0,0,0.7); }
.dispatch-stat { position: absolute; top: 14px; right: 18px; z-index: 55; display: none; }
.dispatch-svg { width: 100%; aspect-ratio: 570 / 320; height: auto; display: block; background: transparent; }
@media (max-width: 720px) { .dispatch-svg { aspect-ratio: 300 / 250; } .map-panel.map-dispatch { min-height: 0; } }
.roads .road { stroke: #363b45; stroke-width: 1.1; }
.roads .road-m { stroke: #414753; stroke-width: 1.4; }
.road-labels text { fill: var(--steel); font-family: var(--body); font-size: 8px; font-weight: 700; letter-spacing: 0.5px; }
.node-dot { fill: var(--amber); }
.node-label { fill: var(--paper); font-family: var(--body); font-size: 9px; font-weight: 600; }
.node-ring { fill: none; stroke: var(--amber); stroke-width: 1; opacity: 0.5; }

/* Other services (tabbed) */
.othersvc-tabs { display: flex; gap: 8px; margin-bottom: 22px; justify-content: center; flex-wrap: wrap; }
.ost-tab { background: var(--ink-2); border: 1.5px solid var(--line-2); color: var(--muted); border-radius: 12px; padding: 13px 22px; font-size: 15px; font-weight: 600; cursor: pointer; transition: 0.15s; font-family: var(--body); display: inline-flex; align-items: center; gap: 9px; }
.ost-tab:hover { border-color: var(--amber); color: var(--paper); }
.ost-tab.on { background: var(--rescue); border-color: var(--rescue); color: #fff; }
.ost-tab .ost-ic { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.ost-panel { display: none; }
.ost-panel.on { display: block; animation: fadeSlide 0.3s ease; }

/* Partner band */
.partner-band { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); min-height: 280px; display: flex; align-items: center; padding: clamp(30px, 5vw, 52px); background: linear-gradient(100deg, rgba(16,18,22,0.95) 26%, rgba(16,18,22,0.5) 100%), url("https://images.unsplash.com/photo-1686966933735-305bd8fe0a77?w=1400&q=70&auto=format&fit=crop") center/cover no-repeat; box-shadow: var(--shadow); }
.partner-band::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: repeating-linear-gradient(180deg, var(--amber) 0 16px, var(--ink) 16px 32px); }
.partner-band h2 { font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 10px; max-width: 16ch; }
.partner-band p { color: var(--muted); max-width: 48ch; margin-bottom: 22px; font-size: 15.5px; }

/* Platform */
.soon { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(30px, 5vw, 52px); }
.soon h2 { font-size: clamp(28px, 4.4vw, 46px); margin-bottom: 12px; max-width: 20ch; }
.soon > p { color: var(--muted); max-width: 60ch; font-size: 15.5px; margin-bottom: 22px; }
.plat-feats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.plat-feats span { background: var(--ink); border: 1px solid var(--line-2); border-radius: 100px; padding: 9px 16px; font-size: 13px; color: var(--muted); font-weight: 500; }
.plat-feats span::before { content: ">"; color: var(--amber); margin-right: 6px; font-weight: 700; }
.calc-actions { display: flex; gap: 11px; flex-wrap: wrap; }

/* Reviews */
.rev-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.rev-track { display: flex; gap: 16px; width: max-content; animation: revscroll 62s linear infinite; }
.rev-viewport:hover .rev-track { animation-play-state: paused; }
@keyframes revscroll { to { transform: translateX(-50%); } }
.rev { flex: none; width: 340px; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.rev .st { color: var(--amber); letter-spacing: 2px; margin-bottom: 12px; font-size: 14px; }
.rev p { font-size: 14.5px; color: var(--paper); margin-bottom: 14px; line-height: 1.55; }
.rev b { color: var(--muted); font-size: 13.5px; font-weight: 600; }

/* FAQ */
.faq-list { max-width: 760px; }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 20px 40px 20px 0; font-family: var(--disp); font-size: 22px; font-weight: 600; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--body); font-size: 24px; color: var(--amber); font-weight: 400; transition: transform 0.2s; }
details[open] summary::after { content: "\2212"; }
details p { color: var(--muted); font-size: 15px; padding: 0 0 20px; max-width: 62ch; }

/* CTA band */
.band { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; background: linear-gradient(105deg, var(--rescue-deep), var(--rescue)); border-radius: var(--r-lg); padding: clamp(30px, 5vw, 50px); box-shadow: 0 20px 50px var(--rescue-glow); position: relative; overflow: hidden; }
.band::after { content: ""; position: absolute; right: -40px; top: 0; bottom: 0; width: 180px; background: repeating-linear-gradient(-45deg, transparent 0 18px, rgba(0,0,0,0.08) 18px 36px); }
.band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 6px; }
.band p { color: rgba(255,255,255,0.9); font-size: 16px; }
.band .btns { display: flex; gap: 11px; flex-wrap: wrap; position: relative; z-index: 2; }
.band .btns .btn { background: #fff; color: var(--ink); font-weight: 700; }
.band .btns .btn:hover { filter: brightness(0.95); }

/* Footer */
footer { border-top: 1px solid var(--line); padding: clamp(48px, 7vw, 72px) 0 40px; }
.f-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 30px; margin-bottom: 34px; }
.f-brand p { color: var(--muted); font-size: 14.5px; margin-top: 14px; max-width: 32ch; }
footer h4 { font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--steel); text-transform: uppercase; margin-bottom: 15px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
footer ul a { color: var(--muted); font-size: 14.5px; transition: color 0.15s; }
footer ul a:hover { color: var(--paper); }
.f-contact div { font-size: 14.5px; color: var(--muted); margin-bottom: 9px; }
.f-contact b { color: var(--paper); font-weight: 600; }
.f-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); font-size: 13px; color: var(--steel); }
.f-bottom b { color: var(--rescue); }
@media (max-width: 820px) { .f-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .f-grid { grid-template-columns: 1fr; } }

/* Mobile sticky bar */
.mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.mbar a { flex: 1; text-align: center; padding: 15px; font-weight: 700; font-size: 15px; }
.mbar .c { background: var(--rescue); color: #fff; }
.mbar .w { background: var(--wa); color: #052e16; }
@media (max-width: 820px) { .mbar { display: flex; } body { padding-bottom: 56px; } }

/* Back to top */
.totop { position: fixed; right: 20px; bottom: 20px; z-index: 88; width: 46px; height: 46px; border-radius: 12px; background: var(--ink-3); border: 1px solid var(--line-2); color: var(--paper); font-size: 20px; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.15s; }
.totop.show { opacity: 1; pointer-events: auto; }
.totop:hover { border-color: var(--amber); }
@media (max-width: 820px) { .totop { bottom: 70px; } }

:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
