/* ============================================================
   Convert Up — landing styles
   Dark, technological, bold. Electric-blue accent.
   ============================================================ */

/* ---- Tokens ---- */
:root {
  /* surfaces (cool near-black) */
  --bg:        oklch(0.165 0.012 256);
  --bg-1:      oklch(0.205 0.014 256);
  --bg-2:      oklch(0.235 0.016 256);
  --bg-3:      oklch(0.275 0.018 256);
  --line:      oklch(1 0 0 / 0.09);
  --line-2:    oklch(1 0 0 / 0.16);

  --text:      oklch(0.97 0.004 256);
  --muted:     oklch(0.74 0.012 256);
  --faint:     oklch(0.58 0.012 256);

  /* accent — electric blue (overridable by Tweaks) */
  --accent:      oklch(0.64 0.185 258);
  --accent-soft: oklch(0.64 0.185 258 / 0.16);
  --accent-line: oklch(0.64 0.185 258 / 0.45);
  --accent-ink:  oklch(0.18 0.03 258);

  --ok:        oklch(0.78 0.15 152);
  --warn:      oklch(0.74 0.13 70);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 34px;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);

  --font: "Manrope", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

/* grid texture (toggled by tweak) */
body[data-grid="on"]::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
  opacity: 0.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
  position: relative;
  z-index: 1;
}

/* ---- Typography helpers ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent-line);
}

h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.04; font-weight: 800; margin: 0; }
.h-display { font-size: clamp(34px, 5.6vw, 72px); }
.h-1 { font-size: clamp(34px, 5vw, 60px); }
.h-2 { font-size: clamp(26px, 3.4vw, 40px); }
.lead { font-size: clamp(18px, 1.7vw, 22px); color: var(--muted); line-height: 1.5; }

.accent { color: var(--accent); }
.muted { color: var(--muted); }

/* ---- Buttons ---- */
.btn {
  --bh: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--bh);
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 30px -10px var(--accent-line);
}
.btn-primary:hover {
  box-shadow: 0 14px 40px -10px var(--accent-line), 0 0 0 4px var(--accent-soft);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--text); background: oklch(1 0 0 / 0.04); }
.btn-block { width: 100%; }
.btn-lg { --bh: 60px; font-size: 17px; padding: 0 34px; }

/* arrow glyph in buttons */
.btn .ar { transition: transform .2s var(--ease); }
.btn:hover .ar { transform: translate(2px, -2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: oklch(0.165 0.012 256 / 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav[data-stuck="1"] { border-bottom-color: var(--line); }
.nav-in {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--accent), oklch(0.5 0.19 262));
  box-shadow: inset 0 1px 0 oklch(1 0 0 / .35), 0 6px 18px -8px var(--accent-line);
  flex: none;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -0.02em; white-space: nowrap; }
.brand-name b { color: var(--accent); font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px; color: var(--muted); font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; }

/* ============================================================
   HERO (shared)
   ============================================================ */
.hero { position: relative; padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(56px, 8vw, 120px); overflow: hidden; }
.hero-glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 1100px; height: 1100px;
  left: 50%; top: -540px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--accent-soft), transparent 70%);
  filter: blur(10px);
}
body[data-glow="off"] .hero-glow { display: none; }

/* variant switching */
.hero-variant { display: none; }
body[data-hero="centered"]  .hero-variant.v-centered  { display: block; }
body[data-hero="split"]     .hero-variant.v-split     { display: block; }
body[data-hero="statement"] .hero-variant.v-statement { display: block; }

.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-1);
  font-size: 14px; color: var(--muted);
  font-weight: 500;
}
.chip b { color: var(--text); font-weight: 700; }
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; box-shadow: 0 0 0 4px var(--accent-soft); }

/* --- centered --- */
.v-centered { text-align: center; }
.v-centered .eyebrow { justify-content: center; }
.v-centered .hero-cta { justify-content: center; }
.v-centered .chip-row { justify-content: center; margin-top: 38px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.v-centered .lead { max-width: 680px; margin-inline: auto; }
.v-centered .hero-sub { margin-top: 6px; font-size: clamp(15px, 1.5vw, 19px); color: var(--accent); font-weight: 600; }
.v-centered h1 { max-width: 17ch; margin-inline: auto; }
.stack-24 > * + * { margin-top: 24px; }

/* --- split --- */
.v-split .split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.v-split h1 { font-size: clamp(36px, 5vw, 66px); }

/* funnel visual */
.viz {
  background: linear-gradient(180deg, var(--bg-1), var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: 0 40px 80px -40px #000;
  position: relative;
}
.viz-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.viz-head .t { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.viz-live { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ok); font-weight: 600; }
.viz-live .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 oklch(0.78 0.15 152 / .5)} 70%{box-shadow:0 0 0 9px transparent} 100%{box-shadow:0 0 0 0 transparent} }

.funnel { display: flex; flex-direction: column; gap: 12px; }
.fstep { position: relative; }
.fstep .fbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.fstep .fl { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; }
.fstep .fnum { font-family: var(--mono); font-weight: 700; font-size: 17px; }
.fstep .ficon { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); flex: none; }
.fstep .ficon svg { width: 16px; height: 16px; }
.fstep:nth-child(1) .fbar { width: 100%; }
.fstep:nth-child(2) .fbar { width: 86%; }
.fstep:nth-child(3) .fbar { width: 68%; background: linear-gradient(90deg, var(--accent-soft), var(--bg-2)); border-color: var(--accent-line); }
.fstep .conn { height: 14px; width: 2px; margin-left: 33px; background: var(--line-2); }

.viz-foot {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.viz-foot .lbl { font-size: 13px; color: var(--faint); }
.viz-foot .val { font-family: var(--mono); font-weight: 700; font-size: 22px; color: var(--accent); }

/* --- statement --- */
.v-statement { text-align: center; }
.v-statement .eyebrow { justify-content: center; }
.stmt {
  font-size: clamp(44px, 9.5vw, 132px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.stmt .out { color: var(--faint); }
.stmt-nums {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  margin-top: 56px;
}
.stmt-nums .cell { background: var(--bg); padding: 32px 22px; text-align: center; }
.stmt-nums .big { font-family: var(--mono); font-weight: 700; font-size: clamp(34px, 5vw, 56px); color: var(--accent); letter-spacing: -0.02em; }
.stmt-nums .cap { color: var(--muted); font-size: 14px; margin-top: 8px; }
.v-statement .hero-cta { justify-content: center; margin-top: 48px; }

/* ============================================================
   SECTION scaffolding
   ============================================================ */
section { position: relative; z-index: 1; }
/* offset anchor targets for the sticky nav so they land cleanly below it */
.section, .compare, [id="how"], [id="why"], [id="pricing"], [id="contact"] { scroll-margin-top: 96px; }
/* Тарифы: у секции крупный верхний padding, поэтому якорь спускаем ниже —
   так заголовок встаёт сразу под шапкой, а панели сразу попадают в кадр. */
#pricing { scroll-margin-top: -100px; }
.section { padding-block: clamp(72px, 10vw, 140px); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .lead { margin-top: 20px; }

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

/* ---- WHY (3 advantages) ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.card .num {
  font-family: var(--mono); font-size: 13px; letter-spacing: .12em;
  color: var(--accent); font-weight: 600;
}
.card .c-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  margin: 22px 0 22px;
  border: 1px solid var(--accent-line);
}
.card .c-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 23px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 16px; line-height: 1.55; margin: 0; }
.card .c-glow {
  position: absolute; width: 240px; height: 240px; right: -90px; top: -90px;
  background: radial-gradient(closest-side, var(--accent-soft), transparent 70%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.card:hover .c-glow { opacity: 1; }

/* compare strip */
.compare {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare .col {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 30px;
}
.compare .col.them { background: var(--bg); }
.compare .col.us { background: linear-gradient(180deg, var(--accent-soft), transparent); border-color: var(--accent-line); }
.compare .col .ctag { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.compare .col.us .ctag { color: var(--accent); }
.compare .col h4 { margin: 8px 0 18px; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.compare ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.compare li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--muted); }
.compare li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.compare .them li svg { color: var(--faint); }
.compare .us li { color: var(--text); }
.compare .us li svg { color: var(--accent); }

/* ---- PRICING ---- */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.price-main {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.price-main .badge {
  position: absolute; top: 26px; right: 26px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent-line); border-radius: 999px;
  padding: 7px 13px; background: var(--accent-soft);
}
.price-main .p-label { color: var(--muted); font-weight: 600; font-size: 15px; }
.price-amount { display: flex; align-items: baseline; gap: 12px; margin: 14px 0 4px; flex-wrap: wrap; }
.price-amount .num { font-size: clamp(48px, 7vw, 76px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price-amount .per { color: var(--muted); font-size: 18px; font-weight: 600; }
.price-sub { color: var(--muted); font-size: 16px; }

.installment {
  margin-top: 28px; padding: 20px 22px;
  border: 1px dashed var(--line-2); border-radius: var(--r);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.installment .ii { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--bg-3); color: var(--accent); flex: none; }
.installment .it { font-weight: 700; font-size: 16px; }
.installment .id { color: var(--muted); font-size: 14.5px; }
.split-pay { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-weight: 700; margin-top: 4px; }
.split-pay .seg { background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; padding: 6px 12px; font-size: 14px; }
.split-pay .plus { color: var(--faint); }

.price-incl { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.price-incl .pi { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--muted); }
.price-incl .pi svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 2px; }

/* success-fee card + calculator */
.price-fee {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 34px;
  display: flex; flex-direction: column;
}
.fee-top .p-label { color: var(--muted); font-weight: 600; font-size: 15px; }
.fee-amount { display: flex; align-items: baseline; gap: 10px; margin: 10px 0 6px; }
.fee-amount .num { font-size: clamp(46px, 6vw, 64px); font-weight: 800; color: var(--accent); letter-spacing: -0.04em; line-height: 1; }
.fee-amount .per { color: var(--muted); font-size: 16px; font-weight: 600; }
.fee-note { color: var(--muted); font-size: 15px; }

.calc { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.calc-cta { margin-top: 20px; }

.calc .ctitle { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; }
.calc .field + .field { margin-top: 18px; }
.calc label { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); margin-bottom: 9px; }
.calc label b { color: var(--text); font-family: var(--mono); }
.calc-num {
  width: 96px; flex: none; text-align: right;
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 8px;
  color: var(--text); font-family: var(--mono); font-weight: 600; font-size: 14px;
  padding: 5px 9px; -moz-appearance: textfield; transition: border-color .15s;
}
.calc-num.calc-num-wide { width: 120px; }
.calc-num:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.calc-num::-webkit-outer-spin-button,
.calc-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  border-radius: 999px; background: var(--bg-3); outline: none; cursor: pointer;
}
.calc input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg-1); box-shadow: 0 0 0 1px var(--accent-line);
  cursor: pointer; transition: transform .12s;
}
.calc input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-1); cursor: pointer;
}
.calc-out {
  margin-top: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  padding: 18px 20px; border-radius: var(--r); background: var(--bg);
  border: 1px solid var(--line);
}
.calc-out .co-block { min-width: 0; }
.calc-out .co-block .k { font-size: 13px; color: var(--faint); }
.calc-out .co-block .v { font-family: var(--mono); font-weight: 700; font-size: clamp(19px, 2.1vw, 26px); margin-top: 4px; white-space: nowrap; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.calc-out .you .v { color: var(--ok); }
.calc-out .us .v { color: var(--accent); }
.calc-out .arrow-sep { color: var(--faint); padding-bottom: 6px; }

/* ---- CONTACT / CTA ---- */
.cta-wrap {
  background: linear-gradient(165deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: clamp(34px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-wrap .cta-glow {
  position: absolute; width: 620px; height: 620px; left: -200px; bottom: -360px;
  background: radial-gradient(closest-side, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.cta-left h2 { font-size: clamp(30px, 3.6vw, 46px); }
.cta-left .lead { margin-top: 18px; }
.cta-assure { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.cta-assure .a { display: flex; gap: 11px; align-items: center; color: var(--muted); font-size: 15px; }
.cta-assure .a svg { width: 19px; height: 19px; color: var(--accent); flex: none; }

form.lead-form { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
/* honeypot — убираем из потока и от глаз, но оставляем доступным ботам */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inp {
  width: 100%; height: 54px; padding: 0 18px;
  background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  color: var(--text); font-family: inherit; font-size: 16px;
  transition: border-color .18s, box-shadow .18s;
}
.inp::placeholder { color: var(--faint); }
.inp:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
select.inp { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a8190' stroke-width='2.2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-fine { font-size: 13px; color: var(--faint); margin-top: 2px; }
/* согласие на обработку ПД */
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.consent input { flex: none; width: 17px; height: 17px; margin-top: 1px; accent-color: var(--accent); cursor: pointer; }
.consent a { color: var(--accent); text-decoration: underline; }
.consent.consent-error { color: oklch(0.7 0.18 25); }
.consent.consent-error input { outline: 2px solid oklch(0.65 0.2 25); outline-offset: 2px; border-radius: 3px; }
.form-ok {
  display: none; padding: 22px; border-radius: var(--r);
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  text-align: center; font-weight: 600;
}
.form-ok.show { display: block; }
.form-ok .big { font-size: 20px; margin-bottom: 6px; }
.form-ok .ok-text { color: var(--muted); font-size: 15px; margin: 0 0 18px; }
.ok-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ok-actions .btn { --bh: 48px; }
.ok-redirect { margin-top: 16px; font-family: var(--mono); font-size: 13px; color: var(--faint); }
.ok-redirect b { color: var(--accent); font-weight: 700; }

/* ---- FOOTER ---- */
.footer { border-top: 1px solid var(--line); padding-block: 56px 40px; }
.footer-in { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer .brand-name { font-size: 18px; }
.footer .ftag { color: var(--muted); font-size: 15px; margin-top: 16px; max-width: 36ch; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); font-weight: 600; margin: 0 0 16px; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 15px; margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bar { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--faint); font-size: 13.5px; }
.footer-legal { margin-top: 14px; color: var(--faint); font-size: 12.5px; line-height: 1.6; }
.footer-legal a { color: var(--faint); text-decoration: underline; }
.footer-legal a:hover { color: var(--muted); }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; }
  .v-split .split-grid { grid-template-columns: 1fr; }
  .v-split .viz { order: -1; }
  .price-grid { grid-template-columns: 1fr; }
  .cta-wrap { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav-links { display: none; }
  .nav-burger {
    display: grid; place-items: center; width: 44px; height: 44px;
    background: var(--bg-1); border: 1px solid var(--line); border-radius: 11px; color: var(--text); cursor: pointer;
  }
  .nav-cta .btn-ghost { display: none; }
  .stmt-nums { grid-template-columns: 1fr; }
  .price-incl { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-cols { gap: 36px; }
  .calc-out { flex-direction: column; align-items: stretch; gap: 14px; }
  .calc-out .arrow-sep { display: none; }
}

/* mobile menu */
.mmenu {
  position: fixed; inset: 0; z-index: 60; background: var(--bg);
  display: none; flex-direction: column; padding: 28px var(--pad);
}
.mmenu.open { display: flex; }
.mmenu .mm-top { display: flex; justify-content: space-between; align-items: center; height: 48px; }
.mmenu .mm-links { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.mmenu .mm-links a { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mmenu .mm-cta { margin-top: 36px; }
.mm-close { width: 44px; height: 44px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 11px; color: var(--text); display: grid; place-items: center; cursor: pointer; }

/* cookie consent bar */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 55;
  max-width: 760px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: var(--r); box-shadow: 0 24px 60px -24px #000;
}
.cookie-bar[hidden] { display: none; }
.cookie-text { flex: 1; min-width: 220px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-bar .cookie-ok { --bh: 44px; flex: none; padding: 0 24px; }
