/* Astro Precision Detailing — black + electric blue, white type. */

:root {
  --ink: #06070a;
  --ink-2: #0a0c11;
  --panel: #0f1218;
  --panel-2: #141923;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --blue: #1f6bff;
  --blue-hi: #5b93ff;
  --blue-soft: rgba(31, 107, 255, 0.16);
  --blue-glow: rgba(31, 107, 255, 0.45);
  --white: #f5f7fb;
  --muted: #a1aabb;
  --dim: #6c7486;
  --danger: #ff6b6b;
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  /* clip (not hidden) so nothing wider than the screen can create sideways scroll, and sticky still works */
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-wrap: balance;
}
h2 {
  font-size: clamp(2.1rem, 5vw, 3.9rem);
  font-weight: 800;
  text-transform: uppercase;
}
h2 em, h1 span, .banner__line em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, var(--white) 0%, var(--blue-hi) 55%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue-hi); outline-offset: 3px; border-radius: 6px; }

.shell {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

/* Header + hero run wider than the content grid so the hero copy sits near the left edge
   and leaves the car visible. */
.shell--wide { max-width: 1640px; padding-inline: clamp(16px, 4vw, 64px); }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  padding: 10px 14px; background: var(--blue); border-radius: 8px;
}
.skip:focus { top: 12px; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  min-height: 48px; padding: 0 1.4em;
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background-color 0.25s, box-shadow 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset, 0 10px 30px -8px var(--blue-glow);
}
.btn--primary:hover { background: #3a7dff; box-shadow: 0 0 0 1px rgba(255,255,255,0.2) inset, 0 14px 40px -8px var(--blue-glow); }
.btn--glass {
  background: rgba(255,255,255,0.06); color: var(--white);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(255,255,255,0.12); }
.btn--sm { min-height: 40px; padding: 0 1.1em; font-size: 0.9rem; }
.btn--lg { min-height: 56px; padding: 0 1.7em; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ── Kicker (mono HUD label) ───────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--font-mono); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-hi);
}
.kicker::before {
  content: ""; width: 14px; height: 14px; flex: none;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 100% no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px currentColor inset;
  transform: scale(0.95);
}
.kicker__num { color: var(--white); opacity: 0.55; }

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h);
  transition: background-color 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(6, 7, 10, 0.78);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 46px; width: auto; }
.nav { display: none; gap: 28px; font-size: 0.92rem; color: var(--muted); }
.nav a { position: relative; transition: color 0.2s; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { transform: scaleX(1); }
.site-header__cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display: none; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem; }
.header-phone svg { width: 16px; height: 16px; fill: var(--blue-hi); }
@media (min-width: 1080px) { .nav { display: flex; } }
@media (min-width: 760px) { .header-phone { display: inline-flex; } }
@media (max-width: 420px) { .brand img { height: 32px; } .site-header__cta .btn--sm { padding: 0 0.9em; } }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,7,10,0.9) 0%, rgba(6,7,10,0.6) 24%, rgba(6,7,10,0) 50%),
    linear-gradient(0deg, rgba(6,7,10,0.9) 0%, rgba(6,7,10,0) 32%),
    linear-gradient(180deg, rgba(6,7,10,0.6) 0%, rgba(6,7,10,0) 22%);
}
.hero__content {
  position: relative; flex: 1;
  display: flex; flex-direction: column; justify-content: center; gap: 36px;
  padding-top: calc(var(--header-h) + 40px); padding-bottom: 72px;
}
.hero__copy { max-width: 620px; }
.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 6.6vw, 5.4rem);
  font-weight: 800; text-transform: uppercase;
}
.hero__lede { margin-top: 20px; max-width: 520px; font-size: clamp(1rem, 1.3vw, 1.12rem); color: #c9d0dc; }
.hero__actions { display: flex; flex-direction: column; gap: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* HUD overlay */
.hud { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hud__corner { position: absolute; width: 34px; height: 34px; border: 0 solid rgba(255,255,255,0.35); }
.hud__corner--tl { top: calc(var(--header-h) + 14px); left: 18px; border-top-width: 1.5px; border-left-width: 1.5px; }
.hud__corner--tr { top: calc(var(--header-h) + 14px); right: 18px; border-top-width: 1.5px; border-right-width: 1.5px; }
.hud__corner--bl { bottom: 18px; left: 18px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.hud__corner--br { bottom: 18px; right: 18px; border-bottom-width: 1.5px; border-right-width: 1.5px; }


.readout {
  position: absolute; right: 30px; bottom: 34px;
  display: grid; grid-template-columns: auto auto; gap: 4px 14px; align-items: center;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 14px; border-radius: 10px;
  background: rgba(6,7,10,0.5); border: 1px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.readout__label { color: var(--muted); }
.readout__value { color: var(--white); min-width: 7ch; text-align: right; }
.hero.is-clean .readout__value { color: var(--blue-hi); }
.readout__bar { grid-column: 1 / -1; height: 2px; background: var(--line-2); border-radius: 2px; overflow: hidden; }
.readout__bar i { display: block; height: 100%; width: 100%; background: var(--blue); transform-origin: left; transform: scaleX(var(--p, 1)); }

.replay {
  position: absolute; left: 50%; bottom: 26px; translate: -50% 0;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); padding: 8px 12px; border-radius: 999px;
  transition: color 0.2s, background-color 0.2s;
}
.replay:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.replay svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (min-width: 900px) {
  .hero__actions { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

/* Portrait screens use the vertical cut: headline on top, actions at the bottom, car between. */
@media (max-aspect-ratio: 1/1) {
  .hero__video { object-position: 50% 50%; }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(6,7,10,0.85) 0%, rgba(6,7,10,0.35) 30%, rgba(6,7,10,0) 44%),
      linear-gradient(0deg, rgba(6,7,10,0.95) 0%, rgba(6,7,10,0.55) 26%, rgba(6,7,10,0) 42%);
  }
  .hero__content { justify-content: space-between; padding-top: calc(var(--header-h) + 18px); padding-bottom: 96px; }
  .hero h1 { font-size: clamp(2.3rem, 10.5vw, 4rem); margin-top: 12px; }
  .hero__lede { margin-top: 12px; font-size: 0.98rem; }
  .readout { display: none; }
  .hud__corner--tl, .hud__corner--tr { display: none; }
  .hero__cta .btn { flex: 1 1 auto; }
  .replay { bottom: 84px; }
}
@media (max-width: 759px) and (max-aspect-ratio: 1/1) {
  /* Keep the car visible between headline and buttons on phones. */
  .hero__lede { display: none; }
  .hero__content { padding-bottom: 28px; }
  .replay, .hud__corner { display: none; }
}
@media (max-width: 759px) {
  .hud__corner--bl, .hud__corner--br { bottom: 84px; }
}

/* ── Ticker ────────────────────────────────────────────── */
.ticker {
  position: relative; overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--blue);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker__track { display: flex; width: max-content; }
.ticker__track.is-running { animation: ticker var(--ticker-duration, 40s) linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; flex: none; }
.ticker__group li {
  display: inline-flex; align-items: center; gap: 28px; padding: 15px 0 15px 28px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; color: #fff;
}
.ticker__group li::after {
  content: ""; width: 12px; height: 12px;
  background:
    linear-gradient(#fff, #fff) center / 100% 1.5px no-repeat,
    linear-gradient(#fff, #fff) center / 1.5px 100% no-repeat;
  opacity: 0.75;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── Sections ──────────────────────────────────────────── */
.section { padding-block: clamp(80px, 11vw, 140px); position: relative; }
.section--panel {
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(31,107,255,0.1), transparent 70%),
    var(--ink-2);
  border-block: 1px solid var(--line);
}
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head h2 { margin-top: 18px; }
.section-head__sub { margin-top: 18px; max-width: 560px; color: var(--muted); font-size: 1.05rem; }
.section-head--split { max-width: none; display: grid; gap: 18px; align-items: end; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.2fr 1fr; }
  .section-head--split .section-head__sub { justify-self: end; }
}

/* ── Packages ──────────────────────────────────────────── */
.tiers { display: grid; gap: 20px; }
@media (min-width: 860px) { .tiers { grid-template-columns: 1fr 1fr; } }
.tier {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.tier::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(31,107,255,0.22), transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.tier:hover { border-color: rgba(31,107,255,0.5); }
.tier:hover::before { opacity: 1; }
.tier__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.tier__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.tier:hover .tier__media img { transform: scale(1.04); }
.tier__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--panel-2) 0%, transparent 55%); }
.tier__body { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 14px; padding: 4px clamp(20px, 3vw, 32px) clamp(22px, 3vw, 32px); margin-top: -34px; flex: 1; }
.tier__eyebrow { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-hi); }
.tier h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; }
.tier__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.6rem, 7vw, 5.2rem); line-height: 1; letter-spacing: -0.04em; }
.tier__currency { font-size: 0.45em; vertical-align: 0.9em; margin-right: 2px; color: var(--blue-hi); }
.tier__points { display: grid; gap: 8px; margin-bottom: 8px; color: #cfd5e0; }
.tier__points li { display: flex; gap: 10px; align-items: baseline; }
.tier__points li::before { content: ""; width: 6px; height: 6px; flex: none; border-radius: 50%; background: var(--blue); translate: 0 -2px; box-shadow: 0 0 10px var(--blue); }
.tier .btn { margin-top: auto; }
.tiers__note { margin-top: 22px; color: var(--muted); text-align: center; font-size: 0.95rem; }
.tiers__note strong { color: var(--white); font-weight: 600; }

/* ── Included ──────────────────────────────────────────── */
.included { display: grid; gap: 20px; }
@media (min-width: 900px) { .included { grid-template-columns: 1fr 1fr; } }
.inc {
  display: grid; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--panel); border: 1px solid var(--line);
}
@media (min-width: 600px) { .inc { grid-template-columns: 0.9fr 1.1fr; } }
.inc__media { position: relative; min-height: 240px; }
.inc__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inc__tag {
  position: absolute; left: 14px; top: 14px;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px; background: rgba(6,7,10,0.7); border: 1px solid var(--line-2);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.checks { display: grid; align-content: center; gap: 4px; padding: clamp(20px, 3vw, 30px); }
.checks li {
  display: flex; gap: 12px; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.checks li:last-child { border-bottom: 0; }
.checks li::before {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.5 12.5l3.5 3.5 7.5-8' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat,
    var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

/* ── Banner ────────────────────────────────────────────── */
.banner { position: relative; min-height: clamp(420px, 62vh, 640px); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.banner__media { position: absolute; inset: -12% 0; z-index: -1; transform: translateY(var(--py, 0%)); will-change: transform; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; }
.banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(6,7,10,0.95) 0%, rgba(6,7,10,0.35) 55%, rgba(6,7,10,0.2) 100%), linear-gradient(90deg, rgba(6,7,10,0.6), transparent 60%); }
.banner__content { padding-block: clamp(48px, 7vw, 88px); }
.banner__line { margin-top: 14px; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2rem, 5.4vw, 4.4rem); line-height: 1; letter-spacing: -0.02em; }

/* ── Process ───────────────────────────────────────────── */
.steps { position: relative; display: grid; gap: 34px; padding-left: 34px; }
.steps__rail { position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--line-2); border-radius: 2px; overflow: hidden; }
.steps__fill { position: absolute; inset: 0; background: linear-gradient(180deg, var(--blue-hi), var(--blue)); transform-origin: top; transform: scaleY(var(--p, 1)); }
.step { position: relative; }
.step::before {
  content: ""; position: absolute; left: -33px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--blue); box-shadow: 0 0 0 5px var(--blue-soft);
}
.step__num { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.16em; color: var(--blue-hi); }
.step h3 { margin-top: 8px; font-size: 1.35rem; font-weight: 700; }
.step p { margin-top: 8px; color: var(--muted); max-width: 42ch; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 28px; padding-left: 0; padding-top: 40px; }
  .steps__rail { left: 8px; right: 8px; top: 7px; bottom: auto; width: auto; height: 2px; }
  .steps__fill { transform-origin: left; transform: scaleX(var(--p, 1)); }
  .step::before { left: 0; top: -40px; }
}

/* ── Area ──────────────────────────────────────────────── */
/* minmax(0, …) stops the aspect-ratio radar from stretching the column past the screen on phones */
.area { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width: 900px) { .area { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.radar {
  position: relative; width: 100%; max-width: 520px; margin-inline: auto; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,107,255,0.12), rgba(6,7,10,0) 70%);
}
.radar__sweep {
  position: absolute; inset: 5%; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(31,107,255,0) 0deg, rgba(31,107,255,0) 290deg, rgba(31,107,255,0.4) 360deg);
  animation: spin 6s linear infinite;
}
.radar__map { position: relative; width: 100%; height: 100%; overflow: visible; }
.radar__ring { fill: none; stroke: rgba(255,255,255,0.14); stroke-width: 1; stroke-dasharray: 3 5; }
.radar__ring--edge { stroke: var(--blue); stroke-dasharray: none; stroke-width: 1.5; }
.radar__axis { stroke: rgba(255,255,255,0.1); stroke-width: 1; }
.radar__mi { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; fill: var(--dim); }
.radar__town circle { fill: var(--blue-hi); }
.radar__town text { font-family: var(--font-display); font-weight: 600; font-size: 14px; fill: var(--white); }
.radar__pulse { fill: none !important; stroke: var(--blue-hi); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: pulse 2.4s var(--ease) infinite; animation-delay: var(--d, 0s); }
.radar__note { position: absolute; bottom: -4px; right: 0; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }
.area__copy h2 { margin-top: 18px; }
.towns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.towns li { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); font-weight: 600; }
.hours { display: grid; gap: 14px; margin: 28px 0; padding: 18px 20px; border-radius: var(--radius-sm); background: var(--panel); border: 1px solid var(--line); }
@media (min-width: 520px) { .hours { grid-template-columns: 1fr 1fr; } }
.hours__label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.hours__value { margin-top: 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.hours__value a:hover { color: var(--blue-hi); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq { display: grid; gap: 20px; }
@media (min-width: 900px) { .faq { grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; } .faq .section-head { position: sticky; top: calc(var(--header-h) + 32px); } }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-2);
  background:
    linear-gradient(var(--white), var(--white)) center / 11px 1.5px no-repeat,
    linear-gradient(var(--white), var(--white)) center / 1.5px 11px no-repeat;
  transition: transform 0.35s var(--ease), background-color 0.3s, border-color 0.3s;
}
.faq summary:hover { color: var(--blue-hi); }
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--blue); border-color: var(--blue); }
.faq details p { padding: 0 44px 22px 0; color: var(--muted); }
.faq details a { color: var(--blue-hi); }

/* ── Quote ─────────────────────────────────────────────── */
.quote {
  background:
    radial-gradient(700px 500px at 15% 30%, rgba(31,107,255,0.16), transparent 70%),
    var(--ink);
  border-top: 1px solid var(--line);
}
.quote__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .quote__grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.quote__copy h2 { margin-top: 18px; }
.quote__phone { display: inline-block; margin-top: 24px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.02em; border-bottom: 2px solid var(--blue); line-height: 1.2; }
.quote__phone:hover { color: var(--blue-hi); }
.quote__meta { margin-top: 12px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.form-card {
  position: relative;
  padding: clamp(22px, 3.5vw, 36px);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px -30px rgba(31,107,255,0.35);
}
.noscript-note a { color: var(--blue-hi); font-weight: 600; }

/* ── Lead form ─────────────────────────────────────────── */
.lf { display: flex; flex-direction: column; gap: 18px; }
.lf__top { display: flex; align-items: center; justify-content: space-between; min-height: 28px; }
.lf__count { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.lf__back { font-size: 0.88rem; color: var(--muted); padding: 4px 0; transition: color 0.2s; }
.lf__back:hover { color: var(--white); }
.lf__bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.lf__bar span { position: relative; height: 3px; border-radius: 3px; background: var(--line-2); overflow: hidden; }
.lf__bar span::after { content: ""; position: absolute; inset: 0; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.55s var(--ease); }
.lf__bar span.is-on::after { transform: scaleX(1); }
.lf__stage { display: flex; flex-direction: column; gap: 18px; }
.lf__title { font-size: clamp(1.4rem, 3vw, 1.75rem); font-weight: 700; outline: none; }
.lf__sub { margin-top: -8px; color: var(--muted); font-size: 0.95rem; }
.lf__opts { display: grid; gap: 10px; }
.lf__opts--grid { grid-template-columns: 1fr 1fr; }
.opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; min-height: 60px; padding: 14px 16px; text-align: left;
  border-radius: var(--radius-sm); border: 1px solid var(--line-2); background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s var(--ease);
}
.opt:hover { border-color: rgba(31,107,255,0.6); background: rgba(31,107,255,0.08); }
.opt:active { transform: scale(0.99); }
.opt[aria-pressed="true"] { border-color: var(--blue); background: rgba(31,107,255,0.16); box-shadow: 0 0 0 1px var(--blue) inset; }
.opt__title { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.opt__hint { display: block; font-size: 0.82rem; color: var(--muted); }
.opt__price { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--blue-hi); white-space: nowrap; }
.opt__price--soft { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.lf__opts--grid .opt { flex-direction: column; align-items: flex-start; justify-content: center; }
.field { display: grid; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; color: #d6dbe5; }
.field input {
  width: 100%; min-height: 52px; padding: 0 16px;
  border-radius: var(--radius-sm); border: 1px solid var(--line-2);
  background: rgba(0,0,0,0.35); color: var(--white);
  font: inherit; font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder { color: var(--dim); }
.field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.field.has-error input { border-color: var(--danger); }
.field__error { font-size: 0.82rem; color: var(--danger); }
.lf__fields { display: grid; gap: 14px; }
.lf__status { font-size: 0.9rem; color: var(--danger); min-height: 0; }
.lf__status a { color: var(--white); text-decoration: underline; }
.lf__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lf--done { align-items: center; text-align: center; padding-block: 12px; }
.lf__lock { width: 96px; height: 96px; }
.lf__lock circle { fill: none; stroke: var(--blue); stroke-width: 3; }
.lf__lock path { fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; }
.lf--done p { color: var(--muted); max-width: 40ch; }

/* ── Dialog ────────────────────────────────────────────── */
.quote-dialog {
  width: min(560px, calc(100% - 24px)); max-height: calc(100dvh - 24px);
  margin: auto; padding: 0; border: 0; background: transparent; color: var(--white);
  overflow: visible;
}
.quote-dialog::backdrop { background: rgba(3,4,7,0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.quote-dialog[open] { animation: dialog-in 0.45s var(--ease); }
.quote-dialog__panel {
  position: relative; max-height: calc(100dvh - 24px); overflow-y: auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 120px -30px rgba(31,107,255,0.45);
}
.quote-dialog__close {
  position: absolute; right: 14px; top: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.06); transition: background-color 0.2s;
}
.quote-dialog__close:hover { background: rgba(255,255,255,0.14); }
.quote-dialog__close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.quote-dialog .lf__top { padding-right: 48px; }
html.is-locked { overflow: hidden; }
@media (max-width: 599px) {
  .quote-dialog { width: 100%; max-width: 100%; margin: auto 0 0; max-height: 92dvh; }
  .quote-dialog__panel { border-radius: 24px 24px 0 0; max-height: 92dvh; padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
  .quote-dialog[open] { animation: sheet-in 0.45s var(--ease); }
}

/* ── Footer ────────────────────────────────────────────── */
.footer { padding-block: 64px 28px; border-top: 1px solid var(--line); background: #040507; color: var(--muted); font-size: 0.95rem; }
.footer__grid { display: grid; gap: 32px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer__brand img { height: 40px; width: auto; margin-bottom: 14px; }
.footer__brand p { max-width: 36ch; }
.footer__label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.footer__grid p + p { margin-top: 6px; }
.footer a:hover { color: var(--white); }
.footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--dim); }

/* ── Mobile bar ────────────────────────────────────────── */
.mobile-bar {
  position: fixed; inset: auto 0 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 2fr; gap: 10px;
  padding: 10px clamp(16px, 4vw, 32px) calc(10px + env(safe-area-inset-bottom));
  background: rgba(6,7,10,0.86); border-top: 1px solid var(--line);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transform: translateY(110%); transition: transform 0.4s var(--ease);
}
.mobile-bar.is-visible { transform: none; }
@media (max-width: 759px) { body { padding-bottom: 76px; } }
@media (min-width: 760px) { .mobile-bar { display: none; } }

/* ── Reveal (only hidden while JS + Motion are running) ── */
.js [data-reveal], .js [data-hero] { opacity: 0; }
.js [data-stagger] > * { opacity: 0; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(3.6); opacity: 0; } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } }
@keyframes sheet-in { from { transform: translateY(100%); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js [data-reveal], .js [data-hero], .js [data-stagger] > * { opacity: 1; }
}
