/* ============================================================
   Квалифицированные лиды — light landing
   Design system (light base + opt-in dark sections)
   ============================================================ */

:root {
  /* Base surfaces — cool near-white */
  --bg:        oklch(0.987 0.003 265);
  --bg-2:      oklch(0.972 0.004 265);
  --surface:   oklch(1 0 0);
  --surface-2: oklch(0.978 0.004 265);
  --line:      oklch(0.25 0.03 268 / 0.10);
  --line-2:    oklch(0.25 0.03 268 / 0.17);

  /* Text */
  --fg:        oklch(0.255 0.022 270);
  --fg-muted:  oklch(0.47 0.022 268);
  --fg-faint:  oklch(0.62 0.018 268);

  /* Accent — indigo → blue */
  --accent:     oklch(0.52 0.21 274);   /* ~#4F46E5 */
  --accent-2:   oklch(0.55 0.19 256);   /* ~#2563EB */
  --accent-ink: oklch(0.50 0.21 274);   /* text on light */
  --accent-glow: oklch(0.52 0.21 274 / 0.30);
  --accent-soft: oklch(0.52 0.21 274 / 0.08);
  --accent-line: oklch(0.52 0.21 274 / 0.28);

  /* Status */
  --ok:        oklch(0.55 0.15 162);
  --ok-dim:    oklch(0.55 0.15 162 / 0.12);

  /* Interactive field surfaces (token-routed so they flip in dark) */
  --field-bg:       oklch(0.255 0.03 268 / 0.02);
  --field-bg-hover: var(--accent-soft);
  --ghost-bg:       oklch(0.255 0.03 268 / 0.04);
  --ghost-bg-hover: oklch(0.255 0.03 268 / 0.07);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow-card: 0 1px 2px oklch(0.25 0.03 268 / 0.05), 0 14px 40px -22px oklch(0.45 0.15 274 / 0.30);
  --shadow-pop:  0 30px 70px -28px oklch(0.40 0.12 274 / 0.40), 0 0 0 1px var(--line);
  --glow-accent: 0 14px 40px -16px var(--accent-glow);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-head: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ---------- DARK SECTION (token override) ---------- */
.section-dark {
  --bg:        oklch(0.16 0.012 268);
  --bg-2:      oklch(0.185 0.013 268);
  --surface:   oklch(0.205 0.014 268);
  --surface-2: oklch(0.235 0.015 268);
  --line:      oklch(1 0 0 / 0.09);
  --line-2:    oklch(1 0 0 / 0.16);
  --fg:        oklch(0.97 0.004 260);
  --fg-muted:  oklch(0.74 0.012 262);
  --fg-faint:  oklch(0.58 0.012 262);
  --accent-ink: oklch(0.80 0.13 272);
  --accent-soft: oklch(0.62 0.19 274 / 0.12);
  --accent-line: oklch(0.62 0.19 274 / 0.40);
  --ok:        oklch(0.80 0.14 162);
  --ok-dim:    oklch(0.80 0.14 162 / 0.16);
  --field-bg:       oklch(1 0 0 / 0.03);
  --ghost-bg:       oklch(1 0 0 / 0.05);
  --ghost-bg-hover: oklch(1 0 0 / 0.09);
  --shadow-card: 0 1px 0 oklch(1 0 0 / 0.05) inset, 0 22px 60px -26px oklch(0 0 0 / 0.7);
  --shadow-pop:  0 30px 80px -28px oklch(0 0 0 / 0.85), 0 0 0 1px var(--line);
  background: var(--bg);
  color: var(--fg);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient field — fixed soft haze + dotted grid behind everything */
.field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 720px at 82% -10%, oklch(0.52 0.21 274 / 0.10), transparent 60%),
    radial-gradient(900px 620px at 4% 6%, oklch(0.55 0.19 256 / 0.07), transparent 62%);
}
.field::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(oklch(0.45 0.1 274 / 0.5) 0.7px, transparent 0.8px);
  background-size: 30px 30px;
  opacity: 0.05;
  mask-image: radial-gradient(130% 90% at 50% 0%, black, transparent 72%);
  -webkit-mask-image: radial-gradient(130% 90% at 50% 0%, black, transparent 72%);
}

main, header, footer { position: relative; z-index: 1; }

/* ---------- Decorative helpers ---------- */
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco-ring {
  background: url("assets/wave-ring.jpg") center / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.10;
}
.section-dark .deco-ring { display: none; }
.deco-sphere {
  background: url("assets/particle-sphere.jpg") center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.deco-dots {
  background-image: radial-gradient(currentColor 1px, transparent 1.2px);
  background-size: 22px 22px;
  color: var(--accent-ink);
  opacity: 0.16;
}
.deco-orb {
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
  color: var(--fg);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.65rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }
p  { margin: 0; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}

section { padding-block: clamp(72px, 9vw, 128px); position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  padding: 7px 13px;
  border: 1px solid var(--accent-line);
  border-radius: 100px;
  background: var(--accent-soft);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.section-head { max-width: 720px; margin-bottom: 56px; position: relative; z-index: 1; }
.section-head h2 { margin-top: 20px; }
.section-head .sub {
  margin-top: 18px;
  font-size: 1.12rem;
  color: var(--fg-muted);
  text-wrap: pretty;
}

.lead-muted { color: var(--fg-muted); }
.accent-text { color: var(--accent-ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 52px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--glow-accent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -16px var(--accent-glow); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--fg);
  background: var(--ghost-bg);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--ghost-bg-hover); transform: translateY(-2px); }
.btn-sm { min-height: 44px; padding: 11px 20px; font-size: 0.92rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; color: var(--fg);
  cursor: pointer; transition: gap 0.2s var(--ease), color 0.2s;
}
.link-arrow:hover { gap: 12px; color: var(--accent-ink); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.section-dark .card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}

/* video decorative backgrounds */
.video-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.video-bg video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.32;
  mix-blend-mode: screen;
}
.final-cta .video-bg video { opacity: 0.22; }
.icon-box {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 13px;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent-ink);
  flex: none;
}
.icon-box svg { width: 23px; height: 23px; stroke-width: 1.7; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background 0.3s var(--ease), border-color 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: oklch(1 0 0 / 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -24px oklch(0.4 0.12 274 / 0.5);
}
.nav {
  display: flex; align-items: center; gap: 22px;
  height: 76px;
}

.nav-links { display: flex; align-items: center; gap: 4px; margin-right: auto; }
.nav-links a {
  font-size: 0.95rem; color: var(--fg-muted); font-weight: 500;
  padding: 9px 14px; border-radius: 100px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--fg); background: var(--ghost-bg); }

.nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.phone-link {
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px; color: var(--fg);
  flex: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.phone-link:hover { color: var(--accent-ink); }
.phone-link svg { width: 17px; height: 17px; color: var(--accent-ink); }

.burger {
  display: none;
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line-2); background: var(--ghost-bg);
  cursor: pointer; color: var(--fg);
  align-items: center; justify-content: center;
}
.burger svg { width: 22px; height: 22px; }

/* mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: oklch(0.99 0.003 265 / 0.98);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 6px;
  padding: 100px 28px 40px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--fg); }
.mobile-menu .btn { margin-top: 22px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(56px, 7vw, 96px); overflow: hidden; }
.hero .deco-ring { right: -160px; top: -120px; width: 620px; height: 620px; opacity: 0.12; }
.hero .deco-orb.a { width: 420px; height: 420px; background: oklch(0.55 0.2 274); top: -120px; right: 6%; opacity: 0.18; animation: driftA 13s ease-in-out infinite; }
.hero .deco-orb.b { width: 360px; height: 360px; background: oklch(0.6 0.18 230); bottom: -160px; left: -80px; opacity: 0.14; animation: driftB 15s ease-in-out infinite; }
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(64px, 7vw, 104px);
  align-items: start;
}
.hero-grid > *,
.two-col > *,
.guar-grid > *,
.price-grid > *,
.split > *,
.foot-grid > * { min-width: 0; }
.hero-copy { max-width: 560px; min-width: 0; }
.hero h1 { margin-top: 26px; }
.hero h1 {
  font-size: clamp(2.35rem, 4.2vw, 3.25rem);
  overflow-wrap: normal;
}
.hero h1 .grad {
  background: linear-gradient(115deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 24px; font-size: 1.18rem; color: var(--fg-muted); text-wrap: pretty; }
.hero-sub b { color: var(--fg); font-weight: 600; }
.hero-note { margin-top: 14px; color: var(--fg-faint); font-size: 1rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 32px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; color: var(--fg-muted); }
.hero-trust svg { width: 17px; height: 17px; color: var(--ok); flex: none; }

/* =========================================================
   HERO LEAD CARD WIDGET
   ========================================================= */
.hero-lead-card {
  width: min(100%, 410px);
  justify-self: end;
  margin-top: clamp(74px, 7vw, 118px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop), 0 30px 60px -34px oklch(0.4 0.14 274 / 0.35);
  overflow: hidden;
}

@keyframes driftA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-18px, 16px, 0) scale(1.04); }
}
@keyframes driftB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -14px, 0) scale(1.03); }
}
@keyframes softLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hlc-topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px;
  background: var(--accent-soft);
  border-bottom: 1px solid var(--accent-line);
}
.hlc-label {
  font-family: var(--font-head); font-weight: 600; font-size: 0.76rem;
  color: var(--accent-ink); letter-spacing: 0.01em;
}

.hlc-profile {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 20px 16px;
}
.hlc-av {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: white;
  background: linear-gradient(135deg, oklch(0.52 0.21 274), oklch(0.55 0.19 256));
  box-shadow: 0 6px 20px -8px oklch(0.52 0.21 274 / 0.5);
}
.hlc-info { flex: 1; min-width: 0; }
.hlc-name {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; color: var(--fg);
}
.hlc-meta {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.86rem; color: var(--fg-faint); margin-top: 5px;
}
.hlc-meta svg { width: 13px; height: 13px; flex: none; }

.hlc-divider {
  height: 1px; background: var(--line); margin: 0 20px;
}

.hlc-checks {
  list-style: none; margin: 0; padding: 16px 20px;
  display: grid; gap: 11px;
}
.hlc-checks li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 500; font-size: 0.96rem; color: var(--fg);
}
.hlc-check-ic {
  width: 22px; height: 22px; border-radius: 7px; flex: none;
  display: grid; place-items: center;
  background: var(--ok-dim); border: 1px solid oklch(0.55 0.15 162 / 0.25);
}
.hlc-check-ic svg { width: 13px; height: 13px; color: var(--ok); }

.hlc-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}
.hlc-score {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-head);
}
.hlc-score-n {
  font-weight: 800; font-size: 1.5rem; color: var(--accent-ink); letter-spacing: -0.04em;
}
.hlc-score span:last-child {
  font-size: 0.86rem; color: var(--fg-muted); font-weight: 500;
}

/* =========================================================
   HERO COMPARE WIDGET (kept for reference)
   ========================================================= */
.hero-compare {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop), 0 30px 60px -34px oklch(0.4 0.14 274 / 0.35);
  overflow: hidden;
}
.hc-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid var(--line);
}
.hc-col { padding: 16px 20px; }
.hc-col-label {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
}
.hc-col.bad .hc-col-label { color: oklch(0.52 0.14 20); }
.hc-col.good .hc-col-label { color: var(--accent-ink); }
.hc-col.good { background: var(--accent-soft); }
.hc-divider-v { width: 1px; background: var(--line); align-self: stretch; }

.hc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.hc-row:last-of-type { border-bottom: none; }

.hc-cell {
  display: flex; align-items: center; gap: 9px;
  padding: 14px 20px;
  font-size: 0.93rem; font-family: var(--font-head); font-weight: 500; line-height: 1.3;
}
.hc-cell svg { flex: none; width: 15px; height: 15px; }
.hc-cell.bad {
  color: var(--fg-muted);
  border-right: 1px solid var(--line);
  background: oklch(0.52 0.14 20 / 0.03);
}
.hc-cell.bad svg { color: oklch(0.52 0.14 20); }
.hc-cell.good { color: var(--fg); background: var(--accent-soft); }
.hc-cell.good svg { color: var(--ok); }

.hc-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}
.hc-score {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--fg-muted); font-family: var(--font-head);
}
.hc-score-n { font-weight: 800; font-size: 1.3rem; color: var(--accent-ink); letter-spacing: -0.03em; }

/* incoming leads panel (mostly static) */
.leads-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-pop), 0 30px 60px -34px oklch(0.4 0.14 274 / 0.4);
}
.leads-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.leads-title { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; }
.online { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--fg-muted); }
.online .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); position: relative; }
.online .pulse::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; background: var(--ok); opacity: 0.35; animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(0.6); opacity: 0.45; } 100% { transform: scale(2.1); opacity: 0; } }

.leads-stack { display: flex; flex-direction: column; gap: 12px; position: relative; }
.lead-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border-radius: 15px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.lead-card:hover { transform: translateY(-2px); border-color: var(--accent-line); box-shadow: var(--shadow-card); }
.lead-card.accent { border-color: var(--accent-line); background: var(--accent-soft); }
.lead-av {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: white;
}
.lead-main { min-width: 0; }
.lead-name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 8px; color: var(--fg); }
.tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 3px 9px; border-radius: 100px; border: 1px solid var(--line-2);
  color: var(--fg-muted); font-family: var(--font-head);
}
.tag.premium { color: var(--accent-ink); border-color: var(--accent-line); background: var(--accent-soft); }
.tag.comfort { color: var(--fg-muted); }
.lead-meta { font-size: 0.83rem; color: var(--fg-faint); margin-top: 4px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.lead-meta svg { width: 13px; height: 13px; }
.lead-side { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.chip-ok {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; font-weight: 600; font-family: var(--font-head);
  color: var(--ok); background: var(--ok-dim);
  padding: 5px 10px; border-radius: 100px; white-space: nowrap;
}
.chip-ok .d { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }
.lead-phone { font-size: 0.8rem; color: var(--fg-faint); font-variant-numeric: tabular-nums; }

/* stat strip (DARK band) */
.stat-strip { position: relative; overflow: hidden; }
.stat-strip .deco-dots { inset: 0; }
.stat-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.stat { padding: 38px 22px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.5rem); letter-spacing: -0.04em; color: var(--fg); }
.stat .num .u { color: var(--accent-ink); }
.stat .lbl { color: var(--fg-muted); font-size: 0.92rem; margin-top: 6px; }

/* =========================================================
   BLOCK 2 — 5 conditions (wider, 2 rows)
   ========================================================= */
.cond-grid { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.cond {
  flex: 1 1 320px; max-width: 380px;
  padding: 30px 28px; display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.cond:hover { transform: translateY(-6px); border-color: var(--accent-line); box-shadow: 0 24px 50px -28px oklch(0.4 0.16 274 / 0.45); }
.cond-head { display: flex; align-items: center; gap: 16px; }
.cond .n { font-family: var(--font-head); font-weight: 800; font-size: 0.82rem; color: var(--fg-faint); letter-spacing: 0.1em; }
.cond h3 { font-size: 1.2rem; margin-top: 4px; }
.cond p { color: var(--fg-muted); font-size: 0.98rem; }
.cond-banner {
  margin-top: 28px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 24px 30px; border-radius: var(--radius);
  background: linear-gradient(120deg, var(--accent-soft), oklch(0.55 0.19 256 / 0.06));
  border: 1px solid var(--accent-line);
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--fg);
}
.cond-banner svg { width: 26px; height: 26px; color: var(--accent-ink); flex: none; }
.cond-banner b { color: var(--accent-ink); }

/* =========================================================
   QUIZ (shared — inline DARK + modal LIGHT)
   ========================================================= */
.quiz-section { position: relative; overflow: hidden; }
.quiz-section .deco-sphere { right: -120px; bottom: -120px; width: 460px; height: 460px; opacity: 0.4; }
.quiz-section .deco-dots { left: -40px; top: 40px; width: 220px; height: 220px; opacity: 0.12; }
.quiz-shell {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--shadow-card);
  max-width: 780px; margin-inline: auto;
  position: relative; overflow: hidden; z-index: 1;
}
.section-dark .quiz-shell { background: linear-gradient(180deg, var(--surface), var(--bg-2)); }
.quiz-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 8px; position: relative; }
.quiz-step-label { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--fg-muted); }
.quiz-progress { height: 6px; border-radius: 100px; background: var(--field-bg); border: 1px solid var(--line); overflow: hidden; margin-bottom: 30px; position: relative; }
.quiz-progress .bar { height: 100%; width: 20%; border-radius: 100px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width 0.5s var(--ease); }

.quiz-stage { position: relative; }
.quiz-slide { display: none; animation: quizIn 0.45s var(--ease) both; }
.quiz-slide.active { display: block; }
@keyframes quizIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.quiz-slide.back { animation: quizInBack 0.45s var(--ease) both; }
@keyframes quizInBack { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: none; } }

.quiz-q { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.35rem, 2.4vw, 1.8rem); letter-spacing: -0.02em; margin-bottom: 24px; color: var(--fg); }
.quiz-options { display: grid; gap: 12px; }
.quiz-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 17px 20px; border-radius: 14px; cursor: pointer;
  border: 1px solid var(--line-2); background: var(--field-bg);
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  text-align: left; color: var(--fg);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.quiz-opt:hover { border-color: var(--accent); background: var(--accent-soft); transform: translateX(4px); }
.quiz-opt.sel { border-color: var(--accent); background: var(--accent-soft); }
.quiz-opt .radio {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  border: 2px solid var(--line-2); display: grid; place-items: center;
  transition: border-color 0.2s;
}
.quiz-opt.sel .radio { border-color: var(--accent); }
.quiz-opt.sel .radio::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--accent); }

.quiz-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; gap: 14px; }
.quiz-back { display: inline-flex; align-items: center; gap: 8px; color: var(--fg-muted); font-family: var(--font-head); font-weight: 600; cursor: pointer; background: none; border: none; font-size: 0.98rem; padding: 8px 0; transition: color 0.2s; }
.quiz-back:hover { color: var(--fg); }
.quiz-back svg { width: 16px; height: 16px; }
.quiz-back:disabled { opacity: 0.3; cursor: default; }

/* quiz final form */
.quiz-form { display: grid; gap: 16px; }
.field-row { display: grid; gap: 7px; }
.field-row label { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--fg-muted); }
.input {
  width: 100%; padding: 15px 17px; border-radius: 13px;
  background: var(--field-bg); border: 1px solid var(--line-2);
  color: var(--fg); font-family: var(--font-body); font-size: 1.05rem;
  transition: border-color 0.2s, background 0.2s;
}
.input::placeholder { color: var(--fg-faint); }
.input:focus { outline: none; border-color: var(--accent); background: var(--accent-soft); }

.consent { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.consent input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.consent .box {
  width: 22px; height: 22px; border-radius: 7px; flex: none; margin-top: 1px;
  border: 1.6px solid var(--line-2); background: var(--field-bg);
  display: grid; place-items: center; transition: all 0.2s;
}
.consent .box svg { width: 14px; height: 14px; color: white; opacity: 0; transform: scale(0.6); transition: all 0.2s; }
.consent input:checked + .box { background: var(--accent); border-color: var(--accent); }
.consent input:checked + .box svg { opacity: 1; transform: none; }
.consent input:focus-visible + .box { box-shadow: 0 0 0 3px var(--accent-glow); }
.consent span { font-size: 0.86rem; color: var(--fg-faint); line-height: 1.5; }
.consent a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }

/* quiz success */
.quiz-done { text-align: center; padding: 20px 0; display: none; }
.quiz-done.show { display: block; animation: quizIn 0.5s var(--ease) both; }
.quiz-done .check {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 24px;
  display: grid; place-items: center;
  background: var(--ok-dim); border: 1px solid var(--ok);
}
.quiz-done .check svg { width: 36px; height: 36px; color: var(--ok); }
.quiz-done h3 { font-size: 1.7rem; margin-bottom: 12px; }
.quiz-done p { color: var(--fg-muted); max-width: 420px; margin: 0 auto; }

/* =========================================================
   BLOCK 4 — exclusivity
   ========================================================= */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.excl-card { padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.excl-card h3 { font-size: 1.5rem; }
.excl-card p { color: var(--fg-muted); font-size: 1.05rem; }
.excl-card .em { color: var(--accent-ink); font-weight: 600; }
.excl-card.honest { background: linear-gradient(160deg, var(--accent-soft), var(--surface)); border-color: var(--accent-line); }

/* =========================================================
   BLOCK 5 — guarantees
   ========================================================= */
.guar-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; align-items: start; }
.guar-list { display: grid; gap: 12px; }
.guar-item { display: flex; align-items: center; gap: 14px; padding: 18px 22px; }
.guar-item .ic { width: 26px; height: 26px; border-radius: 50%; background: var(--ok-dim); display: grid; place-items: center; flex: none; }
.guar-item .ic svg { width: 15px; height: 15px; color: var(--ok); }
.guar-item span { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--fg); }
.guar-item .dim { color: var(--fg-muted); font-weight: 400; font-family: var(--font-body); }
.guar-conds { display: grid; gap: 14px; }
.guar-cond { padding: 24px; text-align: left; }
.guar-cond .k { font-size: 0.85rem; color: var(--fg-muted); font-family: var(--font-head); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.guar-cond .v { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.03em; margin-top: 6px; color: var(--fg); }
.guar-cond .v.accent { color: var(--accent-ink); }

/* =========================================================
   BLOCK 6 — pricing
   ========================================================= */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price-card {
  padding: 30px 26px; display: flex; flex-direction: column; gap: 18px;
  position: relative; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px -28px oklch(0.4 0.16 274 / 0.45); }
.price-card.featured { border-color: var(--accent); box-shadow: var(--glow-accent); background: linear-gradient(180deg, var(--accent-soft), var(--surface)); }
.price-badge {
  position: absolute; top: -12px; left: 26px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: white; padding: 5px 13px; border-radius: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--glow-accent);
}
.price-name { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; }
.price-count { color: var(--fg-muted); font-size: 0.96rem; }
.price-val { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; letter-spacing: -0.03em; color: var(--fg); }
.price-val .per { font-size: 0.9rem; font-weight: 500; color: var(--fg-faint); letter-spacing: 0; }
.price-for { color: var(--fg-muted); font-size: 0.92rem; padding-top: 16px; border-top: 1px solid var(--line); margin-top: auto; }
.price-note { text-align: center; margin-top: 30px; color: var(--fg-muted); display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.price-note svg { width: 18px; height: 18px; color: var(--accent-ink); }

/* =========================================================
   BLOCK 7 — how we work (timeline)
   ========================================================= */
.timeline { display: grid; gap: 0; }
.tl-step { display: grid; grid-template-columns: auto 1fr; gap: 26px; padding-bottom: 36px; position: relative; }
.tl-step:last-child { padding-bottom: 0; }
.tl-rail { display: flex; flex-direction: column; align-items: center; }
.tl-num {
  width: 54px; height: 54px; border-radius: 16px; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--glow-accent);
}
.tl-line { width: 2px; flex: 1; margin-top: 8px; background: linear-gradient(var(--line-2), transparent); }
.tl-step:last-child .tl-line { display: none; }
.tl-body { padding-top: 6px; padding-bottom: 8px; }
.tl-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.tl-body p { color: var(--fg-muted); font-size: 1.04rem; max-width: 620px; }
.tl-banner {
  margin-top: 22px; padding: 26px 30px; border-radius: var(--radius);
  background: linear-gradient(120deg, var(--accent-soft), oklch(0.55 0.19 256 / 0.06));
  border: 1px solid var(--accent-line);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.tl-banner svg { width: 28px; height: 28px; color: var(--accent-ink); flex: none; }
.tl-banner p { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--fg); }
.tl-banner b { color: var(--accent-ink); }

/* =========================================================
   BLOCK 8/9 — result model + what we need
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.feat-card { padding: 38px; }
.feat-card.result { background: linear-gradient(160deg, oklch(0.55 0.19 256 / 0.08), var(--surface)); border-color: var(--accent-line); }
.feat-card h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 8px; }
.feat-card .sub { color: var(--fg-muted); margin-bottom: 26px; }
.check-list { display: grid; gap: 15px; margin: 0; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; list-style: none; }
.check-list .ic { width: 24px; height: 24px; border-radius: 7px; background: var(--accent-soft); display: grid; place-items: center; flex: none; margin-top: 2px; }
.check-list .ic svg { width: 14px; height: 14px; color: var(--accent-ink); }
.check-list span { color: var(--fg); font-size: 1.02rem; }
.check-list b { font-weight: 600; }

/* =========================================================
   BLOCK 10 — final CTA (DARK)
   ========================================================= */
.final-cta {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid oklch(0.62 0.19 274 / 0.3);
  background:
    radial-gradient(120% 140% at 50% -10%, oklch(0.55 0.2 274 / 0.4), transparent 60%),
    linear-gradient(160deg, oklch(0.21 0.02 268), oklch(0.15 0.012 268));
  padding: clamp(44px, 6vw, 82px) clamp(28px, 5vw, 70px);
  text-align: center;
}
.final-cta .deco-sphere {
  inset: 0; width: 100%; height: 100%; background-size: 64% auto;
  opacity: 0.2; mix-blend-mode: screen;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta .eyebrow { color: oklch(0.82 0.12 272); border-color: oklch(0.62 0.19 274 / 0.4); background: oklch(0.62 0.19 274 / 0.16); }
.final-cta .eyebrow .dot { background: oklch(0.7 0.18 274); box-shadow: 0 0 0 4px oklch(0.62 0.19 274 / 0.25); }
.final-cta h2 { max-width: 880px; margin-inline: auto; color: white; }
.final-cta .sub { max-width: 640px; margin: 20px auto 0; color: oklch(0.82 0.01 262); font-size: 1.14rem; }
.final-cta .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.final-cta .btn-ghost { color: white; background: oklch(1 0 0 / 0.08); border-color: oklch(1 0 0 / 0.2); }
.final-cta .btn-ghost:hover { background: oklch(1 0 0 / 0.14); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { border-top: 1px solid var(--line); padding-block: 64px 28px; margin-top: 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.foot-brand .foot-name { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.03em; margin-bottom: 14px; color: var(--fg); }
.foot-brand .foot-name b { color: var(--accent-ink); }
.foot-brand p { color: var(--fg-muted); font-size: 0.96rem; max-width: 320px; }
.foot-col h4 { font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-faint); margin-bottom: 16px; }
.foot-col a, .foot-col p { display: block; color: var(--fg-muted); font-size: 0.98rem; padding: 5px 0; transition: color 0.2s; }
.foot-col a:hover { color: var(--accent-ink); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); color: var(--fg-faint); font-size: 0.88rem; }
.foot-bottom a { color: var(--fg-faint); text-decoration: underline; text-underline-offset: 2px; }

/* cookie bar */
.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 70;
  max-width: 680px; margin-inline: auto;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 16px 20px; border-radius: 16px;
  background: oklch(1 0 0 / 0.96); backdrop-filter: blur(12px);
  border: 1px solid var(--line-2); box-shadow: var(--shadow-pop);
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.cookie.hide { transform: translateY(140%); opacity: 0; pointer-events: none; }
.cookie p { font-size: 0.9rem; color: var(--fg-muted); flex: 1; min-width: 220px; }
.cookie a { color: var(--accent-ink); text-decoration: underline; }

/* =========================================================
   MODAL
   ========================================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: oklch(0.2 0.02 268 / 0.45); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 720px; max-height: 92vh; overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop); padding: clamp(26px, 4vw, 42px);
  transform: translateY(20px) scale(0.98); transition: transform 0.35s var(--ease);
  position: relative;
}
.modal-overlay.open .modal { transform: none; }
.modal.sm { max-width: 460px; }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: 11px; cursor: pointer;
  border: 1px solid var(--line); background: var(--ghost-bg); color: var(--fg-muted);
  display: grid; place-items: center; transition: all 0.2s; z-index: 3;
}
.modal-close:hover { color: var(--fg); background: var(--ghost-bg-hover); }
.modal-close svg { width: 18px; height: 18px; }
.modal h3.modal-title { font-size: 1.7rem; margin-bottom: 8px; }
.modal .modal-sub { color: var(--fg-muted); margin-bottom: 26px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { justify-content: flex-end; }
  .phone-link {
    width: 46px; height: 46px; justify-content: center;
    border-radius: 12px; border: 1px solid var(--line-2); background: var(--ghost-bg);
  }
  .phone-link:hover { background: var(--ghost-bg-hover); transform: translateY(-1px); }
  .phone-link span { display: none; }
  .burger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-lead-card { width: min(100%, 520px); justify-self: stretch; margin-top: 0; }
  .leads-panel { max-width: 460px; }
  .guar-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .price-grid { grid-template-columns: 1fr; }
  .guar-conds { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .tl-step { gap: 18px; }
}
@media (max-width: 560px) {
  .btn:not(.nav-cta) { white-space: normal; }
  .mobile-menu .btn,
  .final-cta .actions .btn { width: 100%; }
  .hlc-topbar { flex-direction: column; align-items: flex-start; }
  .hlc-footer { flex-direction: column; align-items: stretch; }
  .hlc-footer .btn { width: 100%; }
  .final-cta .actions { flex-direction: column; align-items: stretch; }
}
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  section { padding-block: 58px; }
  h1 { font-size: 1.84rem; line-height: 1.12; }
  h2 { font-size: 1.72rem; line-height: 1.12; }
  .eyebrow { max-width: 100%; font-size: 0.68rem; padding: 6px 10px; }
  .hero { padding-top: 28px; }
  .hero h1 { margin-top: 20px; }
  .hero-sub { font-size: 1.03rem; }
  .hero-note { font-size: 0.95rem; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cond { max-width: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .quiz-shell { border-radius: 18px; padding: 22px 18px; }
  .quiz-top { flex-direction: column; align-items: flex-start; gap: 4px; }
  .quiz-opt { padding: 15px; font-size: 0.98rem; }
  .excl-card, .feat-card { padding: 26px 22px; }
  .guar-item { align-items: flex-start; padding: 16px; }
  .price-card { padding: 28px 22px; }
  .tl-step { grid-template-columns: 44px 1fr; gap: 14px; }
  .tl-num { width: 44px; height: 44px; border-radius: 14px; }
  .tl-banner, .cond-banner { padding: 20px; align-items: flex-start; }
  .final-cta { border-radius: 20px; }
  .cookie { left: 12px; right: 12px; bottom: 12px; padding: 14px; }
  .cookie .btn { width: 100%; }
  .modal-overlay { padding: 14px; }
  .modal { border-radius: 20px; }
}

/* call button: label normally, icon-only on small */
.nav-cta .ico { display: none; }
@media (max-width: 560px) {
  .nav-cta { padding: 0 !important; width: 48px; min-height: 48px; }
  .nav-cta .ico { display: block; }
  .nav-cta .txt { display: none; }
}
@media (max-width: 360px) {
  .container { padding-inline: 14px; }
  h1 { font-size: 1.58rem; line-height: 1.14; }
  h2 { font-size: 1.58rem; }
  .nav { height: 68px; gap: 10px; }
  .nav-right { gap: 8px; }
  .phone-link,
  .burger,
  .nav-cta { width: 44px; height: 44px; min-height: 44px; }
  .mobile-menu { padding-inline: 20px; }
  .stat-strip .container { grid-template-columns: 1fr; }
  .stat { border-left: none !important; }
  .stat:nth-child(n+2) { border-top: 1px solid var(--line); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-lead-card,
  .hero .deco-orb.a,
  .hero .deco-orb.b,
  .online .pulse::after,
  .quiz-slide,
  .quiz-slide.back,
  .quiz-done.show {
    animation: none;
  }
}
