/* ============================================================
   AuctionProof Design System
   Brand: deep navy (trust) + mint green (the lock-house logo)
   Amber and red are reserved for warnings and auction-risk notes.
   ============================================================ */

:root {
  --ink: #131b3a;
  --navy-900: #10182f;
  --navy-800: #161f3d;
  --navy-700: #1f2b52;
  --paper: #f6f8fb;
  --card: #ffffff;
  --line: #e3e9f2;
  --text: #33405e;
  --muted: #5c6a86;
  --green: #10d090;
  --green-hover: #0fc487;
  --green-600: #0aa572;
  --green-700: #078a5e;
  --green-100: #e3faf0;
  --green-bright: #2ce8a8;
  --amber: #e9a13b;
  --amber-100: #fdf3e0;
  --amber-text: #7a5312;
  --red: #c14a35;
  --red-100: #fbeae6;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 3px rgba(19, 27, 58, 0.08);
  --shadow-md: 0 6px 24px rgba(19, 27, 58, 0.10);
  --shadow-lg: 0 18px 48px rgba(19, 27, 58, 0.18);
  --font-body: "Manrope", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --wrap: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--green-700); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 18px; z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Typography ---------- */

h1, h2, h3 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.35rem); letter-spacing: -0.3px; }
h3 { font-size: 1.18rem; font-family: var(--font-body); font-weight: 800; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green-600); margin-bottom: 14px;
}

.lede { font-size: 1.13rem; color: var(--muted); max-width: 640px; }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--green); color: var(--ink); box-shadow: 0 4px 14px rgba(16, 208, 144, 0.35); }
.btn-primary:hover { background: var(--green-hover); color: var(--ink); box-shadow: 0 6px 20px rgba(16, 208, 144, 0.45); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.08); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.08rem; }

/* ---------- Top bar ---------- */

.topbar {
  background: var(--ink); color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem; font-weight: 600;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 9px; padding-bottom: 9px; }
.topbar a { color: var(--green-bright); font-weight: 800; }
.topbar a:hover { color: #5cf0c0; }
.topbar-note { display: flex; align-items: center; gap: 8px; }
.topbar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none;
  box-shadow: 0 0 0 3px rgba(16, 208, 144, 0.3); }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }

.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-body); }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-name { font-size: 1.28rem; font-weight: 800; color: var(--ink); letter-spacing: -0.4px; }
.brand-name em { font-style: normal; color: var(--green); }
.site-footer .brand-name { color: #fff; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--green-600); }
.main-nav .btn { padding: 12px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: 0.2s; }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(16, 208, 144, 0.14), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(31, 43, 82, 0.55), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff;
  overflow: hidden;
}
.hero .wrap {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center;
  padding-top: 78px; padding-bottom: 88px;
}

.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--green-bright); }
.hero .lede { color: rgba(255, 255, 255, 0.82); margin-top: 20px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(16, 208, 144, 0.12); border: 1px solid rgba(16, 208, 144, 0.4);
  color: var(--green-bright); border-radius: 999px; padding: 7px 16px;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; padding: 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.95rem; color: rgba(255, 255, 255, 0.92); }
.hero-points svg { flex: none; }

.hero-callout {
  margin-top: 30px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.75);
}
.hero-callout a { color: var(--green-bright); font-weight: 800; }

/* ---------- Offer form card ---------- */

.offer-card {
  background: var(--card); color: var(--text);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 34px 32px; position: relative;
}
.offer-card-flag {
  position: absolute; top: -15px; left: 32px;
  background: var(--green-700); color: #fff; font-size: 0.76rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.offer-card h2 { font-size: 1.45rem; margin-bottom: 4px; }
.offer-card .offer-sub { color: var(--muted); font-size: 0.94rem; margin-bottom: 22px; }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 800; font-size: 0.86rem; margin-bottom: 7px; color: var(--ink); }
.form-field label .optional { color: var(--muted); font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(16, 208, 144, 0.22);
}
.form-field input.invalid { border-color: var(--red); }
.form-field .field-error { display: none; color: var(--red); font-size: 0.82rem; font-weight: 700; margin-top: 5px; }
.form-field.has-error .field-error { display: block; }
.form-field.has-error input { border-color: var(--red); }

.form-check { display: flex; align-items: center; gap: 9px; margin: -6px 0 16px; }
.form-check input { width: 17px; height: 17px; accent-color: var(--green-600); }
.form-check label { font-size: 0.88rem; font-weight: 600; color: var(--muted); }

.auction-hint {
  display: none; background: var(--amber-100); border: 1px solid rgba(201, 134, 29, 0.35);
  color: var(--amber-text); border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 0.9rem; font-weight: 700; margin: -4px 0 16px;
}
.auction-hint.show { display: block; }
.auction-hint.urgent { background: var(--red-100); border-color: rgba(193, 74, 53, 0.4); color: #8c3423; }

.form-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.form-steps .step-dot {
  height: 5px; flex: 1; background: var(--line); border-radius: 99px; transition: background 0.2s;
}
.form-steps .step-dot.active { background: var(--green); }

.form-step-panel[hidden] { display: none; }

.form-fine {
  margin-top: 14px; font-size: 0.79rem; color: var(--muted); line-height: 1.5;
}

.form-success { text-align: center; padding: 26px 8px; }
.form-success svg { margin: 0 auto 16px; }
.form-success h3 { font-size: 1.3rem; font-family: var(--font-display); font-weight: 600; }
.form-success p { color: var(--muted); margin-top: 10px; font-size: 0.96rem; }
.form-success .success-phone { display: inline-block; margin-top: 16px; font-size: 1.2rem; font-weight: 800; color: var(--ink); }

.btn-back {
  background: none; border: none; color: var(--muted); font-weight: 700; font-size: 0.9rem;
  cursor: pointer; padding: 10px 0 0; font-family: var(--font-body);
}
.btn-back:hover { color: var(--ink); }

/* ---------- Trust strip ---------- */

.trust-strip { background: var(--ink); color: #fff; }
.trust-strip .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding-top: 26px; padding-bottom: 26px;
}
.trust-item { display: flex; align-items: center; gap: 13px; justify-content: center; }
.trust-item svg { flex: none; }
.trust-item strong { display: block; font-size: 1.06rem; letter-spacing: -0.2px; }
.trust-item span { display: block; font-size: 0.82rem; color: rgba(255, 255, 255, 0.65); font-weight: 600; }

/* ---------- Sections ---------- */

.section { padding: 88px 0; }
.section.tint { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.dark { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); color: rgba(255,255,255,0.85); }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .lede, .section.dark p { color: rgba(255, 255, 255, 0.78); }
.section.dark .eyebrow { color: var(--green-bright); }

/* ---------- Stakes (what auction costs you) ---------- */

.stakes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.stake-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius); padding: 28px 26px;
}
.stake-card .stake-icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(193, 74, 53, 0.18); margin-bottom: 18px;
}
.stake-card.win .stake-icon { background: rgba(16, 208, 144, 0.18); }
.stake-card h3 { margin-bottom: 10px; }
.stake-card p { font-size: 0.95rem; }

.stakes-cta { margin-top: 40px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.stakes-cta .note { font-size: 0.92rem; color: rgba(255, 255, 255, 0.65); }

/* ---------- Steps ---------- */

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; position: relative; box-shadow: var(--shadow-sm);
}
.step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.15rem; margin-bottom: 18px; font-family: var(--font-display);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.96rem; color: var(--muted); }
.step-card .step-tag {
  display: inline-block; margin-top: 16px; background: var(--green-100); color: var(--green-700);
  font-size: 0.78rem; font-weight: 800; padding: 5px 12px; border-radius: 999px;
}

/* ---------- Comparison table ---------- */

.compare-scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); }
table.compare {
  width: 100%; border-collapse: separate; border-spacing: 0; background: var(--card);
  min-width: 760px; font-size: 0.95rem;
}
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { font-size: 0.98rem; background: var(--ink); color: #fff; font-weight: 800; }
.compare thead th.hl { background: var(--green); color: var(--ink); }
.compare tbody th { font-weight: 800; color: var(--ink); background: #fbfcfe; width: 22%; }
.compare td.hl { background: var(--green-100); font-weight: 700; color: var(--ink); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare .bad { color: var(--red); font-weight: 700; }
.compare .good { color: var(--green-700); font-weight: 800; }

/* ---------- Formula ---------- */

.formula-flow {
  display: flex; align-items: stretch; gap: 12px; flex-wrap: wrap; margin-top: 10px;
}
.formula-box {
  flex: 1 1 150px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 18px; text-align: center; box-shadow: var(--shadow-sm);
}
.formula-box strong { display: block; color: var(--ink); font-size: 1.02rem; margin-bottom: 5px; }
.formula-box span { font-size: 0.83rem; color: var(--muted); line-height: 1.45; display: block; }
.formula-box.result { background: var(--ink); border-color: var(--ink); }
.formula-box.result strong { color: var(--green-bright); font-size: 1.1rem; }
.formula-box.result span { color: rgba(255, 255, 255, 0.7); }
.formula-op {
  align-self: center; font-size: 1.5rem; font-weight: 800; color: var(--muted); flex: none;
}
.formula-note { margin-top: 26px; font-size: 0.94rem; color: var(--muted); max-width: 760px; }

/* ---------- Situations ---------- */

.situations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.situation-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.situation-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.situation-card .sit-icon {
  width: 44px; height: 44px; border-radius: 11px; background: var(--green-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.situation-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.situation-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Testimonials ---------- */

.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.quote-stars { color: var(--amber); letter-spacing: 3px; font-size: 1rem; margin-bottom: 14px; }
.quote-card blockquote { font-size: 0.98rem; color: var(--text); flex: 1; }
.quote-card figcaption { margin-top: 18px; font-weight: 800; color: var(--ink); font-size: 0.9rem; }
.quote-card figcaption span { display: block; font-weight: 600; color: var(--muted); font-size: 0.83rem; }

/* ---------- FAQ accordion ---------- */

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 20px 24px; font-family: var(--font-body);
  font-weight: 800; font-size: 1.02rem; color: var(--ink);
}
.faq-q .faq-icon {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 22px; color: var(--muted); font-size: 0.97rem; }
.faq-a p + p { margin-top: 10px; }
.faq-item.open .faq-a { display: block; }

/* ---------- Coverage ---------- */

.city-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 6px; }
.city-chips span, .city-chips a {
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-weight: 700; font-size: 0.9rem; color: var(--text);
}
.city-chips a:hover { border-color: var(--green); color: var(--green-700); }
.coverage-note { text-align: center; margin-top: 26px; color: var(--muted); font-size: 0.95rem; }

/* ---------- Final CTA ---------- */

.final-cta {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(16, 208, 144, 0.16), transparent 55%),
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: #fff; text-align: center; padding: 92px 0;
}
.final-cta h2 { color: #fff; max-width: 700px; margin: 0 auto 18px; }
.final-cta p { color: rgba(255, 255, 255, 0.78); max-width: 560px; margin: 0 auto 34px; }
.final-cta .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta .cta-phone { margin-top: 22px; font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.final-cta .cta-phone a { color: var(--green-bright); font-weight: 800; }

/* ---------- Content pages (timeline, about, faq, legal) ---------- */

.page-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: #fff;
  padding: 70px 0 60px;
}
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255, 255, 255, 0.8); margin-top: 16px; }
.page-hero .eyebrow { color: var(--green-bright); }

.prose { max-width: 780px; }
.prose h2 { margin: 44px 0 16px; }
.prose h3 { margin: 30px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose .callout {
  background: var(--amber-100); border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px; margin: 26px 0; font-size: 0.97rem;
}
.prose .callout strong { color: var(--ink); }

.timeline-stage {
  display: flex; gap: 22px; margin-bottom: 8px; position: relative; padding-bottom: 34px;
}
.timeline-stage::before {
  content: ""; position: absolute; left: 22px; top: 50px; bottom: 0; width: 2px; background: var(--line);
}
.timeline-stage:last-child::before { display: none; }
.timeline-badge {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: var(--green-bright); font-weight: 800; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
  position: relative; z-index: 1;
}
.timeline-stage.danger .timeline-badge { background: var(--red); color: #fff; }
.timeline-body h3 { margin: 8px 0 8px; }
.timeline-body .stage-window { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-600); }
.timeline-body p { font-size: 0.97rem; color: var(--muted); margin-bottom: 0; margin-top: 8px; }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; }
.site-footer .wrap { padding-top: 64px; padding-bottom: 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-blurb { margin-top: 14px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); max-width: 300px; }
.site-footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); }
.site-footer a:hover { color: var(--green-bright); }
.footer-phone { font-size: 1.25rem; font-weight: 800; color: #fff !important; }
.footer-hours { margin-top: 8px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 26px;
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); line-height: 1.6;
}
.footer-legal p + p { margin-top: 10px; }
.footer-copy { margin-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy a { color: rgba(255, 255, 255, 0.6); }

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; padding-top: 56px; padding-bottom: 64px; }
  .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .stakes-grid, .steps-grid, .situations-grid, .quotes-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .stakes-grid, .steps-grid, .situations-grid, .quotes-grid { grid-template-columns: 1fr; }
  .topbar .wrap { justify-content: center; text-align: center; }
  .topbar-note.secondary { display: none; }

  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 22px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-of-type { border-bottom: 0; }
  .main-nav .btn { margin-top: 14px; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .offer-card { padding: 28px 22px; }
}
