/* =====================
   VARIABLES & RESET
   ===================== */
:root {
  --bg: #080F1C;
  --surface: #0D1929;
  --surface-2: #111F33;
  --border: #1a3050;
  --amber: #E8A838;
  --amber-dim: rgba(232, 168, 56, 0.12);
  --amber-glow: rgba(232, 168, 56, 0.06);
  --text: #E2EAF4;
  --text-muted: #6B839E;
  --text-dim: #3D5877;
  --grade-a: #4ADE80;
  --grade-ap: #67E07A;
  --grade-b: #E8A838;
  --grade-c: #F59E0B;
  --grade-d: #9CA3AF;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; }

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

/* =====================
   HEADER
   ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 15, 28, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--text); }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  width: 260px;
}

.stat-card {
  padding: 1.25rem 1.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-divider {
  height: 1px;
  background: var(--border);
  margin: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(232,168,56,0.2);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pill {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
}

/* =====================
   SECTION HEADER
   ===================== */
.section-header {
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-sub {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* =====================
   HOW SECTION
   ===================== */
.how {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: grid;
  grid-template-columns: 80px 1fr 300px;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.how-step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
}

.step-body {}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* county data visual */
.county-data {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.data-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.data-val {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
}

.data-val.amber { color: var(--amber); }

/* score panel */
.score-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.score-bar {
  display: grid;
  grid-template-columns: 32px 1fr 36px;
  align-items: center;
  gap: 0.75rem;
}

.score-grade {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  width: 32px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grade-a { background: rgba(74,222,128,0.15); color: var(--grade-a); }
.grade-b { background: var(--amber-dim); color: var(--amber); }
.grade-c { background: rgba(245,158,11,0.12); color: var(--grade-c); }
.grade-d { background: rgba(156,163,175,0.1); color: var(--grade-d); }

.score-fill {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
}

.fill-a { width: 92%; background: linear-gradient(90deg, var(--grade-a), rgba(74,222,128,0.4)); }
.fill-b { width: 78%; background: linear-gradient(90deg, #8BC34A, rgba(139,195,74,0.4)); }
.fill-c { width: 54%; background: linear-gradient(90deg, var(--grade-c), rgba(245,158,11,0.4)); }
.fill-d { width: 31%; background: var(--text-dim); }

.score-pct {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
}

.score-bar.muted { opacity: 0.5; }

/* lead delivery visual */
.lead-delivery {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.78rem;
}

.deliv-row {
  display: grid;
  grid-template-columns: 28px 1fr 52px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.deliv-row:last-child { border-bottom: none; }
.deliv-row.top { background: var(--amber-glow); }
.deliv-row.fade { opacity: 0.5; }

.deliv-grade {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  width: 28px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deliv-addr { color: var(--text); font-weight: 500; }
.deliv-yield {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--amber);
  text-align: right;
}

/* =====================
   LOOP SECTION
   ===================== */
.loop-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.loop-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.loop-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.loop-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.loop-diagram {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ld-node {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.ld-agent { border-color: rgba(232,168,56,0.25); color: var(--text); }

.ld-arrow {
  flex-shrink: 0;
  opacity: 0.5;
}

/* =====================
   LEAD TABLE
   ===================== */
.leadboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.lead-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 2rem;
}

.lt-head {
  display: grid;
  grid-template-columns: 60px 1fr 120px 100px 110px 90px;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lt-row {
  display: grid;
  grid-template-columns: 60px 1fr 120px 100px 110px 90px;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}

.lt-row:last-child { border-bottom: none; }
.lt-row:hover { background: var(--surface-2); }
.lt-row.lt-top { background: var(--amber-glow); }

.lt-grade {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  width: 36px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-grade.grade-a { background: rgba(74,222,128,0.15); color: var(--grade-a); }
.lt-grade.grade-ap { background: rgba(103,224,122,0.12); color: var(--grade-ap); }
.lt-grade.grade-bp { background: rgba(139,195,74,0.12); color: #8BC34A; }
.lt-grade.grade-b { background: var(--amber-dim); color: var(--amber); }

.lt-prop { display: flex; flex-direction: column; }
.lt-addr { font-weight: 500; font-size: 0.9rem; }
.lt-city { font-size: 0.75rem; color: var(--text-muted); }

.lt-county { font-size: 0.85rem; color: var(--text-muted); }

.lt-tax, .lt-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.lt-yield {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--amber);
}

.leadboard-note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
}

/* =====================
   CLOSING
   ===================== */
.closing-section {
  padding: 7rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center top, rgba(232,168,56,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* =====================
   PRODUCTS SECTION
   ===================== */
.products-section {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: rgba(232,168,56,0.25);
  box-shadow: 0 0 24px rgba(232,168,56,0.05);
}

.product-card--featured {
  border-color: rgba(232,168,56,0.35);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(232,168,56,0.04) 100%);
}

.product-card--featured:hover {
  border-color: rgba(232,168,56,0.5);
  box-shadow: 0 0 32px rgba(232,168,56,0.08);
}

.product-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--amber);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 6px 6px;
}

.product-icon {
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.product-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--amber);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-benefits li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.product-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.7;
}

.product-card--featured .product-benefits li::before {
  opacity: 1;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-stats {
    flex-direction: row;
    width: 100%;
  }

  .stat-card { flex: 1; }
  .stat-divider { width: 1px; height: auto; margin: 1.5rem 0; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-step {
    grid-template-columns: 40px 1fr;
    gap: 1.5rem;
  }

  .step-visual { display: none; }

  .loop-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lt-head, .lt-row {
    grid-template-columns: 48px 1fr 80px;
  }

  .lt-head span:nth-child(n+4),
  .lt-row > *:nth-child(n+4) { display: none; }
}

/* ======== CONTACT SECTION ======== */
.contact-section {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  margin-top: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--amber-dim);
  border: 1px solid rgba(232,168,56,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(232,168,56,0.5);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-submit {
  padding: 0.75rem 2rem;
  background: var(--amber);
  color: #080F1C;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-submit:hover { background: #d49630; }
.contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-success {
  font-size: 0.8rem;
  color: #4ADE80;
}

.contact-error {
  font-size: 0.8rem;
  color: #f87171;
}

/* ======== EMAIL SIGNUP FORM ======== */
.signup-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.signup-form input {
  flex: 1;
  min-width: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.signup-form input::placeholder {
  color: var(--text-dim);
}

.signup-form input:focus {
  outline: none;
  border-color: rgba(232,168,56,0.5);
}

.signup-form button {
  padding: 0.75rem 2rem;
  background: var(--amber);
  color: #080F1C;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.signup-form button:hover { background: #d49630; }

.signup-success {
  font-size: 0.8rem;
  color: #4ADE80;
}

.signup-error {
  font-size: 0.8rem;
  color: #f87171;
}

/* ======== TRIAL PRICING CARD ======== */
.pricing-card--trial {
  border-color: rgba(232,168,56,0.25);
}

.pricing-badge--trial {
  background: rgba(232,168,56,0.15);
  color: var(--amber);
  border: 1px solid rgba(232,168,56,0.25);
}

.pricing-btn--trial {
  background: var(--surface-2);
  color: var(--amber);
  border: 1px solid rgba(232,168,56,0.4);
}

.pricing-btn--trial:hover {
  background: rgba(232,168,56,0.1);
}

/* ======== PRICING SECTION ======== */
.pricing-section {
  padding: 5rem 0 0;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  border-color: rgba(232,168,56,0.3);
  box-shadow: 0 0 20px rgba(232,168,56,0.06);
}

.pricing-card--bundle {
  border-color: rgba(232,168,56,0.4);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(232,168,56,0.06) 100%);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--amber);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 0 0 6px 6px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  text-align: left;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.25rem 0;
}

.pricing-features li::before {
  content: '— ';
  color: var(--amber);
  opacity: 0.6;
}

.pricing-btn {
  display: block;
  margin-top: auto;
  padding: 0.65rem 1rem;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}

.pricing-btn:hover {
  background: #d49630;
  transform: translateY(-1px);
}

.pricing-btn--bundle {
  background: var(--text);
  color: var(--bg);
}

.pricing-btn--bundle:hover {
  background: #d4dae3;
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .how { padding: 3rem 1.5rem; }
  .leadboard { padding: 3rem 1.5rem; }
  .closing-section { padding: 5rem 1.5rem 4rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }

  .header-nav { display: none; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .stat-card { min-width: 50%; }
  .stat-divider { min-width: 100%; height: 1px; margin: 0; }

  .contact-card { grid-template-columns: 1fr; gap: 2rem; padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* =====================
   BUTTONS (GLOBAL)
   ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--amber);
  color: #080F1C;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #d49630; transform: translateY(-1px); }

.btn-primary--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(232,168,56,0.4); color: var(--amber); }

.btn-ghost--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 10px;
}

/* =====================
   LIVE DOT ANIMATION
   ===================== */
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* =====================
   SECTION HEADER CENTERED
   ===================== */
.section-header--center {
  text-align: center;
}
.section-header--center .section-sub {
  margin: 1rem auto 0;
}

/* =====================
   HERO (REDESIGNED)
   ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_181994/64e3c57c-dbca-4c4b-bfe3-422efb630103.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: grayscale(30%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,15,28,0.97) 0%,
    rgba(8,15,28,0.88) 40%,
    rgba(8,15,28,0.75) 100%
  );
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,168,56,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,56,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}

.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  background: rgba(232,168,56,0.1);
  border: 1px solid rgba(232,168,56,0.2);
  padding: 6px 14px;
  border-radius: 100px;
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.headline-accent {
  color: var(--amber);
  position: relative;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.trust-sep {
  color: var(--text-dim);
  font-size: 0.7rem;
}

/* Hero sidebar */
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.live-counters {
  background: rgba(13, 25, 41, 0.8);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.counter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.counter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.counter-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}

.counter-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.counter-val.amber { color: var(--amber); }

.counter-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Quick product list */
.hero-quick-products {
  background: rgba(13, 25, 41, 0.8);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
}

.qp-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}

.qp-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.qp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.qp-item--bundle {
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.qp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.qp-dot--gold { background: var(--amber); }
.qp-dot--dim { background: var(--text-dim); }
.qp-dot--bundle { background: var(--text); }

.qp-name {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.qp-item--bundle .qp-name { color: var(--text); font-weight: 500; }

.qp-price {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}
.qp-item--bundle .qp-price { color: var(--text); }

/* ======== REDESIGNED HERO LAYOUT ======== */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.hero-pill:hover {
  color: var(--text);
  border-color: var(--amber);
}

.hero-pill--active {
  color: var(--amber);
  border-color: rgba(232,168,56,0.35);
  background: rgba(232,168,56,0.06);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-cta-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  background: var(--amber);
  color: #080F1C;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
}
.hero-cta-primary:hover { background: #d49630; transform: translateY(-1px); }

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.hero-cta-secondary:hover { border-color: rgba(232,168,56,0.4); color: var(--text); }

/* Consumer CTA — AIEVR hook */
.hero-consumer-row {
  margin-bottom: 1.5rem;
}
.hero-consumer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  background: rgba(232,168,56,0.06);
  border: 1px solid rgba(232,168,56,0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  transition: border-color 0.2s, color 0.2s;
}
.hero-consumer-cta:hover { border-color: rgba(232,168,56,0.5); color: var(--text); }
.hero-consumer-cta strong { color: var(--amber); font-weight: 700; }

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-item--total {
  /* slightly larger gap to emphasize this is the primary stat */
}

.trust-val {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Total properties — biggest, most prominent */
.trust-val--total {
  font-size: 3.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 30px rgba(232,168,56,0.35);
}

/* mobile */
@media (max-width: 767px) {
  .trust-val--total {
    font-size: 2.5rem;
  }
}

.trust-val--live {
  transition: transform 0.3s ease;
}

.trust-val--live.pulse {
  animation: counter-pulse 0.4s ease-out;
}

@keyframes counter-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); color: #fff; }
  100% { transform: scale(1); }
}

.trust-val.updated {
  animation: counter-pulse 0.4s ease-out;
}

.counter-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.counter-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.counter-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,168,56,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(232,168,56,0); }
}

.trust-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero counter card */
.hero-counter-card {
  background: rgba(13, 25, 41, 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.counter-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.counter-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.counter-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.counter-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.counter-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.counter-county {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cc-name {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cc-count {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
}

/* Hero score preview */
.hero-score-preview {
  background: rgba(13, 25, 41, 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
}

.sp-header {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}

.sp-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.sp-grade {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.sp-grade--a {
  background: rgba(74,222,128,0.15);
  color: #4ADE80;
  border: 1px solid rgba(74,222,128,0.3);
}

.sp-info { flex: 1; }

.sp-addr {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.sp-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sp-detail span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.sp-detail strong { color: var(--text); font-weight: 600; }

/* Clickable card + subscribe CTA */
.hero-score-preview--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.15s;
}
.hero-score-preview--link:hover {
  border-color: var(--amber);
  box-shadow: 0 0 20px rgba(232,168,56,0.12);
  transform: translateY(-2px);
}
.sp-subscribe-cta {
  margin-top: 0.875rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.hero-score-preview--link:hover .sp-subscribe-cta {
  color: #fff;
}

/* ======== HEADER CTA ======== */
.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background: var(--amber);
  color: #080F1C;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.2s;
  white-space: nowrap;
}
.header-cta:hover { background: #d49630; }

/* ======== CATEGORY GRID ======== */
.category-intro { margin-bottom: 2.5rem; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.category-card:hover {
  border-color: rgba(232,168,56,0.25);
  box-shadow: 0 0 20px rgba(232,168,56,0.05);
}

.cat-icon {
  width: 40px;
  height: 40px;
  background: var(--amber-dim);
  border: 1px solid rgba(232,168,56,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-body { flex: 1; }

.cat-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.cat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.cat-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-top: auto;
}
.cat-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ======== DEAL OF THE WEEK ======== */
.dow-section {
  margin-bottom: 5rem;
}

.dow-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.dow-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dow-countdown {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
}

.dow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dow-photo-wrap {
  position: relative;
  min-height: 280px;
}

.dow-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dow-grade-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  background: rgba(74,222,128,0.18);
  color: #4ADE80;
  border: 2px solid rgba(74,222,128,0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.dow-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dow-address-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.dow-addr {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.dow-city {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dow-auction-date { text-align: right; }

.dad-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.dad-val {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.dow-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dow-metric {}

.dow-metric-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.dow-metric-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.dow-metric-val--amber { color: var(--amber); }
.dow-metric-val--green { color: #4ADE80; }

.dow-equity-bar {}

.dow-eq-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.dow-eq-bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.eq-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber) 0%, #4ADE80 100%);
  border-radius: 3px;
}

.dow-eq-calc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.eq-part {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.eq-result {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #4ADE80;
}

/* ======== PRICING CARDS (new) ======== */
.pricing-intro { margin-bottom: 2.5rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  border-color: rgba(232,168,56,0.3);
  box-shadow: 0 0 24px rgba(232,168,56,0.05);
}

.pricing-card--bundle {
  border-color: rgba(232,168,56,0.4);
  background: linear-gradient(145deg, var(--surface) 0%, rgba(232,168,56,0.05) 100%);
}

.pricing-card--trial {
  border-color: rgba(232,168,56,0.2);
}

.pc-badge {
  position: absolute;
  top: -1px;
  right: 1.25rem;
  background: var(--amber);
  color: #080F1C;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}

.pc-badge--trial {
  background: rgba(232,168,56,0.12);
  color: var(--amber);
  border: 1px solid rgba(232,168,56,0.25);
}

.pc-header { display: flex; flex-direction: column; gap: 0.25rem; }

.pc-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pc-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pc-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pc-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.pc-features li {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.pc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.7;
}

.pc-btn {
  display: block;
  margin-top: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--amber);
  color: #080F1C;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
}
.pc-btn:hover { background: #d49630; transform: translateY(-1px); }

.pc-btn--bundle {
  background: var(--text);
  color: #080F1C;
}
.pc-btn--bundle:hover { background: #d4dae3; }

.pc-btn--trial {
  background: var(--surface-2);
  color: var(--amber);
  border: 1px solid rgba(232,168,56,0.35);
}
.pc-btn--trial:hover { background: rgba(232,168,56,0.08); }

/* ======== RESPONSIVE ======== */
@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .dow-card { grid-template-columns: 1fr; }
  .dow-photo-wrap { min-height: 220px; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { padding-top: 0; }
  .hero-trust-row { flex-wrap: wrap; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .dow-card { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .category-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .dow-address-row { flex-direction: column; gap: 0.5rem; }
  .dow-auction-date { text-align: left; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-cta-secondary { width: 100%; justify-content: center; }
}

/* County pills */
.hero-counties {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 2rem auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.counties-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.county-pill {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(13,25,41,0.7);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  backdrop-filter: blur(4px);
}

/* =====================
   PRODUCTS SECTION (REDESIGNED)
   ===================== */
.products-section {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 4rem;
}

.product-card-new {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product-card-new:hover {
  border-color: rgba(232,168,56,0.3);
  box-shadow: 0 0 28px rgba(232,168,56,0.06);
}

.product-card-new--featured {
  border-color: rgba(232,168,56,0.4);
  background: linear-gradient(145deg, var(--surface) 0%, rgba(232,168,56,0.04) 100%);
}

.pc-badge {
  position: absolute;
  top: -1px;
  right: 1.25rem;
  background: var(--amber);
  color: #080F1C;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}

.pc-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pc-icon {
  width: 36px;
  height: 36px;
  background: var(--amber-dim);
  border: 1px solid rgba(232,168,56,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pc-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.pc-tagline {
  font-size: 0.82rem;
  color: var(--amber);
  line-height: 1.5;
  font-weight: 500;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pc-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.pc-features li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.pc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.6;
}

.pc-cta {
  display: block;
  text-align: center;
  padding: 0.65rem;
  background: var(--surface-2);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s;
  margin-top: auto;
}
.pc-cta:hover {
  border-color: rgba(232,168,56,0.4);
  color: var(--amber);
}

.pc-cta--featured {
  background: var(--amber);
  color: #080F1C;
  border-color: var(--amber);
}
.pc-cta--featured:hover {
  background: #d49630;
  color: #080F1C;
}

/* Deal of the Week */
.deal-of-week {
  background: var(--surface);
  border: 1px solid rgba(232,168,56,0.35);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 0 40px rgba(232,168,56,0.05);
}

.dow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(232,168,56,0.06);
  border-bottom: 1px solid rgba(232,168,56,0.12);
}

.dow-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dow-countdown {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

.dow-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dow-address {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dow-grade {
  width: 44px;
  height: 36px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.dow-grade.grade-a { background: rgba(74,222,128,0.15); color: var(--grade-a); }

.dow-addr {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.dow-city {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.dow-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.dow-metric {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.dow-metric-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.dow-metric-val.amber { color: var(--amber); }

.dow-metric-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.dow-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.dow-calc {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.calc-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.calc-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.calc-val {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.calc-val.amber { color: var(--amber); }

.calc-item--result {
  background: rgba(232,168,56,0.08);
  border: 1px solid rgba(232,168,56,0.2);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

.dow-cta {
  padding: 0.65rem 1.5rem;
  background: var(--amber);
  color: #080F1C;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s;
}
.dow-cta:hover { background: #d49630; }

/* Pricing section (new) */
.pricing-section {
  padding: 0;
}

.pricing-grid-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing-section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.pricing-section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

.pricing-card-new {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card-new:hover {
  border-color: rgba(232,168,56,0.3);
  box-shadow: 0 0 24px rgba(232,168,56,0.05);
}

.pricing-card-new--bundle {
  border-color: rgba(232,168,56,0.4);
  background: linear-gradient(145deg, var(--surface) 0%, rgba(232,168,56,0.05) 100%);
}

.pricing-card-new--trial {
  border-color: rgba(232,168,56,0.2);
}

.pricing-badge-new {
  position: absolute;
  top: -1px;
  right: 1.25rem;
  background: var(--amber);
  color: #080F1C;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 0 0 6px 6px;
}

.pricing-badge-new--trial {
  background: rgba(232,168,56,0.15);
  color: var(--amber);
  border: 1px solid rgba(232,168,56,0.25);
  border-top: none;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pricing-amount span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features-new {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.pricing-features-new li {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pricing-btn-new {
  display: block;
  text-align: center;
  padding: 0.7rem 1rem;
  background: var(--amber);
  color: #080F1C;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
  margin-top: auto;
}
.pricing-btn-new:hover { background: #d49630; transform: translateY(-1px); }

.pricing-btn-new--bundle {
  background: var(--text);
  color: #080F1C;
}
.pricing-btn-new--bundle:hover { background: #d4dae3; }

.pricing-btn-new--trial {
  background: var(--surface-2);
  color: var(--amber);
  border: 1px solid rgba(232,168,56,0.35);
}
.pricing-btn-new--trial:hover { background: rgba(232,168,56,0.1); }

/* ======== CHECKOUT CONFIRMATION MODAL ======== */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.checkout-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.checkout-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}
.checkout-close:hover { color: var(--text); }

.checkout-icon {
  width: 56px;
  height: 56px;
  background: var(--amber-dim);
  border: 1px solid rgba(232,168,56,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.checkout-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.checkout-details {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}
.checkout-row + .checkout-row { border-top: 1px solid var(--border); }

.checkout-label { font-size: 0.8rem; color: var(--text-muted); }

.checkout-value {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.checkout-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.checkout-delivery {
  font-size: 0.75rem;
  color: var(--amber);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.checkout-field { margin-bottom: 1rem; }

.checkout-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.checkout-field input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.checkout-field input:focus { outline: none; border-color: rgba(232,168,56,0.5); }
.checkout-field input::placeholder { color: var(--text-dim); }

.checkout-confirm {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--amber);
  color: #080F1C;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 0.75rem;
}
.checkout-confirm:hover { background: #d49630; }
.checkout-confirm:disabled { opacity: 0.6; cursor: not-allowed; }

.checkout-cancel {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.checkout-cancel:hover { border-color: rgba(232,168,56,0.3); color: var(--text); }

/* =====================
   LEADBOARD (REDESIGNED)
   ===================== */
.leadboard {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.leadboard-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lead-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 0.25rem;
}

.filter-btn {
  padding: 5px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn.active, .filter-btn:hover {
  border-color: rgba(232,168,56,0.4);
  color: var(--amber);
  background: rgba(232,168,56,0.08);
}

.filter-grade {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.filter-chip {
  width: 26px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
}
.filter-chip.grade-a { background: rgba(74,222,128,0.12); color: var(--grade-a); }
.filter-chip.grade-b { background: var(--amber-dim); color: var(--amber); }
.filter-chip.grade-c { background: rgba(245,158,11,0.1); color: var(--grade-c); }

/* Lead table */
.lead-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.lt-head {
  display: grid;
  grid-template-columns: 56px 1fr 130px 100px 110px 90px;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lt-body {}

.lt-row {
  display: grid;
  grid-template-columns: 56px 1fr 130px 100px 110px 90px;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}
.lt-row:last-child { border-bottom: none; }
.lt-row:hover { background: var(--surface-2); }
.lt-row.lt-top { background: rgba(232,168,56,0.04); }
.lt-row.lt-row--c { opacity: 0.75; }

.lt-head > span:nth-child(n+4),
.lt-row > *:nth-child(n+4) {
  text-align: right;
}

.lt-head > span,
.lt-row > div {
  display: flex;
  align-items: center;
}

.lt-grade {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  width: 38px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lt-grade.grade-a { background: rgba(74,222,128,0.15); color: var(--grade-a); }
.lt-grade.grade-bp { background: rgba(103,224,122,0.12); color: #67E07A; }
.lt-grade.grade-b { background: var(--amber-dim); color: var(--amber); }
.lt-grade.grade-c { background: rgba(245,158,11,0.1); color: var(--grade-c); }

.lt-prop { display: flex; flex-direction: column; gap: 0.15rem; }
.lt-addr { font-weight: 600; font-size: 0.875rem; color: var(--text); }
.lt-city { font-size: 0.72rem; color: var(--text-muted); }

.lt-county { font-size: 0.82rem; color: var(--text-muted); }

.lt-tax, .lt-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  text-align: right;
}

.lt-yield {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--amber);
  text-align: right;
}

.leadboard-disclaimer {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
}

/* =====================
   CLOSING (REDESIGNED)
   ===================== */
.closing-section {
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse at center top, rgba(232,168,56,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.75rem;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 auto 2.5rem;
}

.closing-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.closing-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-sidebar { max-width: 500px; }
  .counter-grid { grid-template-columns: repeat(4, 1fr); }
  .product-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .dow-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-headline { font-size: 2.25rem; }
  .hero-sidebar { display: none; }
  .product-cards-grid { grid-template-columns: 1fr 1fr; }
  .lt-head { grid-template-columns: 48px 1fr 90px; }
  .lt-row { grid-template-columns: 48px 1fr 90px; }
  .lt-head span:nth-child(n+4),
  .lt-row > *:nth-child(n+4) { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 3.5rem 1.25rem 2.5rem; }
  .hero-headline { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; text-align: center; }
  .product-cards-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-section { padding: 5rem 1.25rem 4rem; }
  .closing-ctas { flex-direction: column; }
  .closing-ctas a { width: 100%; text-align: center; }
  .signup-form { flex-direction: column; align-items: stretch; }
  .signup-form input { width: 100%; }
  .dow-metrics { grid-template-columns: repeat(2, 1fr); }
  .dow-footer { flex-direction: column; align-items: flex-start; }
  .dow-calc { flex-wrap: wrap; }
  .filter-grade { display: none; }
}