@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================
   RESET & ROOT
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #1A5DC8;
  --blue-mid: #1A4A9E;
  --blue-dark: #1E3A6E;
  --blue-light: #EBF2FF;
  --blue-pale: #F0F6FF;
  --blue-stripe: #EDF4FF;
  --gold: #C9920A;
  --gold-light: #F5A623;
  --text: #1A1A2E;
  --muted: #5A6478;
  --border: #DDE3EE;
  --white: #FFFFFF;
  --red: #CC3333;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   LAYOUT
   ============================================ */
.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
}

.stripe-white { background: var(--white); }
.stripe-blue  { background: var(--blue-stripe); }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  letter-spacing: 0.2px;
}
.topbar strong { color: #F5D78A; }

/* ============================================
   NAV
   ============================================ */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo-case  { font-size: 20px; font-weight: 700; color: var(--blue-dark); letter-spacing: -0.5px; }
.logo-check { font-size: 20px; font-weight: 700; color: var(--blue);      letter-spacing: -0.5px; }

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 12px 28px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { background: var(--blue-pale); }
.nav-drawer .nav-cta-mobile {
  margin: 12px 28px 4px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  border-bottom: none !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: #F5D78A;
  font-weight: 400;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-gold {
  background: #F5A623;
  color: var(--blue-dark);
  padding: 14px 28px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-gold:hover { opacity: 0.88; }

.btn-white-outline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s;
  display: inline-block;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.2); }

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.trust-dot {
  width: 16px;
  height: 16px;
  background: rgba(245,166,35,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #F5A623;
  flex-shrink: 0;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar { background: var(--blue-dark); padding: 26px 0; }
.stats-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-item {
  background: var(--blue-dark);
  padding: 18px 20px;
  text-align: center;
}
.stat-num {
  font-size: 26px;
  font-weight: 700;
  color: #F5D78A;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ============================================
   SCARCITY BAR
   ============================================ */
.scarcity-bar {
  background: #FFF8EC;
  border-top: 3px solid #F5A623;
  border-bottom: 1px solid #F5E0B0;
  padding: 16px 0;
}
.scarcity-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.scarcity-left { display: flex; align-items: center; gap: 12px; }
.scarcity-icon { font-size: 22px; flex-shrink: 0; }
.scarcity-text h4 { font-size: 14px; font-weight: 600; color: var(--text); }
.scarcity-text p  { font-size: 12px; color: var(--muted); }
.states-remaining { display: flex; gap: 24px; }
.state-num .n { font-size: 24px; font-weight: 700; color: var(--gold); line-height: 1; }
.state-num .l { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; }

/* ============================================
   SECTIONS (generic)
   ============================================ */
.section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  font-weight: 600;
}
.section h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.section-intro {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================
   FREE TRIAL / OFFER
   ============================================ */
.offer-card {
  background: var(--white);
  border: 1px solid #C5D8F8;
  border-radius: 10px;
  padding: 32px;
}
.offer-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.offer-card .sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }

.offer-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.offer-step {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
}
.offer-step .sn { font-size: 24px; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.offer-step h4  { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.offer-step p   { font-size: 12px; color: var(--muted); line-height: 1.6; }
.offer-fine {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ============================================
   PROBLEM GRID
   ============================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.problem-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}
.problem-icon { font-size: 20px; margin-bottom: 10px; }
.problem-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.problem-card p  { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}
.step h4 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 4px;
  font-size: 11px;
  padding: 3px 9px;
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================
   DATA GRID
   ============================================ */
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.data-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
}
.data-card-ai {
  background: var(--blue);
  border-color: var(--blue);
}
.data-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}
.data-card-ai .data-cat { color: rgba(255,255,255,0.7); }
.data-fields { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.data-fields li {
  font-size: 12px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.data-fields li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.data-card-ai .data-fields li { color: var(--white); }
.data-card-ai .data-fields li::before { background: rgba(255,255,255,0.6); }

/* ============================================
   AI CARD
   ============================================ */
.ai-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.ai-left h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.ai-left p  { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.ai-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ai-features li { font-size: 13px; display: flex; align-items: flex-start; gap: 10px; }
.ai-icon {
  width: 26px;
  height: 26px;
  background: var(--blue-light);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.ai-feat-title { font-size: 13px; font-weight: 600; display: block; margin-bottom: 2px; }
.ai-feat-desc  { font-size: 12px; color: var(--muted); line-height: 1.5; }

.ai-right {
  background: var(--blue-pale);
  border: 1px solid #C5D8F8;
  border-radius: 8px;
  padding: 20px;
}
.ai-right h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 14px;
  font-weight: 600;
}
.ai-comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.ai-comp-row:last-child { border-bottom: none; }
.ai-comp-row .label { color: var(--muted); }
.ai-comp-row .val   { font-weight: 600; color: var(--blue); }
.ai-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ai-total .t-label { font-size: 13px; font-weight: 600; }
.ai-total .t-val   { font-size: 18px; font-weight: 700; color: var(--blue); }

/* ============================================
   SCORING / PRICING TABLE
   ============================================ */
.score-factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.score-factor {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}
.score-factor h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 8px;
  font-weight: 600;
}
.score-factor p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.tag {
  font-size: 11px;
  padding: 3px 8px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 3px;
}

.score-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.score-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 11px 14px;
  background: #F7F9FC;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.score-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #F0F4FA;
  font-size: 13px;
  vertical-align: middle;
}
.score-table tr:last-child td { border-bottom: none; }

.tier-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.t1 { background: #EFF2F5; color: #6B7A8D; }
.t2 { background: #E8F0FD; color: var(--blue-mid); }
.t3 { background: #FFF3CD; color: #956F0A; }
.t4 { background: #FFF8EC; color: var(--gold); }
.price-col   { font-size: 15px; font-weight: 700; color: var(--blue); }
.score-range { font-weight: 600; }
.est-val     { color: var(--muted); }

/* ============================================
   MONTHLY PLANS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  background: var(--white);
  position: relative;
}
.price-card.featured {
  border-color: var(--blue);
  border-width: 2px;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  padding: 3px 14px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  white-space: nowrap;
}
.plan-name {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.plan-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.plan-price sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  vertical-align: middle;
}
.plan-per-lead { font-size: 12px; color: var(--muted); margin-top: 4px; }
.plan-divider  { border: none; border-top: 1px solid var(--border); margin: 14px 0; }
.plan-features { list-style: none; }
.plan-features li {
  font-size: 13px;
  padding: 6px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 1px solid #F5F7FA;
  color: var(--text);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li .ck { color: var(--blue); flex-shrink: 0; }
.plan-btn {
  width: 100%;
  margin-top: 18px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 11px;
  border: 1px solid #C5D8F8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
}
.price-card.featured .plan-btn {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.plan-btn:hover { background: var(--blue); color: var(--white); }

/* ============================================
   COMPARISON
   ============================================ */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.comp-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}
.comp-card.us { border-color: var(--blue); border-width: 2px; }
.comp-head  { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 5px; font-weight: 500; }
.comp-title { font-size: 15px; font-weight: 600; margin-bottom: 14px; }
.comp-list  { list-style: none; }
.comp-list li {
  font-size: 13px;
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 1px solid #F5F7FA;
}
.comp-list li:last-child { border-bottom: none; }
.x-mark { color: var(--red); flex-shrink: 0; }
.ok-mark { color: var(--blue); flex-shrink: 0; }
.li-bad  { color: var(--muted); }
.li-good { color: var(--text); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testi {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}
.testi-quote {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 14px;
  font-style: italic;
}
.testi-quote::before {
  content: '\201C';
  font-size: 32px;
  color: var(--blue);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 3px;
}
.testi-person { display: flex; align-items: center; gap: 10px; }
.av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; }
.testi-firm { font-size: 12px; color: var(--muted); }
.testi-result {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 4px;
  font-size: 11px;
  padding: 3px 8px;
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  cursor: pointer;
}
.faq-q {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  color: var(--text);
}
.faq-icon { color: var(--blue); font-size: 18px; flex-shrink: 0; }
.faq-a {
  font-size: 13px;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding-top: 10px; }

/* ============================================
   CTA / SIGNUP FORM
   ============================================ */
.cta-wrap {
  background: var(--blue-dark);
  padding: 70px 0;
  text-align: center;
}
.cta-wrap h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-wrap p { font-size: 15px; color: rgba(255,255,255,0.68); margin-bottom: 32px; }

.signup-form {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.signup-form h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.form-sub { font-size: 12px; color: var(--muted); margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.form-field label { font-size: 12px; font-weight: 500; color: var(--text); }
.form-field input,
.form-field select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,93,200,0.08);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6478' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.form-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  padding: 13px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: opacity 0.2s;
  margin-top: 4px;
}
.form-submit:hover { opacity: 0.88; }
.form-note { font-size: 11px; color: var(--muted); margin-top: 10px; text-align: center; }

.powered { margin-top: 24px; font-size: 12px; color: rgba(255,255,255,0.45); }
.powered a { color: rgba(255,255,255,0.65); text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #F7F9FC;
  border-top: 1px solid var(--border);
  padding: 22px 28px;
}
.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo-icon { width: 22px; height: 22px; }
.footer-logo-text { font-size: 13px; font-weight: 600; }
.footer-logo-text .case-part  { color: var(--blue-dark); }
.footer-logo-text .check-part { color: var(--blue); }
footer p { font-size: 12px; color: var(--muted); }

/* ============================================
   RESPONSIVE — TABLET (max 860px)
   ============================================ */
@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .data-grid    { grid-template-columns: 1fr 1fr; }
  .testi-grid   { grid-template-columns: 1fr 1fr; }
  .ai-card      { grid-template-columns: 1fr; }

  .score-table { font-size: 12px; }
  .score-table th, .score-table td { padding: 9px 10px; }
  /* Hide "Example" column on tablet */
  .score-table th:nth-child(5),
  .score-table td:nth-child(5) { display: none; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================ */
@media (max-width: 640px) {
  .page { padding: 0 16px; }

  /* Nav */
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  nav { padding: 0 16px; }

  /* Hero */
  .hero { padding: 48px 0 40px; }
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-white-outline { width: 100%; text-align: center; }
  .hero-trust { flex-direction: column; gap: 10px; }

  /* Stats — 2x2 */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  /* Scarcity */
  .scarcity-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Sections */
  .section { padding: 44px 0; }

  /* Offer steps — 1 col */
  .offer-steps { grid-template-columns: 1fr; }

  /* Problem — 1 col */
  .problem-grid { grid-template-columns: 1fr; }

  /* Data — 1 col */
  .data-grid { grid-template-columns: 1fr; }

  /* Score factors — 1 col */
  .score-factors { grid-template-columns: 1fr; }

  /* Score table — minimal columns */
  .score-table th:nth-child(3),
  .score-table td:nth-child(3),
  .score-table th:nth-child(4),
  .score-table td:nth-child(4),
  .score-table th:nth-child(5),
  .score-table td:nth-child(5) { display: none; }

  /* Pricing — 1 col on mobile */
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-badge { font-size: 9px; padding: 3px 10px; }

  /* Comparison — 1 col */
  .comp-grid { grid-template-columns: 1fr; }

  /* Testimonials — 1 col */
  .testi-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .signup-form { padding: 20px 16px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}
