/* ============================================================
   lodkago.ru — Лэндинг для собственников флота
   Стилистика главного сайта lodkago.ru:
   Playfair Display + DM Sans, палитра navy / ocean / gold
   ============================================================ */

:root {
  /* палитра главного сайта */
  --navy: #0d1b2a;
  --navy-mid: #1a2e42;
  --navy-light: #253d56;
  --ocean: #1a6b8a;
  --ocean-light: #2a8db5;
  --foam: #e8f4f8;
  --sand: #f5ede0;
  --gold: #c9a84c;
  --gold-light: #e5c46e;
  --gold-deep: #9a7a2a;       /* золото для текста на светлом (контраст) */
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7a8d;
  --success: #1a8a5a;
  --danger: #c0392b;
  --warn: #d4860a;
  --warn-bg: #fdf6e3;
  --border: rgba(26,107,138,0.15);
  --bg: #f0f4f8;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --maxw: 1160px;
  --shadow-sm: 0 2px 10px rgba(13,27,42,0.06);
  --shadow-md: 0 4px 24px rgba(13,27,42,0.08);
  --shadow-lg: 0 18px 50px rgba(13,27,42,0.18);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.6vw, 38px); }
h3 { font-size: clamp(19px, 2.2vw, 23px); }

p { margin: 0 0 var(--space-3); }

a { color: var(--ocean); }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

section { padding: var(--space-7) 0; }

.section-alt { background: var(--foam); }
.section-sand { background: var(--sand); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: var(--space-2);
}

.lead { font-size: clamp(17px, 2vw, 20px); color: var(--text-muted); }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.measure { max-width: 720px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 52px;
  padding: 0 var(--space-5);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active { transform: translateY(1px); }

/* основная кнопка — золото + тёмный текст (как на главной) */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover { background: var(--gold-light); }

/* вторичная — ocean-контур */
.btn-ghost {
  background: transparent;
  color: var(--ocean);
  border-color: rgba(26,107,138,0.4);
}
.btn-ghost:hover { background: var(--ocean); color: #fff; border-color: var(--ocean); }

/* на тёмном фоне (hero) */
.on-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.on-dark .btn-ghost:hover { background: #fff; color: var(--navy); }

.btn-wide { width: 100%; }
.btn-lg { min-height: 58px; font-size: 17px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}
.brand {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: #fff;
  text-decoration: none;
}
.brand .dot { color: var(--gold); }
.header-cta { display: none; }
@media (min-width: 720px) {
  .header-cta { display: inline-flex; min-height: 42px; font-size: 15px; }
}

/* ---------- hero (тёмный navy, как на главной) ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(42,141,181,0.30), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  color: rgba(255,255,255,0.86);
  padding: var(--space-7) 0 var(--space-6);
  overflow: hidden;
}
.hero h1 { color: #fff; max-width: 19ch; }
.hero .lead { color: rgba(255,255,255,0.82); max-width: 60ch; margin-bottom: var(--space-4); }

.exclusive-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  margin-bottom: var(--space-4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.microproof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.microproof span { display: inline-flex; align-items: center; gap: 6px; }
.microproof strong { color: var(--gold-light); font-weight: 600; }

/* ---------- pain grid 2x2 ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 720px) { .pain-grid { grid-template-columns: 1fr 1fr; } }

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.pain-card .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--foam);
  color: var(--ocean);
  font-size: 22px;
  margin-bottom: var(--space-3);
}
.pain-card h3 { color: var(--navy); margin-bottom: var(--space-1); }
.pain-card p { color: var(--text-muted); margin: 0; }

/* ---------- feature / check lists ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.check-list.cols-2 { grid-template-columns: 1fr; }
@media (min-width: 800px) { .check-list.cols-2 { grid-template-columns: 1fr 1fr; } }
.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--space-3);
  align-items: start;
}
.check-list .check {
  width: 26px; height: 26px;
  flex: none;
  border-radius: 50%;
  background: rgba(26,138,90,0.12);
  color: var(--success);
  display: grid; place-items: center;
  margin-top: 2px;
  font-size: 14px;
}
.check-list li b { color: var(--navy); }
.check-list li span { color: var(--text-muted); }

.callout {
  margin-top: var(--space-5);
  background: var(--foam);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  font-size: 18px;
}
.callout strong { color: var(--gold-deep); }

/* ---------- exclusivity ---------- */
.exclusive { background: var(--sand); }
.exclusive h2 { color: var(--navy); }
.exclusive .eyebrow { color: var(--gold-deep); }
.exclusive .bullets {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin-top: var(--space-5);
}
@media (min-width: 800px) { .exclusive .bullets { grid-template-columns: 1fr 1fr; } }
.exclusive .bullet {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-3);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.exclusive .bullet .ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--foam);
  color: var(--ocean);
  font-size: 22px;
}
.closing-line {
  margin-top: var(--space-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  text-align: center;
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4) var(--space-4);
  box-shadow: var(--shadow-sm);
}
.step .num {
  position: absolute;
  top: calc(-1 * var(--space-4));
  left: var(--space-4);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.step h3 { margin-top: var(--space-3); color: var(--navy); }
.step p { color: var(--text-muted); margin: 0; }

/* ---------- calculator ---------- */
.calc-wrap {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 920px) { .calc-wrap { grid-template-columns: 1.1fr 1fr; } }

.calc-fields {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: var(--space-4); }
.field:last-child { margin-bottom: 0; }
.field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: var(--space-2);
  gap: var(--space-3);
  color: var(--text);
}
.field label .val {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ocean);
  font-size: 18px;
}
.field input[type="range"] { width: 100%; accent-color: var(--ocean); height: 28px; }
.field input[type="number"] {
  width: 100%;
  min-height: 48px;
  padding: 0 var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 17px;
  font-family: var(--font-body);
}
.field .hint { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.calc-result {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
}
.calc-result .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}
.calc-result .row.muted { color: rgba(255,255,255,0.66); font-size: 15px; }
.calc-result .row .num { font-family: var(--font-display); font-weight: 600; }
.calc-result .hr { height: 1px; background: rgba(255,255,255,0.16); margin: var(--space-3) 0; }
.calc-result .net-label { font-size: 15px; color: rgba(255,255,255,0.82); margin-bottom: 4px; }
.calc-result .net-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 6vw, 46px);
  line-height: 1.05;
  color: #fff;
}
.calc-result .net-value .accent { color: var(--gold-light); }
.calc-result .disclaimer { font-size: 13px; color: rgba(255,255,255,0.66); margin: var(--space-4) 0 0; }
.calc-result .btn { margin-top: var(--space-4); }
.calc-example {
  margin-top: var(--space-4);
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
table.data {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 560px;
}
table.data th, table.data td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.data thead th {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
}
table.data tbody td { color: var(--text); }
table.data td:first-child { font-weight: 600; color: var(--navy); }
table.data tr:last-child td { border-bottom: none; }
table.data tbody tr:nth-child(even) { background: rgba(232,244,248,0.45); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: var(--space-2); }
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex: none;
  transition: transform .2s ease;
  color: var(--gold-deep);
}
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .answer { padding: 0 var(--space-4) var(--space-4); color: var(--text-muted); }

/* ---------- waitlist notice ---------- */
.waitlist {
  background: var(--warn-bg);
  border: 1px solid rgba(212,134,10,0.4);
  border-left: 5px solid var(--warn);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--space-3);
}
.waitlist .ico { color: var(--warn); font-size: 22px; line-height: 1; }
.waitlist p { margin: 0; color: #8a5a08; font-size: 15px; }

/* ---------- form ---------- */
.form-shell { max-width: 820px; margin: 0 auto; }
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: var(--space-5); }
.form-group > legend, .group-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: var(--space-3);
  padding: 0;
}
.form-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 700px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }

.form-field label.lbl { display: block; font-weight: 500; font-size: 15px; margin-bottom: 6px; color: var(--text); }
.form-field .req { color: var(--danger); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  min-height: 48px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--text);
}
.form-field textarea { min-height: 96px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 3px solid rgba(26,107,138,0.30);
  outline-offset: 1px;
  border-color: var(--ocean);
}
.form-field .err { color: var(--danger); font-size: 13px; margin-top: 4px; display: none; }
.form-field.invalid .err { display: block; }
.form-field.invalid input, .form-field.invalid select { border-color: var(--danger); }

/* radio cards (vessel type) */
.radio-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
@media (min-width: 600px) { .radio-cards { grid-template-columns: repeat(4, 1fr); } }
.radio-card { position: relative; }
.radio-card input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-card .face {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
  padding: var(--space-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 500; font-size: 14px;
  min-height: 84px;
  justify-content: center;
  transition: border-color .12s, background .12s;
  color: var(--text);
}
.radio-card .face .emoji { font-size: 24px; line-height: 1; }
.radio-card input:checked + .face { border-color: var(--ocean); background: var(--foam); color: var(--navy); }
.radio-card input:focus-visible + .face { outline: 3px solid rgba(26,107,138,0.30); }

/* chips (yes/no/maybe) */
.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center;
  padding: var(--space-2) var(--space-4);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-weight: 500; font-size: 15px;
  min-height: 44px;
  color: var(--text);
}
.chip input:checked + span { border-color: var(--ocean); background: var(--foam); color: var(--ocean); }
.chip input:focus-visible + span { outline: 3px solid rgba(26,107,138,0.30); }

.insurance-hint {
  display: none;
  margin-top: var(--space-2);
  font-size: 14px;
  color: var(--success);
  background: rgba(26,138,90,0.10);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}
.insurance-hint.show { display: block; }

.consent { display: grid; grid-template-columns: 24px 1fr; gap: var(--space-3); align-items: start; font-size: 14px; color: var(--text-muted); }
.consent input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--ocean); }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-after {
  text-align: center;
  margin-top: var(--space-4);
  font-size: 15px;
  color: var(--text-muted);
}
.form-after a { font-weight: 600; }

.form-status { display: none; margin-top: var(--space-3); padding: var(--space-3); border-radius: var(--radius-sm); font-size: 15px; }
.form-status.error { display: block; background: rgba(192,57,43,0.08); color: var(--danger); }

/* thank you */
.thanks {
  display: none;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-5);
  box-shadow: var(--shadow-md);
}
.thanks.show { display: block; }
.thanks .ico {
  width: 72px; height: 72px; margin: 0 auto var(--space-4);
  border-radius: 50%; background: rgba(26,138,90,0.12); color: var(--success);
  display: grid; place-items: center; font-size: 34px;
}

/* ---------- social proof ---------- */
.partners-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .partners-grid { grid-template-columns: 1fr 1fr; } }
.partner-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex; align-items: center; gap: var(--space-3);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.partner-item .av {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%; background: var(--foam); color: var(--ocean);
  display: grid; place-items: center; font-size: 22px;
}
blockquote.quote {
  margin: var(--space-6) auto 0;
  max-width: 760px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.55;
  font-style: italic;
  box-shadow: var(--shadow-lg);
}
blockquote.quote footer { margin-top: var(--space-3); font-size: 15px; color: var(--gold-light); font-style: normal; font-family: var(--font-body); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: var(--space-7) 0 var(--space-5);
  font-size: 15px;
}
.site-footer a { color: rgba(255,255,255,0.92); }
.footer-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h4 { color: var(--gold); font-family: var(--font-display); margin: 0 0 var(--space-3); font-size: 17px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: space-between;
}

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: var(--space-2) var(--space-3) calc(var(--space-2) + env(safe-area-inset-bottom));
  background: rgba(13,27,42,0.96);
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 720px) { .mobile-cta { display: none; } }

/* ---------- a11y ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: var(--space-3); z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid rgba(26,107,138,0.45); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

.section-head { max-width: 760px; margin-bottom: var(--space-6); }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- demo CTA panel ---------- */
.demo-cta {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.demo-cta h2 { color: #fff; }
.demo-cta p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto var(--space-4); }

/* ---------- header actions (две кнопки) ---------- */
.header-actions { display: flex; align-items: center; gap: var(--space-2); }
.site-header .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.site-header .btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- centered CTA rows ---------- */
.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; align-items: center; }
.thanks .btn { margin: 0 auto; }

/* ---------- sticky mobile: две кнопки ---------- */
.mobile-cta .cta-row { flex-wrap: nowrap; gap: 8px; }
.mobile-cta .btn { flex: 1; min-height: 50px; font-size: 15px; padding: 0 10px; }
.mobile-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); flex: 0 0 96px; }
.mobile-cta .btn-ghost:hover { background: #fff; color: var(--navy); }

/* ---------- mobile polish ---------- */
@media (max-width: 719px) {
  body { padding-bottom: 84px; } /* room for sticky mobile CTA */
  section { padding: var(--space-6) 0; }
  .hero { padding: var(--space-6) 0 var(--space-5); text-align: center; }
  .hero h1, .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 380px; }
  .microproof { justify-content: center; }
  .section-head { text-align: center; }

  /* центрируем и растягиваем все кликабельные группы кнопок */
  .cta-row { flex-direction: column; align-items: center; }
  .cta-row > .btn { width: 100%; max-width: 380px; }

  /* sticky остаётся горизонтальным */
  .mobile-cta .cta-row { flex-direction: row; }
  .mobile-cta .cta-row > .btn { width: auto; max-width: none; }

  .callout { font-size: 16px; }
  .closing-line { font-size: 19px; }
}
