/* FindPrices Home v2 — hi-fi styles */
:root {
  --fp-green: #27ae60;
  --fp-green-dk: #229954;
  --fp-green-soft: #e8f7ee;
  --fp-ink: #1f1f1f;
  --fp-heading: #222;
  --fp-body: #555;
  --fp-muted: #888;
  --fp-line: #e1e4e8;
  --fp-bg: #ffffff;
  --fp-bg-alt: #f9f9f9;
  --fp-red: #e74c3c;
  --fp-amber: #f39c12;
  --fp-blue: #3498db;
  --shadow-1: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-2: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-3: 0 8px 25px rgba(0,0,0,0.10);
  --shadow-hero: 0 30px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fp-body);
  background: var(--fp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.dark {
  --fp-bg: #0a1610;
  --fp-bg-alt: #0d1f17;
  --fp-ink: #ffffff;
  --fp-heading: #ffffff;
  --fp-body: rgba(255,255,255,0.78);
  --fp-muted: rgba(255,255,255,0.55);
  --fp-line: rgba(255,255,255,0.12);
  background: var(--fp-bg);
  color: var(--fp-body);
}

img { max-width: 100%; display: block; }
a { color: var(--fp-green); text-decoration: none; }

h1, h2, h3, h4 {
  color: var(--fp-heading);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ───────── BUTTONS ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary { background: var(--fp-green); color: #fff; box-shadow: 0 4px 14px rgba(39,174,96,0.3); }
.btn-primary:hover { background: var(--fp-green-dk); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(39,174,96,0.4); }
.btn-secondary { background: transparent; color: var(--fp-heading); border-color: var(--fp-line); }
.btn-secondary:hover { border-color: var(--fp-heading); transform: translateY(-2px); }
body.dark .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.25); }
body.dark .btn-secondary:hover { border-color: rgba(255,255,255,0.6); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-xl { padding: 18px 34px; font-size: 17px; }

/* ───────── NAV ───────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--fp-line);
  transition: background 0.3s;
}
body.dark .nav { background: rgba(10,22,16,0.85); border-bottom-color: rgba(255,255,255,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 19px; letter-spacing: -0.01em;
  color: var(--fp-heading);
}
.nav-brand svg { color: var(--fp-green); }
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 500;
}
.nav-links a { color: var(--fp-body); }
.nav-links a:hover { color: var(--fp-heading); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-signin { color: var(--fp-body); font-size: 14px; font-weight: 500; }
.nav-signin:hover { color: var(--fp-heading); }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ───────── HERO ───────── */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}
body.dark .hero { background: linear-gradient(180deg, #0a1610 0%, #0d1f17 100%); }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(39,174,96,0.10), transparent 60%),
    radial-gradient(600px 300px at 10% 80%, rgba(39,174,96,0.06), transparent 60%);
  pointer-events: none;
}
body.dark .hero::before {
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(39,174,96,0.18), transparent 60%),
    radial-gradient(600px 300px at 10% 80%, rgba(39,174,96,0.10), transparent 60%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
.hero-copy { padding-top: 8px; }
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--fp-green-soft); color: var(--fp-green-dk);
  font-size: 13px; font-weight: 600;
  border-radius: 999px; letter-spacing: 0.01em;
  margin-bottom: 24px;
}
body.dark .eyebrow { background: rgba(39,174,96,0.18); color: #6fdc97; }
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 99px; background: var(--fp-green);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(39,174,96,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(39,174,96,0); }
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  margin-bottom: 22px;
  letter-spacing: -0.028em;
}
.hero h1 .accent { color: var(--fp-green); }
.hero p.lead {
  font-size: 19px; line-height: 1.6;
  color: var(--fp-body);
  margin: 0 0 30px;
  max-width: 540px;
}
.hero-cta-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-cta-meta { font-size: 14px; color: var(--fp-muted); }

.trust-row {
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
  font-size: 13px; color: var(--fp-body);
}
.trust-row strong { color: var(--fp-heading); font-weight: 700; }
.trust-row .dot { width: 4px; height: 4px; border-radius: 99px; background: var(--fp-line); }
.stars { color: #f5b945; letter-spacing: 1px; }

/* Hero visual — sidebar mock */
.hero-visual { position: relative; display: flex; justify-content: center; }

.sidebar {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  border: 1px solid rgba(0,0,0,0.06);
  font-family: 'Inter', system-ui, sans-serif;
  color: #1f1f1f;
}
.sb-header {
  background: var(--fp-green);
  color: #fff;
  height: 56px;
  padding: 0 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.sb-brand {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.4px;
}
.sb-savings { text-align: right; line-height: 1.15; }
.sb-savings-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.7px; opacity: 0.85;
  text-transform: uppercase;
}
.sb-savings-value {
  font-size: 17px; font-weight: 700; letter-spacing: -0.3px;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.sb-body { padding: 18px 16px 16px; }
.sb-cta {
  width: 100%; padding: 15px 16px;
  background: var(--fp-green); color: #fff;
  border: 0; border-radius: 8px;
  font-family: inherit; font-weight: 700; font-size: 15px;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(39,174,96,0.3);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.sb-cta-icon { flex-shrink: 0; }
.sb-toggles {
  display: flex; gap: 18px; align-items: center; justify-content: center;
  padding: 14px 4px 0;
  font-size: 13px; color: #1f1f1f;
}
.sb-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; font-weight: 500; }
.sb-check {
  width: 14px; height: 14px;
  border: 1.5px solid #d6dade; border-radius: 3px;
  background: #fff; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.sb-check.checked {
  background: var(--fp-green); border-color: var(--fp-green);
  position: relative;
}
.sb-check.checked::after {
  content: ''; width: 7px; height: 4px;
  border: 1.5px solid #fff; border-top: 0; border-right: 0;
  transform: rotate(-45deg) translate(0px, -1px);
}
.sb-info {
  width: 13px; height: 13px; border-radius: 99px;
  border: 1.5px solid #888; color: #888;
  background: transparent;
  font-size: 9px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.sb-banner {
  background: #e8f7ee;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 16px 0 12px;
  text-align: center;
  line-height: 1.4;
}
.sb-banner-eyebrow {
  font-size: 11px; font-weight: 700;
  color: var(--fp-green);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.sb-banner-amount {
  font-size: 20px; font-weight: 800;
  color: #1f1f1f;
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.sb-banner-sub {
  font-size: 11px; color: #555;
  margin-top: 2px;
}
.sb-card {
  border: 1px solid #e1e4e8;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 8px;
  background: #fff;
  position: relative;
}
.sb-card-best {
  border: 2px solid var(--fp-green);
  background: #fbfdfc;
}
.sb-best-chip {
  position: absolute; top: -8px; left: 12px;
  background: var(--fp-green); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: 0.8px;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase;
}
.sb-card-top {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.sb-store {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #1f1f1f;
  letter-spacing: -0.2px;
  flex: 1;
}
.sb-store-icon {
  width: 22px; height: 22px; border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  letter-spacing: -0.5px;
}
.sb-stock {
  background: #e8f7ee; color: #1d8348;
  font-size: 9px; font-weight: 700; letter-spacing: 0.6px;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase;
}
.sb-flag { opacity: 0.6; flex-shrink: 0; }
.sb-prod {
  font-size: 12.5px; font-weight: 500;
  color: #555; line-height: 1.45;
  margin-bottom: 12px;
}
.sb-card-bot {
  display: flex; justify-content: space-between; align-items: center;
}
.sb-price {
  font-size: 20px; font-weight: 800;
  color: #1f1f1f; letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.sb-price-best { color: var(--fp-green); }
.sb-actions { display: flex; gap: 6px; align-items: center; }
.sb-share {
  width: 28px; height: 28px; border-radius: 99px;
  background: #fff; border: 1px solid var(--fp-green);
  color: var(--fp-green);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.sb-deal {
  padding: 7px 14px;
  background: #fff; color: var(--fp-green);
  border: 1px solid var(--fp-green); border-radius: 99px;
  font-family: inherit; font-size: 12px; font-weight: 700;
  cursor: pointer;
}
.sb-deal-best {
  background: var(--fp-green); color: #fff;
  border-color: var(--fp-green);
  box-shadow: 0 2px 8px rgba(39,174,96,0.25);
}

/* Original browser mock kept for reference (unused) */
.hero-visual--legacy { position: relative; }
.browser {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  border: 1px solid rgba(0,0,0,0.06);
}
.browser-chrome {
  background: linear-gradient(180deg, #f7f7f7, #ececec);
  padding: 11px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #e1e4e8;
}
.browser-chrome .dot { width: 11px; height: 11px; border-radius: 99px; }
.browser-chrome .red { background: #ed6a5e; }
.browser-chrome .yellow { background: #f5bf4f; }
.browser-chrome .green { background: #62c554; }
.browser-url {
  flex: 1; max-width: 360px; margin-left: 14px;
  background: #fff; border: 1px solid #e1e4e8; border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px; color: #666;
  display: flex; align-items: center; gap: 6px;
}
.browser-url .lock { color: var(--fp-green); }

.product-page {
  padding: 26px 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  position: relative;
}
.product-photo {
  background: linear-gradient(135deg, #f4f4f4, #e9e9e9);
  border-radius: 10px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.product-photo svg { color: #b8b8b8; }
.product-info h4 {
  font-size: 14px; font-weight: 600; color: #333;
  margin-bottom: 6px; line-height: 1.4;
}
.product-info .brand { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.product-info .stars-line { font-size: 11px; color: #888; margin: 6px 0 14px; }
.product-info .price-amzn { font-size: 26px; font-weight: 700; color: #333; line-height: 1; }
.product-info .price-meta { font-size: 11px; color: #888; margin-top: 4px; }
.product-info .add-cart {
  margin-top: 16px;
  padding: 8px 14px; background: #ffd814; color: #0f1111;
  border-radius: 20px; font-size: 11px; text-align: center; font-weight: 500;
}

/* FindPrices overlay floating on the product page */
.fp-overlay {
  position: absolute;
  top: 14px; right: 14px;
  width: 248px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.04);
  border: 2px solid var(--fp-green);
  padding: 14px;
  font-size: 12px; color: #1f1f1f;
  animation: overlay-in 0.6s ease-out 0.4s backwards;
}
@keyframes overlay-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fp-overlay-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.fp-overlay-head .brand-mini {
  display: inline-flex; align-items: center; gap: 5px;
  font-weight: 800; font-size: 13px; color: #1f1f1f;
}
.fp-overlay-head .brand-mini svg { color: var(--fp-green); }
.fp-overlay-head .ts { font-size: 10px; color: #999; }
.fp-overlay h5 {
  font-size: 13px; font-weight: 600; color: #333;
  margin-bottom: 10px; line-height: 1.4;
}
.fp-overlay h5 em { font-style: normal; color: var(--fp-green); font-weight: 700; }
.price-pill {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px; border-radius: 999px;
  background: #fff; border: 1px solid #e1e4e8;
  margin-bottom: 6px;
  font-size: 12px;
}
.price-pill.best { background: var(--fp-green-soft); border: 1.5px solid var(--fp-green); }
.price-pill .store {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.price-pill .store-icon {
  width: 20px; height: 20px; border-radius: 4px; background: #ddd;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #555;
}
.price-pill .price { font-weight: 700; }
.price-pill .save { color: var(--fp-green); font-weight: 700; font-size: 11px; margin-left: 8px; }
.price-pill .badge { background: var(--fp-green); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 999px; letter-spacing: 0.5px; margin-left: 6px; }
.fp-overlay-cta {
  display: block; margin-top: 10px; padding: 9px 12px;
  background: var(--fp-green); color: #fff;
  border-radius: 8px; text-align: center;
  font-weight: 600; font-size: 12px;
}

/* Floating savings badge */
.savings-badge {
  position: absolute;
  bottom: -20px; left: -10px;
  padding: 12px 18px;
  background: #fff; border-radius: 12px;
  box-shadow: var(--shadow-3);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(0,0,0,0.04);
  animation: float-in 0.6s ease-out 1.2s backwards;
}
@keyframes float-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.savings-badge .icon-wrap {
  width: 36px; height: 36px; border-radius: 99px;
  background: var(--fp-green-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--fp-green);
}
.savings-badge .label { font-size: 11px; color: var(--fp-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.savings-badge .value { font-size: 16px; font-weight: 800; color: var(--fp-heading); }

/* ───────── LOGOS STRIP ───────── */
.logos-strip {
  padding: 30px 0;
  border-top: 1px solid var(--fp-line);
  border-bottom: 1px solid var(--fp-line);
}
body.dark .logos-strip { background: rgba(255,255,255,0.02); }
.logos-strip .label {
  font-size: 12px; font-weight: 600;
  color: var(--fp-muted); text-transform: uppercase; letter-spacing: 1.2px;
  text-align: center; margin-bottom: 18px;
}
.logos {
  display: flex; gap: 44px; justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.logo-word {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fp-muted);
  letter-spacing: -0.015em;
  white-space: nowrap;
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
}
.logo-word:hover { opacity: 1; color: var(--fp-heading); }
.logo-word.logo-ebay { font-style: italic; letter-spacing: -0.04em; }
.logo-more {
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 13px;
  color: var(--fp-green-dk);
  background: var(--fp-green-soft);
  padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
body.dark .logo-more { background: rgba(39,174,96,0.18); color: #6fdc97; }

/* ───────── HOW IT WORKS ───────── */
.section { padding: 90px 0; }
.section-alt { background: var(--fp-bg-alt); }
.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 50px;
}
.section-head .kicker {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--fp-green); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 14px;
  letter-spacing: -0.025em;
}
.section-head p { font-size: 18px; color: var(--fp-body); margin: 0; line-height: 1.6; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  position: relative;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; padding: 36px 32px;
  border-radius: 12px; box-shadow: var(--shadow-1);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-3); }
body.dark .step { background: rgba(255,255,255,0.04); box-shadow: none; border: 1px solid var(--fp-line); }
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 99px;
  background: var(--fp-green-soft); color: var(--fp-green);
  font-weight: 800; font-size: 18px;
  margin-bottom: 18px;
}
.step h3 { font-size: 20px; margin: 0 0 10px; color: var(--fp-heading); }
.step p { font-size: 15px; line-height: 1.6; color: var(--fp-body); margin: 0; }
.step .step-icon {
  position: absolute; top: 30px; right: 28px;
  color: var(--fp-green); opacity: 0.16;
}

/* ───────── FEATURES ───────── */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff; padding: 36px 32px;
  border-radius: 12px; box-shadow: var(--shadow-1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-3); }
body.dark .feature-card { background: rgba(255,255,255,0.04); box-shadow: none; border: 1px solid var(--fp-line); }
.feature-card .icon {
  width: 50px; height: 50px; border-radius: 8px;
  background: var(--fp-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 19px; margin: 0 0 10px; color: var(--fp-heading); }
.feature-card p { font-size: 15px; line-height: 1.65; color: var(--fp-body); margin: 0; }

/* ───────── COMPARISON TABLE ───────── */
.compare-wrap { max-width: 900px; margin: 0 auto; }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-2);
}
body.dark .compare-table { background: rgba(255,255,255,0.04); border: 1px solid var(--fp-line); box-shadow: none; }
.compare-table th, .compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--fp-line);
  font-size: 15px;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th {
  background: var(--fp-bg-alt);
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--fp-muted); font-weight: 700;
}
body.dark .compare-table thead th { background: rgba(255,255,255,0.06); }
.compare-table thead th.us {
  color: var(--fp-green); background: var(--fp-green-soft);
}
body.dark .compare-table thead th.us { background: rgba(39,174,96,0.18); }
.compare-table .row-label { font-weight: 600; color: var(--fp-heading); }
.compare-table .col-us { background: rgba(39,174,96,0.05); border-left: 2px solid var(--fp-green); border-right: 2px solid var(--fp-green); }
.compare-table tbody tr:last-child .col-us { border-bottom: 2px solid var(--fp-green); }
.compare-table .yes { color: var(--fp-green); font-weight: 700; }
.compare-table .no { color: var(--fp-red); font-weight: 600; }
.compare-table .check { display: inline-flex; align-items: center; gap: 6px; }

/* ───────── LIVE SAVINGS ───────── */
.live-savings-feed { max-width: 760px; margin: 0 auto; }
.live-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  background: #fff; border: 1px solid var(--fp-line); border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-1);
}
body.dark .live-row { background: rgba(255,255,255,0.05); }
.live-row .left { display: flex; gap: 14px; align-items: center; }
.live-row .pulse {
  width: 9px; height: 9px; border-radius: 99px; background: var(--fp-green);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.live-row .who { font-size: 15px; font-weight: 600; color: var(--fp-heading); }
.live-row .who .save { color: var(--fp-green); }
.live-row .what { font-size: 13px; color: var(--fp-muted); margin-top: 2px; }
.live-row .verified {
  font-size: 12px; color: var(--fp-green); font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--fp-green-soft); padding: 4px 10px; border-radius: 99px;
}
body.dark .live-row .verified { background: rgba(39,174,96,0.18); }

/* ───────── SOCIAL PROOF (green band) ───────── */
.social-proof {
  background: linear-gradient(135deg, var(--fp-green) 0%, var(--fp-green-dk) 100%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.social-proof h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  margin: 0 auto 50px;
  max-width: 880px;
  letter-spacing: -0.02em;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px;
  max-width: 800px; margin: 0 auto;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; gap: 30px; } }
.stat .v { font-size: 56px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; }
.stat .l { font-size: 15px; opacity: 0.9; font-weight: 500; }
.social-proof .footnote {
  font-size: 14px; opacity: 0.8; margin-top: 30px;
}
.social-proof .footnote a { color: #fff; text-decoration: underline; }

/* ───────── REVIEWS ───────── */
.reviews { display: grid; grid-template-columns: minmax(0, 620px); gap: 24px; justify-content: center; }
.review {
  background: #fff; padding: 32px 30px;
  border-radius: 12px; box-shadow: var(--shadow-1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-3); }
body.dark .review { background: rgba(255,255,255,0.04); box-shadow: none; border: 1px solid var(--fp-line); }
.review .stars { font-size: 14px; margin-bottom: 14px; }
.review .quote { font-size: 16px; line-height: 1.65; color: var(--fp-heading); margin: 0 0 22px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar {
  width: 40px; height: 40px; border-radius: 99px;
  background: linear-gradient(135deg, var(--fp-green), var(--fp-green-dk));
  color: #fff; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.review .name { font-size: 14px; font-weight: 600; color: var(--fp-heading); }
.review .meta { font-size: 12px; color: var(--fp-muted); }

/* ───────── FOUNDER NOTE ───────── */
.founder-wrap { max-width: 880px; margin: 0 auto; }
.founder {
  background: #fff;
  border-radius: 14px;
  border-left: 5px solid var(--fp-green);
  padding: 40px;
  display: grid; grid-template-columns: 100px 1fr; gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-2);
}
body.dark .founder { background: rgba(255,255,255,0.04); box-shadow: none; }
@media (max-width: 700px) { .founder { grid-template-columns: 1fr; text-align: center; } }
.founder-photo {
  width: 100px; height: 100px; border-radius: 99px; overflow: hidden;
  background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .founder-photo { margin: 0 auto; } }
.founder .label { font-size: 13px; font-weight: 600; color: var(--fp-green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.founder p { font-size: 18px; line-height: 1.65; color: var(--fp-heading); margin: 0 0 12px; font-style: italic; }
.founder .signoff { font-size: 14px; color: var(--fp-body); font-weight: 500; font-style: normal; }

/* ───────── FAQ ───────── */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 10px; padding: 22px 26px;
  margin-bottom: 12px; cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.2s;
}
body.dark .faq-item { background: rgba(255,255,255,0.04); box-shadow: none; border: 1px solid var(--fp-line); }
.faq-item:hover { box-shadow: var(--shadow-2); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; color: var(--fp-heading);
}
.faq-q .plus {
  width: 28px; height: 28px; border-radius: 99px; flex-shrink: 0;
  background: var(--fp-green-soft); color: var(--fp-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  transition: transform 0.3s, background 0.3s;
}
body.dark .faq-q .plus { background: rgba(39,174,96,0.2); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--fp-green); color: #fff; }
.faq-a {
  font-size: 15px; line-height: 1.6; color: var(--fp-body);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, margin-top 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; margin-top: 14px; }

/* ───────── CTA SECTION ───────── */
.final-cta {
  text-align: center;
  padding: 100px 0 110px;
  position: relative;
  background:
    radial-gradient(600px 300px at 50% 100%, rgba(39,174,96,0.10), transparent 70%);
}
body.dark .final-cta {
  background:
    radial-gradient(600px 300px at 50% 100%, rgba(39,174,96,0.18), transparent 70%);
}
.final-cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 18px;
  letter-spacing: -0.028em;
}
.final-cta p {
  font-size: 19px; color: var(--fp-body);
  max-width: 580px; margin: 0 auto 32px;
}

/* ───────── FOOTER ───────── */
footer {
  background: #1a1a1a; color: #fff;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .nav-brand { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.7); margin: 14px 0 18px; max-width: 320px; }
.footer-brand .addr { font-size: 13px; line-height: 1.6; opacity: 0.6; }
footer h4 {
  color: #fff; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin: 0 0 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(255,255,255,0.7); font-size: 14px; }
footer ul a:hover { color: #fff; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
@media (max-width: 700px) { .footer-copy { flex-direction: column; gap: 12px; } }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1000px) {
  .hero { padding: 50px 0 70px; }
  .section { padding: 60px 0; }
  .savings-badge { display: none; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
  .hero p.lead { font-size: 17px; }
  .product-page { grid-template-columns: 1fr; }
  .fp-overlay { position: static; margin-top: 16px; width: auto; }
}
