/* ============================================================
   LocalCases.com  |  A Vloopiter, LLC Property
   Design system built to the approved hero mock:
   deep navy, engraved gold, Playfair Display over Public Sans.
   ============================================================ */

:root {
  --navy-950: #050B1C;
  --navy-900: #081226;
  --navy-850: #0B1830;
  --navy-800: #10204A;
  --navy-700: #16295C;
  --gold-300: #F6CC66;
  --gold-400: #F0B32C;
  --gold-500: #DD9A18;
  --gold-600: #B87F12;
  --cream:    #F6F1E4;
  --mist:     #A9B7D6;
  --steel:    #6B7BA1;
  --paper:    #FFFFFF;
  --ink:      #0B1226;
  --ink-soft: #46536E;
  --line-navy: rgba(240, 179, 44, 0.16);
  --line-paper: #E4E7EF;
  --grad-gold: linear-gradient(180deg, #F6C24A 0%, #E8A61A 55%, #C98B12 100%);
  --shadow-gold: 0 10px 28px rgba(222, 158, 24, 0.35);
  --radius: 10px;
  --wrap: 1180px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Public Sans", -apple-system, Segoe UI, Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-400); text-decoration: none; }
a:hover { color: var(--gold-300); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold-400); color: var(--ink); padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; color: var(--cream); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; letter-spacing: 0; line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
.gold { color: var(--gold-400); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-400);
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold-400); }

.lede { color: var(--mist); font-size: 1.1rem; max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 0.85rem;
  padding: 16px 28px; border-radius: 8px; border: 0; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn-gold { background: var(--grad-gold); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.05); color: var(--ink); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(246, 241, 228, 0.4);
}
.btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-300); }
.btn-nav { padding: 12px 18px; font-size: 0.74rem; box-shadow: none; white-space: nowrap; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: wait; transform: none; }

/* ---------- Header ---------- */
.site-header .wrap { max-width: 1360px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5, 11, 28, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-navy);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-shield { width: 54px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.65rem; color: var(--paper); }
.brand-name em { font-style: normal; color: var(--gold-400); }
.brand-name small { font-size: 0.85rem; color: var(--mist); font-family: var(--font-body); font-weight: 600; }
.brand-tag { font-size: 0.6rem; letter-spacing: 0.16em; color: var(--steel); font-weight: 700; margin-top: 3px; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a:not(.btn) {
  color: var(--cream); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}
.site-nav a:not(.btn):hover, .site-nav a.is-active { color: var(--gold-400); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: 0.2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-950) url("../img/hero-bg.png") no-repeat right center / cover;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,11,28,0.96) 0%, rgba(5,11,28,0.86) 38%, rgba(5,11,28,0.25) 70%, rgba(5,11,28,0.05) 100%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 640px) 1fr; gap: 30px; padding: 64px 0 88px; }
.hero-copy .eyebrow { margin-bottom: 14px; }
.hero-sub { margin: 16px 0 22px; font-size: 1.15rem; color: var(--cream); max-width: 46ch; }
.hero-sub strong { color: var(--gold-400); }
.hero-check { list-style: none; margin: 0 0 26px; max-width: 480px; }
.hero-check li {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 2px; border-bottom: 1px solid rgba(169, 183, 214, 0.18);
  font-size: 0.95rem;
}
.hero-check li:last-child { border-bottom: 0; }
.hero-check .ic {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--gold-500); color: var(--gold-400);
}
.hero-check .ic svg { width: 16px; height: 16px; }
.hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-micro { color: var(--mist); font-size: 0.9rem; max-width: 24ch; line-height: 1.45; }
.hero-visual { position: relative; min-height: 380px; }
.hero-pin {
  position: absolute; right: 11%; bottom: 56px;
  width: clamp(200px, 21vw, 295px);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
  animation: pinFloat 6s ease-in-out infinite;
}
@keyframes pinFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-badge {
  position: absolute; top: 12px; right: 0;
  background: rgba(8, 18, 38, 0.78); border: 1px solid var(--line-navy);
  border-radius: var(--radius); padding: 16px 20px; max-width: 310px;
  backdrop-filter: blur(6px);
}
.hero-badge-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.hero-badge-head img { width: 26px; height: auto; }
.hero-badge-head span { font-weight: 800; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); white-space: nowrap; }
.hero-badge p { font-size: 0.88rem; color: var(--mist); line-height: 1.5; }

/* ---------- Trust strip (white, five cards) ---------- */
.trust-strip { background: var(--paper); color: var(--ink); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 26px 0; }
.trust-card { display: flex; gap: 12px; align-items: flex-start; padding: 6px 14px; border-left: 1px solid var(--line-paper); }
.trust-card:first-child { border-left: 0; }
.trust-card .ic { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%; border: 1.6px solid var(--ink); display: inline-flex; align-items: center; justify-content: center; }
.trust-card .ic svg { width: 18px; height: 18px; }
.trust-card h5 { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.trust-card p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.45; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--navy-900); border-top: 1px solid var(--line-navy); border-bottom: 1px solid var(--line-navy); }
.stats-grid { display: grid; grid-template-columns: 1.25fr 0.6fr 0.6fr 0.75fr 1.25fr; gap: 26px; align-items: center; padding: 44px 0; }
.stats-title { color: var(--gold-400); font-weight: 800; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.stats-copy { font-size: 0.92rem; color: var(--mist); line-height: 1.55; }
.stat { text-align: center; border-left: 1px solid var(--line-navy); padding: 4px 10px; }
.stat b { display: block; font-size: 3rem; font-weight: 800; color: var(--gold-400); line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); }
.stats-right { display: flex; gap: 14px; align-items: flex-start; border-left: 1px solid var(--line-navy); padding-left: 26px; }
.stats-right img { width: 46px; height: auto; flex: 0 0 46px; }

/* ---------- Assurance strip ---------- */
.assure-strip { background: var(--paper); color: var(--ink); border-bottom: 1px solid var(--line-paper); }
.assure-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; flex-wrap: wrap; }
.assure-left { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; }
.assure-left svg { width: 18px; height: 18px; flex: 0 0 18px; }
.assure-tags { display: flex; gap: 0; font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }
.assure-tags span { padding: 0 16px; border-left: 1px solid var(--line-paper); }
.assure-tags span:first-child { border-left: 0; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--navy-900); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { margin-top: 16px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.center .eyebrow::before { display: none; }

.prose p { margin-bottom: 18px; color: var(--cream); max-width: 70ch; }
.prose p.muted, .muted { color: var(--mist); }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid.four { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--navy-850); border: 1px solid var(--line-navy);
  border-radius: var(--radius); padding: 30px 28px;
}
.card h3 { color: var(--gold-400); font-family: var(--font-body); font-size: 1.02rem; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 12px; }
.card p { color: var(--mist); font-size: 0.97rem; }
.card .num {
  display: inline-flex; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gold-500); color: var(--gold-400);
  align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 16px; font-size: 1.02rem;
}

.bridge { margin-top: 34px; max-width: 74ch; color: var(--cream); font-size: 1.06rem; }

/* Feature list (What Powers It / steps) */
.feature-list { list-style: none; display: grid; gap: 18px; max-width: 820px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; background: var(--navy-850); border: 1px solid var(--line-navy); border-radius: var(--radius); padding: 22px 24px; }
.feature-list .ic { flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gold-500); color: var(--gold-400); display: inline-flex; align-items: center; justify-content: center; }
.feature-list .ic svg { width: 16px; height: 16px; }
.feature-list b { color: var(--cream); display: block; margin-bottom: 4px; }
.feature-list p { color: var(--mist); font-size: 0.96rem; }

/* Comparison table */
.table-scroll { overflow-x: auto; }
table.compare { width: 100%; border-collapse: collapse; min-width: 920px; }
.compare th, .compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line-navy); font-size: 0.95rem; }
.compare thead th { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); }
.compare tbody th { color: var(--cream); font-weight: 700; width: 200px; }
.compare td { color: var(--mist); }
.compare .lc-col { color: var(--gold-300); font-weight: 700; background: rgba(240, 179, 44, 0.06); }
.compare thead .lc-col { color: var(--gold-400); }

/* FAQ */
.faq { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line-navy); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; color: var(--cream); font-family: var(--font-body);
  font-size: 1.05rem; font-weight: 700; text-align: left;
}
.faq-q::after { content: "+"; color: var(--gold-400); font-size: 1.5rem; font-weight: 400; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 4px 24px; color: var(--mist); max-width: 72ch; }

/* CTA band */
.cta-band { background: var(--navy-900); border-top: 1px solid var(--line-navy); }
.cta-inner { text-align: center; padding: 90px 0; max-width: 780px; margin: 0 auto; }
.cta-inner p { margin: 18px auto 30px; color: var(--mist); max-width: 60ch; }

/* ---------- Pricing ---------- */
.price-hero { padding: 80px 0 40px; text-align: center; }
.plan-card {
  background: var(--navy-850); border: 1px solid var(--gold-600);
  border-radius: 14px; padding: 44px; max-width: 980px; margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.plan-price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--gold-400); }
.plan-price small { font-size: 1.1rem; color: var(--mist); font-family: var(--font-body); font-weight: 600; }
.plan-setup { color: var(--mist); margin: 6px 0 30px; }
.plan-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 40px; }
.plan-groups h4 { color: var(--gold-400); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 20px 0 10px; }
.plan-groups ul { list-style: none; }
.plan-groups li { padding: 7px 0 7px 28px; position: relative; color: var(--cream); font-size: 0.96rem; }
.plan-groups li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold-400); font-weight: 800; }

.stack-list { list-style: none; max-width: 860px; display: grid; gap: 14px; }
.stack-list li { padding-left: 30px; position: relative; color: var(--mist); }
.stack-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold-400); font-weight: 800; }
.stack-list b { color: var(--cream); }

table.tiers { width: 100%; border-collapse: collapse; min-width: 640px; }
.tiers th, .tiers td { padding: 18px; border-bottom: 1px solid var(--line-navy); text-align: left; }
.tiers thead th { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); }
.tiers tbody th { color: var(--gold-400); font-family: var(--font-display); font-size: 1.3rem; }
.tiers td { color: var(--mist); }
.tiers .inv { color: var(--cream); font-weight: 800; white-space: nowrap; }

/* ---------- Claim flow ---------- */
.flow-wrap { max-width: 880px; margin: 0 auto; padding: 60px 24px 110px; }
.flow-steps { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; }
.flow-steps i { width: 34px; height: 4px; border-radius: 2px; background: var(--navy-700); transition: background 0.3s; }
.flow-steps i.done { background: var(--gold-500); }
.screen { display: none; }
.screen.active { display: block; animation: fadeUp 0.35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.screen-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.screen-head h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.screen-head .lede { margin-top: 16px; }

.field { max-width: 460px; margin: 0 auto 8px; text-align: left; }
.field label { display: block; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 8px; }
.field input {
  width: 100%; padding: 16px 18px; font-size: 1.15rem; border-radius: 8px;
  border: 1.5px solid var(--navy-700); background: var(--navy-850); color: var(--cream);
  font-family: var(--font-body);
}
.field input:focus { border-color: var(--gold-500); outline: none; }
.field input.err-border { border-color: #E0563F; }
.err { display: none; color: #FF8A70; font-size: 0.9rem; margin: 8px auto 0; max-width: 460px; }
.err.show { display: block; }
.flow-actions { text-align: center; margin-top: 26px; }
.flow-micro { margin-top: 14px; color: var(--mist); font-size: 0.9rem; }

/* scanning */
.scan-stage { text-align: center; padding: 40px 0; }
.scan-pin { width: 110px; margin: 0 auto 8px; animation: pinPulse 1.6s ease-in-out infinite; }
@keyframes pinPulse { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.scan-ring { width: 220px; height: 6px; border-radius: 3px; background: var(--navy-700); margin: 26px auto 0; overflow: hidden; }
.scan-ring i { display: block; height: 100%; width: 0%; background: var(--grad-gold); transition: width 0.5s ease; }
.scan-line { margin-top: 24px; min-height: 28px; color: var(--gold-300); font-size: 1.05rem; font-weight: 600; }

/* availability */
.avail-card { background: var(--navy-850); border: 1px solid var(--line-navy); border-radius: 14px; padding: 40px; text-align: center; max-width: 640px; margin: 0 auto; }
.avail-card h2 { margin-bottom: 14px; }
.avail-card p { color: var(--mist); }
.avail-open { border-color: var(--gold-600); }
.option-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; text-align: left; }
.option-box { background: var(--navy-900); border: 1px solid var(--line-navy); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.option-box p { font-size: 0.94rem; }
.zip-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.zip-chip {
  background: none; border: 1.5px solid var(--gold-500); color: var(--gold-300);
  border-radius: 999px; padding: 7px 16px; font-weight: 800; cursor: pointer; font-size: 0.9rem;
}
.zip-chip:hover { background: rgba(240,179,44,0.12); }

/* score reveal */
.score-top { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: center; margin-bottom: 10px; }
.dial { width: 240px; height: 240px; position: relative; }
.dial svg { transform: rotate(-90deg); }
.dial-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.dial-num b { font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--gold-400); }
.dial-num span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); margin-top: 6px; }
.journey-line { color: var(--mist); font-size: 1.02rem; margin: 6px 0 18px; }
.journey-line b { color: var(--gold-300); }
.subscores { display: grid; gap: 14px; }
.subscore .ss-head { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 6px; }
.subscore .ss-head b { color: var(--cream); }
.subscore .ss-head span { color: var(--gold-400); font-weight: 800; }
.subscore .ss-sub { color: var(--steel); font-size: 0.8rem; margin-top: 4px; }
.ss-bar { height: 8px; border-radius: 4px; background: var(--navy-700); overflow: hidden; }
.ss-bar i { display: block; height: 100%; width: 0; background: var(--grad-gold); transition: width 0.8s ease; }

.band-card { background: var(--navy-850); border-left: 4px solid var(--gold-500); border-radius: 8px; padding: 24px 26px; margin: 26px 0; }
.band-card h3 { color: var(--gold-400); margin-bottom: 8px; font-family: var(--font-body); font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; }
.band-card p { color: var(--mist); }

.reveal-block { margin: 34px 0; }
.reveal-block > h3 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 16px; }
.checks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.checks li { display: flex; gap: 10px; align-items: baseline; font-size: 0.95rem; color: var(--cream); }
.checks li small { color: var(--steel); display: block; }
.checks .ok { color: var(--gold-400); font-weight: 800; }
.checks .miss { color: #FF8A70; font-weight: 800; }

.competitors li { display: flex; justify-content: space-between; padding: 10px 2px; border-bottom: 1px solid var(--line-navy); font-size: 0.95rem; }
.competitors { list-style: none; max-width: 560px; }
.competitors b { color: var(--gold-400); }
.reveal-note { color: var(--steel); font-size: 0.88rem; margin-top: 12px; }

.describe { background: var(--navy-850); border: 1px solid var(--line-navy); border-radius: var(--radius); padding: 26px; }
.describe blockquote { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--cream); line-height: 1.6; }
.describe .senti { margin-top: 14px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.describe .senti b { color: var(--gold-400); }
.tag { border: 1px solid var(--gold-600); color: var(--gold-300); border-radius: 999px; padding: 3px 12px; font-size: 0.78rem; font-weight: 700; }

.engines { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.engine { background: var(--navy-850); border: 1px solid var(--line-navy); border-radius: var(--radius); padding: 18px; text-align: center; }
.engine h5 { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--mist); margin-bottom: 8px; }
.engine b { font-size: 1.4rem; color: var(--gold-400); }
.engine .gated { font-size: 0.8rem; color: var(--gold-300); font-weight: 700; }
.engine small { display: block; color: var(--steel); margin-top: 4px; font-size: 0.75rem; }

.claim-cta { background: var(--navy-800); border: 1px solid var(--gold-600); border-radius: 14px; padding: 38px; text-align: center; margin-top: 44px; }
.claim-cta h2 { margin-bottom: 10px; }
.claim-cta p { color: var(--mist); max-width: 54ch; margin: 0 auto 24px; }
.claim-cta .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.claim-cta .price-micro { margin-top: 18px; font-size: 0.85rem; color: var(--steel); }

/* capture + done */
.capture-form { max-width: 460px; margin: 0 auto; display: grid; gap: 18px; }
.done-stage { text-align: center; padding: 30px 0; }
.done-stage img { width: 120px; margin: 0 auto 20px; }
.done-stage p { max-width: 56ch; margin: 16px auto 30px; color: var(--mist); }

/* ---------- Simple pages ---------- */
.page-hero { padding: 80px 0 30px; }
.page-hero .eyebrow { margin-bottom: 14px; }
.steps .step { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line-navy); }
.steps .step-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold-400); border: 1.5px solid var(--gold-600); border-radius: 50%; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.steps h3 { margin-bottom: 10px; }
.steps p, .steps li { color: var(--mist); }
.steps ul { margin: 12px 0 12px 20px; }
.steps ul li { padding: 3px 0; }

.notice {
  background: rgba(240, 179, 44, 0.08); border: 1px dashed var(--gold-600);
  border-radius: var(--radius); padding: 18px 22px; color: var(--gold-300); font-size: 0.95rem;
  max-width: 760px;
}

.login-card { max-width: 440px; margin: 40px auto 0; background: var(--navy-850); border: 1px solid var(--line-navy); border-radius: 14px; padding: 40px; }
.login-card .field { max-width: none; margin-bottom: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); border-top: 1px solid var(--line-navy); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr; gap: 40px; padding-bottom: 44px; }
.footer-brand img { margin-bottom: 16px; }
.footer-own { color: var(--cream); font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; }
.footer-addr { color: var(--steel); font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { color: var(--gold-400); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--mist); font-size: 0.92rem; padding: 5px 0; }
.footer-col a:hover { color: var(--gold-300); }
.footer-support { color: var(--steel); font-size: 0.85rem; margin-top: 12px; }
.footer-base { border-top: 1px solid var(--line-navy); padding-top: 24px; padding-bottom: 30px; }
.footer-disclaimer { color: var(--steel); font-size: 0.82rem; max-width: 86ch; margin-bottom: 12px; }
.footer-copy { color: var(--steel); font-size: 0.82rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .trust-card { border-left: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stats-copy-block { grid-column: 1 / -1; }
  .stats-right { grid-column: 1 / -1; border-left: 0; padding-left: 0; }
  .hero-visual { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid.four { grid-template-columns: 1fr; }
  .plan-groups { grid-template-columns: 1fr; }
  .score-top { grid-template-columns: 1fr; text-align: center; }
  .dial { margin: 0 auto; }
  .engines { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-900); flex-direction: column; align-items: flex-start;
    padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--line-navy);
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { font-size: 0.9rem; }
}
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; text-align: left; }
  .stat { border-left: 0; text-align: left; padding: 0; }
  .option-split { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .assure-row { justify-content: center; text-align: center; }
  .section { padding: 64px 0; }
}

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

/* ---------- Legal pages ---------- */
.legal h2 { font-family: var(--font-body); font-size: 1rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-400); margin: 36px 0 12px; }
.legal p { color: var(--mist); margin-bottom: 16px; max-width: 80ch; }

/* ---------- Bought-leads: the bad-way treatment ---------- */
.card-grid-bad .card { position: relative; overflow: hidden; border-color: rgba(224, 86, 63, 0.35); border-left: 4px solid #E0563F; }
.card-grid-bad .card h3 { color: #FF8A70; display: flex; align-items: center; gap: 10px; }
.card-grid-bad .card p { position: relative; }
.bad-mark { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; border: 1.6px solid #E0563F; color: #FF8A70; display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; }
.bad-x { position: absolute; top: -18px; right: -6px; font-size: 110px; line-height: 1; font-weight: 800; color: rgba(224, 86, 63, 0.12); pointer-events: none; }
.bridge-win { margin-top: 34px; background: var(--navy-800); border: 1px solid var(--gold-600); border-radius: 12px; padding: 28px 30px; box-shadow: 0 14px 40px rgba(222, 158, 24, 0.14); }
.bridge-win .win-kicker { display: flex; align-items: center; gap: 10px; color: var(--gold-400); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
.win-check { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; border: 1.6px solid var(--gold-400); color: var(--gold-400); display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; }
.bridge-win p { color: var(--cream); font-size: 1.06rem; max-width: 74ch; }

/* ---------- Pricing: core plan label ---------- */
.plan-tier-name { color: var(--gold-400); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }

/* ---------- Bought-leads: two roads, one ending ---------- */
.c-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.c-panel { background: var(--navy-850); border: 1px solid rgba(224, 86, 63, 0.35); border-top: 4px solid #E0563F; border-radius: 12px; padding: 26px; }
.c-panel h4 { color: #FF8A70; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.c-panel h4 .lx { margin-top: 0; }
.c-sub { color: var(--cream); font-weight: 700; font-size: 0.95rem; margin-bottom: 14px; }
.c-panel ul { list-style: none; }
.c-panel li { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid rgba(169, 183, 214, 0.12); color: var(--mist); font-size: 0.95rem; }
.c-panel li:last-child { border-bottom: 0; }
.c-panel li b { color: var(--cream); }
.lx { flex: 0 0 16px; color: #FF8A70; font-weight: 800; margin-top: 2px; }
.c-join { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; height: 26px; }
.c-join i { width: 2px; background: rgba(224, 86, 63, 0.35); justify-self: center; }
.c-end { background: rgba(224, 86, 63, 0.07); border: 1px solid rgba(224, 86, 63, 0.35); border-radius: 10px; padding: 18px 26px; text-align: center; }
.c-end b { color: #FF8A70; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.c-end p { color: var(--mist); font-size: 0.98rem; }
@media (max-width: 860px) {
  .c-cols { grid-template-columns: 1fr; gap: 30px; }
  .c-panel { position: relative; }
  .c-panel::after { content: ""; position: absolute; left: 50%; bottom: -30px; width: 2px; height: 30px; background: rgba(224, 86, 63, 0.35); }
  .c-join { display: none; }
  .c-end { margin-top: 30px; }
}

/* Proof band, timeline, plan note (2026-07-11) */
.proof-band{background:#0A1633;}
.proof-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:28px 0 6px;}
.pstat{background:#10204A;border:1px solid rgba(240,179,44,.25);border-radius:12px;padding:18px 12px;text-align:center;}
.pstat b{display:block;font-family:"Playfair Display",serif;font-size:2rem;color:#F0B32C;line-height:1.1;}
.pstat span{font-size:.72rem;letter-spacing:.06em;text-transform:uppercase;color:#8FA2C7;}
.claim-timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.tstep{border-left:3px solid #B87F12;padding:4px 0 4px 14px;}
.tstep b{display:block;color:#F6CC66;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;margin-bottom:4px;}
.tstep span{color:#A9B7D6;font-size:.92rem;}
.plan-note{margin-top:26px;text-align:center;color:#A9B7D6;max-width:64ch;margin-left:auto;margin-right:auto;}
.plan-note strong{color:#F6F1E4;}
@media(max-width:760px){.proof-stats{grid-template-columns:repeat(2,1fr);}.claim-timeline{grid-template-columns:1fr 1fr;}}
