/* BuyHome9 — landing page styles (loaded alongside funnel.css for shared tokens) */

/* ---------- design tokens ---------- */
:root {
  --green: #1d4ed8;
  --green-2: #3b82f6;
  --ink: #0b1220;
  --slate-7: #0f172a;
  --slate-5: #475569;
  --slate-3: #94a3b8;
  --slate-2: #cbd5e1;
  --slate-1: #e5e7eb;
  --bg: #f7f8fb;
  --gold: #f59e0b;
  --gold-soft: #fef3c7;
  --rose: #e11d48;
  --shadow-1: 0 1px 3px rgba(15,23,42,.05);
  --shadow-2: 0 8px 24px rgba(15,23,42,.06);
  --shadow-3: 0 24px 48px -12px rgba(15,23,42,.18);
  --r-1: 12px;
  --r-2: 16px;
  --r-3: 24px;
}

/* ---------- base ---------- */
.lp {
  background: #fff;
  color: var(--ink);
  line-height: 1.6;
}
.lp img, .lp svg { display: block; max-width: 100%; }
.lp a { color: var(--green); text-decoration: none; }
.lp a:hover { text-decoration: underline; }

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: #eff6ff;
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.eyebrow.alt { color: #92400e; background: var(--gold-soft); }

h1.hh, h2.hh, h3.hh {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
h1.hh { font-size: clamp(34px, 6vw, 60px); line-height: 1.05; }
h2.hh { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; }
h3.hh { font-size: clamp(20px, 2.4vw, 24px); line-height: 1.25; }
.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--slate-5);
  max-width: 56ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 14px;
  background-color: #1d4ed8;       /* solid — predictable contrast */
  background-image: none;
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(29,78,216,.30);
  transition: transform .08s ease, box-shadow .15s ease, background-color .15s ease;
  text-decoration: none;
  min-height: 52px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,.30);
}
.btn:hover {
  background-color: #1e3a8a;
  color: #ffffff !important;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(29,78,216,.40);
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid #fcd34d; outline-offset: 2px; }
.btn-lg { font-size: 18px; padding: 20px 30px; min-height: 62px; border-radius: 16px; }

/* Ghost = white pill with very dark text. No color flip on hover (was hard
   to read when text turned green-on-white). Hover inverts to dark fill. */
.btn-ghost {
  background-color: #ffffff !important;
  background-image: none;
  color: #0b1220 !important;
  border: 2px solid #0b1220;
  box-shadow: none;
  text-shadow: none;
  font-weight: 900;
}
.btn-ghost:hover {
  background-color: #0b1220 !important;
  color: #ffffff !important;
  border-color: #0b1220;
  box-shadow: 0 8px 18px rgba(15,23,42,.25);
}

/* Gold = solid amber with WHITE text (not brown). Brown-on-amber tested
   poorly for readability; switching to white-on-amber matches the green
   primary's contrast level. */
.btn-gold {
  background-color: #d97706 !important;
  background-image: none;
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(217,119,6,.40);
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
  font-weight: 900;
}
.btn-gold:hover {
  background-color: #b45309 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(180,83,9,.45);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-row .meta { font-size: 13px; color: var(--slate-5); }

/* ---------- header ---------- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--slate-1);
}
.lp-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 12px;
}
.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo span { color: var(--green); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: var(--slate-7);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 10px;
}
.nav a:hover { background: var(--bg); color: var(--ink); text-decoration: none; }
.hdr-cta { padding: 12px 18px; min-height: 44px; font-size: 15px; font-weight: 900; }

.hdr-actions { display: flex; align-items: center; gap: 10px; }
.hdr-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 900;
  font-size: 14px;
  color: #0b1220 !important;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.hdr-phone:hover { background-color: #eff6ff; color: #1d4ed8 !important; text-decoration: none; }
.hdr-phone-icon { font-size: 16px; line-height: 1; }
@media (max-width: 720px) {
  .hdr-phone .hdr-phone-text { display: none; }
  .hdr-phone { padding: 8px 10px; }
}

@media (max-width: 820px) {
  .nav { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(59,130,246,.16), transparent 70%),
    radial-gradient(ellipse 60% 60% at 0% 30%, rgba(29,78,216,.08), transparent 70%),
    #fff;
  padding: 56px 0 72px;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 920px) { .hero .grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; } }

.hero h1 .accent {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero .lead { margin: 16px 0 24px; font-size: clamp(17px, 1.7vw, 20px); }
.hero .cta-meta {
  display: flex; flex-wrap: wrap; gap: 12px 18px;
  margin-top: 14px;
  font-size: 13px; color: var(--slate-5);
}
.hero .cta-meta b { color: var(--ink); }
.hero .cta-meta span::before { content: "✓ "; color: var(--green); font-weight: 900; }

.hero-card {
  background: #fff;
  border: 1px solid var(--slate-1);
  border-radius: var(--r-3);
  padding: 24px;
  box-shadow: var(--shadow-3);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59,130,246,.4), transparent 60%);
  z-index: -1;
  filter: blur(10px);
  opacity: .5;
}
.hero-card .badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: #b45309;
  background: var(--gold-soft);
  padding: 5px 10px; border-radius: 99px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-card .badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #f59e0b; box-shadow: 0 0 0 4px rgba(245,158,11,.25);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(245,158,11,.25); }
  50%     { box-shadow: 0 0 0 8px rgba(245,158,11,.0); }
}
.hero-card h3 { font-size: 22px; font-weight: 800; margin: 0 0 6px; }
.hero-card p  { color: var(--slate-5); margin: 0 0 16px; }
.hero-card .stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin: 16px 0 18px;
}
.hero-card .stat {
  background: #f8fafc;
  border: 1px solid var(--slate-1);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}
.hero-card .stat b { display: block; font-size: 22px; color: var(--ink); font-weight: 900; line-height: 1.1; }
.hero-card .stat span { font-size: 11px; color: var(--slate-5); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.hero-card .row-mini { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid var(--slate-1); font-size: 14px; color: var(--slate-7); }
.hero-card .row-mini:last-child { border-bottom: 1px solid var(--slate-1); }
.hero-card .row-mini svg { color: var(--green); flex: 0 0 auto; }
.hero-card .review {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 18px; padding: 14px;
  background: linear-gradient(135deg, #fffbeb, #fff);
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
}
.hero-card .review .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  display: flex; align-items: center; justify-content: center;
  color: #422006; font-weight: 900;
}
.hero-card .review p { margin: 0; font-size: 13px; color: var(--slate-7); }
.hero-card .review p strong { color: var(--ink); }
.hero-card .review .stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }

/* ---------- trust strip ---------- */
.trust-strip {
  background: var(--bg);
  padding: 22px 0;
  border-bottom: 1px solid var(--slate-1);
}
.trust-strip .grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px; align-items: center;
  text-align: center;
  font-size: 13px; color: var(--slate-5); font-weight: 600;
}
@media (min-width: 720px) { .trust-strip .grid { grid-template-columns: repeat(4, 1fr); } }
.trust-strip b { display: block; color: var(--ink); font-size: 22px; font-weight: 900; }

/* ---------- generic section ---------- */
section.s {
  padding: 80px 0;
  position: relative;
}
section.s.alt { background: var(--bg); }
section.s.dark {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  color: #e2e8f0;
}
section.s.dark h2.hh, section.s.dark h3.hh { color: #fff; }
section.s.dark .lead { color: #cbd5e1; }

.s-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.s-head .lead { margin: 12px auto 0; }

/* ---------- problem / pain cards ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .pain-grid { grid-template-columns: repeat(4, 1fr); } }

.pain {
  background: #fff;
  border: 1px solid var(--slate-1);
  border-radius: var(--r-2);
  padding: 22px;
  box-shadow: var(--shadow-1);
  transition: transform .15s ease, box-shadow .15s ease;
}
.pain:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.pain .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fee2e2;
  color: #b91c1c;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.pain h3 { font-size: 17px; font-weight: 800; margin: 0 0 4px; color: var(--ink); }
.pain p  { margin: 0; color: var(--slate-5); font-size: 14px; }

/* ---------- how it works steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-1);
  border-radius: var(--r-2);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-1);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; top: -18px; left: 24px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  font-weight: 900; font-size: 13px; letter-spacing: .1em;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(29,78,216,.35);
}
.step h3 { font-size: 19px; font-weight: 800; margin: 6px 0 6px; color: var(--ink); }
.step p { margin: 0; color: var(--slate-5); font-size: 15px; }

/* ---------- pillars (why) ---------- */
.pillars {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  background: #fff;
  border: 1px solid var(--slate-1);
  border-radius: var(--r-2);
  padding: 22px;
  text-align: left;
}
.pillar .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: #eff6ff; color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.pillar h3 { font-size: 17px; font-weight: 800; margin: 0 0 6px; }
.pillar p  { color: var(--slate-5); font-size: 14px; margin: 0; }

/* ---------- comparison table ---------- */
.cmp-wrap {
  background: #fff;
  border: 1px solid var(--slate-1);
  border-radius: var(--r-3);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.cmp th, .cmp td { padding: 16px 18px; text-align: left; vertical-align: top; }
.cmp thead th {
  background: #f8fafc;
  color: var(--slate-7);
  font-weight: 800;
  border-bottom: 1px solid var(--slate-1);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.cmp thead th.win {
  background: linear-gradient(180deg, #eff6ff, #dbeafe);
  color: #1e40af;
  position: relative;
}
.cmp thead th.win::after {
  content: "Better";
  position: absolute; top: 8px; right: 12px;
  font-size: 10px; padding: 3px 8px; border-radius: 99px;
  background: var(--green); color: #fff; letter-spacing: .08em;
}
.cmp tbody tr { border-top: 1px solid var(--slate-1); }
.cmp tbody td:first-child { font-weight: 700; color: var(--ink); }
.cmp .yes  { color: var(--green); font-weight: 800; }
.cmp .no   { color: #b91c1c; font-weight: 800; }
.cmp .row  { color: var(--slate-7); }
.cmp tbody tr td:nth-child(3) { background: #f0fdf4; }

/* ---------- testimonials ---------- */
.tests { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .tests { grid-template-columns: repeat(3, 1fr); } }
.test {
  background: #fff; color: var(--ink);
  border: 1px solid var(--slate-1);
  border-radius: var(--r-2);
  padding: 24px;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 10px;
}
.test .stars { color: #f59e0b; letter-spacing: 2px; font-size: 14px; }
.test blockquote { margin: 0; font-size: 16px; color: var(--slate-7); line-height: 1.55; }
.test blockquote::before { content: "“"; color: var(--green); font-size: 36px; line-height: 0; vertical-align: -16px; margin-right: 4px; }
.test .who { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--slate-1); }
.test .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 14px;
}
.av-1 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.av-2 { background: linear-gradient(135deg, #f59e0b, #b45309); }
.av-3 { background: linear-gradient(135deg, #6366f1, #4338ca); }
.test .who b { display: block; font-weight: 800; color: var(--ink); font-size: 14px; }
.test .who span { color: var(--slate-5); font-size: 13px; }

/* ---------- about / story ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center;
}
@media (min-width: 920px) { .about-grid { grid-template-columns: 1.1fr .9fr; } }
.about-art {
  position: relative;
  background: linear-gradient(135deg, #eff6ff, #fff);
  border: 1px solid var(--slate-1);
  border-radius: var(--r-3);
  padding: 24px;
  box-shadow: var(--shadow-2);
}
.about-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.about-stats .item {
  background: #fff; border-radius: var(--r-2);
  padding: 16px; border: 1px solid var(--slate-1);
}
.about-stats b { display: block; font-size: 26px; color: var(--ink); font-weight: 900; line-height: 1.1; }
.about-stats span { font-size: 12px; color: var(--slate-5); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

.values { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.values li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; color: var(--slate-7);
}
.values li::before {
  content: ""; flex: 0 0 auto;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/14px no-repeat;
  margin-top: 1px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--slate-1);
  border-radius: var(--r-2);
  margin-bottom: 12px;
  padding: 4px 4px;
  transition: box-shadow .15s ease;
}
.faq details[open] { box-shadow: var(--shadow-2); border-color: var(--green); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-size: 17px; font-weight: 700; color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--bg); color: var(--green);
  font-weight: 900; font-size: 22px; line-height: 26px;
  text-align: center; border-radius: 50%;
  transition: transform .15s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq .a {
  padding: 0 22px 20px;
  color: var(--slate-5);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ---------- final CTA ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 60%, #3b82f6 100%);
  color: #fff;
  border-radius: var(--r-3);
  padding: 56px 32px;
  text-align: center;
}
.final-cta::before, .final-cta::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  pointer-events: none;
}
.final-cta::before { background: #fbbf24; top: -120px; right: -100px; }
.final-cta::after  { background: #22d3ee; bottom: -140px; left: -120px; }
.final-cta h2 { font-size: clamp(28px, 4vw, 44px); margin: 0 0 12px; color: #fff; font-weight: 900; letter-spacing: -0.02em; }
.final-cta p  { color: #dbeafe; font-size: 18px; max-width: 56ch; margin: 0 auto 24px; }
/* Inside the green gradient section, flip the primary CTA: white pill, very
   dark text. Need !important on color because the base .btn rule pins it
   white — without these overrides the button rendered white-on-white. */
.final-cta .btn {
  background-color: #ffffff !important;
  background-image: none;
  color: #0b1220 !important;
  text-shadow: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  border: 0;
}
.final-cta .btn:hover {
  background-color: #eff6ff !important;
  color: #0b1220 !important;
}
.final-cta .micro { display: block; margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.85); }

/* ---------- footer ---------- */
.lp-footer {
  background: #0b1220;
  color: #94a3b8;
  padding: 56px 0 28px;
  font-size: 14px;
}
.lp-footer .grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 760px) { .lp-footer .grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.lp-footer .logo { color: #fff; }
.lp-footer p { margin: 10px 0 0; line-height: 1.6; max-width: 38ch; }
.lp-footer h4 { color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 10px; }
.lp-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.lp-footer a { color: #cbd5e1; }
.lp-footer a:hover { color: #fff; text-decoration: none; }
.lp-footer .legal {
  border-top: 1px solid #1f2937;
  margin-top: 28px; padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 12px; color: #64748b;
}

/* ---------- mobile sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  z-index: 60;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(15,23,42,.35);
}
.sticky-cta b { flex: 1; font-size: 13px; font-weight: 900; }
.sticky-cta .btn { padding: 12px 14px; min-height: 44px; font-size: 13.5px; }
.sticky-call {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(29,78,216,.45);
}
.sticky-call:hover { background: #1e40af; text-decoration: none; }

/* ---------- hero live activity ticker ---------- */
.hero-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  background-color: #eff6ff;
  border: 1.5px solid #1d4ed8;
  border-radius: 14px;
  font-size: 13.5px;
  color: #1e3a8a;                       /* darker than before for stronger contrast */
  font-weight: 700;
  max-width: 100%;
}
.hero-ticker.is-fade .hero-ticker-text { animation: tickerSlide .35s ease-out; }
@keyframes tickerSlide {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-ticker-dot {
  flex: 0 0 auto;
  width: 9px; height: 9px;
  border-radius: 50%;
  background-color: #1d4ed8;
  box-shadow: 0 0 0 4px rgba(29,78,216,.25);
  animation: tickerPulse 1.6s infinite;
}
@keyframes tickerPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(29,78,216,.25); }
  50%     { box-shadow: 0 0 0 8px rgba(29,78,216,0); }
}
.hero-ticker-text {
  flex: 1;
  line-height: 1.4;
  word-break: break-word;
}
.hero-ticker-text b { color: #1e3a8a; font-weight: 900; }
.hero-ticker-ago { color: #1e3a8a; opacity: .85; font-weight: 800; }

/* ---------- hero mini stats (under ticker) ---------- */
.hero-mini-stats {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  font-size: 13px;
  color: var(--slate-5);
  font-weight: 600;
}
.hero-mini-stats b { color: var(--ink); font-size: 15px; font-weight: 900; }

/* ---------- mobile-only big tap-to-call ---------- */
.hero-call-mobile {
  display: none;
  margin-top: 16px;
  width: 100%;
  background-color: #1d4ed8;
  background-image: none;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 900;
  font-size: 17px;
  padding: 16px 18px;
  border-radius: 14px;
  text-align: center;
  letter-spacing: .01em;
  box-shadow: 0 14px 28px -8px rgba(29,78,216,.45);
  text-shadow: 0 1px 2px rgba(0,0,0,.30);
}
.hero-call-mobile:hover { background-color: #1e3a8a; color: #ffffff !important; text-decoration: none; }
@media (max-width: 720px) {
  .hero-call-mobile { display: block; }
}

/* ---------- exit-intent modal ---------- */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  transition: opacity .2s ease;
}
.exit-modal.is-open { opacity: 1; }
.exit-modal[hidden] { display: none; }
body.has-modal { overflow: hidden; }

.exit-modal-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 24px 22px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 24px 60px -12px rgba(15,23,42,.45);
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform .2s ease;
}
.exit-modal.is-open .exit-modal-card { transform: translateY(0) scale(1); }
.exit-modal-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 38px; height: 38px;
  background-color: #f1f5f9;
  border: 0;
  font-size: 22px;
  color: #0b1220;                         /* dark, not light slate */
  cursor: pointer;
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}
.exit-modal-close:hover { background-color: #0b1220; color: #ffffff; }
.exit-modal-card h2 {
  margin: 8px 0 6px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.exit-modal-card p { margin: 0 0 14px; color: var(--slate-5); font-size: 14.5px; }
.exit-form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.exit-form input {
  flex: 1;
  border: 1.5px solid var(--slate-2);
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  color: var(--ink);
}
.exit-form input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(29,78,216,.15); }
.exit-form button {
  flex: 0 0 auto;
  background-color: #1d4ed8;
  background-image: none;
  color: #ffffff !important;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  min-height: 48px;
  text-shadow: 0 1px 2px rgba(0,0,0,.30);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.exit-form button:hover { background-color: #1e3a8a; color: #ffffff !important; }
.exit-fine { font-size: 11.5px; color: #64748b; margin: 0; line-height: 1.45; }
.exit-err {
  margin-top: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 720px) {
  .sticky-cta.show { display: flex; }
  body.has-sticky { padding-bottom: 80px; }
}

/* ---------- fade-in on scroll ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.in { opacity: 1; transform: none; }

/* ---------- accessibility ---------- */
.lp :focus-visible { outline: 3px solid #fcd34d; outline-offset: 2px; border-radius: 8px; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
