/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.6; color: #111827;
  background: #fff; -webkit-text-size-adjust: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── VARIABLES ─────────────────────────────────────── */
:root {
  --blue: #1A56DB; --blue-dark: #1341b5; --blue-light: #EFF6FF;
  --green: #059669; --green-light: #D1FAE5;
  --yellow-light: #FEF9C3; --red-light: #FEE2E2;
  --gray-50: #F9FAFB; --gray-100: #F3F4F6; --gray-200: #E5E7EB;
  --gray-400: #9CA3AF; --gray-500: #6B7280; --gray-700: #374151;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1);
}

/* ── LAYOUT ────────────────────────────────────────── */
.container { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 16px; }
.section { padding: 48px 0; }
.section-sm { padding: 32px 0; }
.bg-gray { background: var(--gray-50); }

/* ── NAV ───────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--gray-200);
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-weight: 800; font-size: 18px; color: var(--blue); }
.nav-logo span { color: #111827; }
.nav-cta {
  background: var(--blue); color: #fff;
  padding: 8px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
}

/* ── STICKY BOTTOM BAR ─────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--blue); padding: 14px 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}
.sticky-bar p { color: #fff; font-size: 14px; font-weight: 600; }
.sticky-bar a {
  background: #fff; color: var(--blue);
  padding: 9px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 700; white-space: nowrap;
}

/* ── DISCLAIMER BAR ────────────────────────────────── */
.disclaimer-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  padding: 10px 16px; text-align: center;
  font-size: 11px; color: var(--gray-500);
}

/* ── SECTION HEADINGS ──────────────────────────────── */
.section-label {
  font-size: 12px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 8px; text-align: center; display: block;
}
.section-title {
  font-size: clamp(22px, 5vw, 30px); font-weight: 800;
  text-align: center; margin-bottom: 10px; line-height: 1.2;
}
.section-sub {
  font-size: 15px; color: var(--gray-500);
  text-align: center; margin-bottom: 32px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}

/* ── REVIEW HERO ───────────────────────────────────── */
.review-hero {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 100%);
  padding: 40px 16px 36px; text-align: center;
}
.back-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 20px;
}
.review-hero h1 {
  font-size: clamp(26px, 7vw, 38px);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 10px; color: #111827;
}
.review-hero p { font-size: 16px; color: var(--gray-500); margin-bottom: 20px; }
.badge-row {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.badge {
  padding: 4px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
}
.badge-green { background: var(--green-light); color: var(--green); }
.badge-blue  { background: var(--blue-light);  color: var(--blue);  }
.badge-yellow{ background: var(--yellow-light); color: #92400E; }

/* ── STATS GRID ────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 28px 0 0;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.stat-label { font-size: 11px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.stat-value { font-size: 16px; font-weight: 800; color: #111827; }
.stat-value.good { color: var(--green); }
.stat-value.warn { color: #D97706; }

/* ── REVIEW BODY TEXT ──────────────────────────────── */
.body-text {
  font-size: 15px; color: var(--gray-700); line-height: 1.75; margin-bottom: 14px;
}

/* ── HOW IT WORKS STEPS ────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 16px;
  box-shadow: var(--shadow);
}
.step-num {
  flex-shrink: 0; width: 38px; height: 38px;
  background: var(--blue); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
}
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step p  { font-size: 13px; color: var(--gray-500); }

/* ── PROS & CONS ───────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 12px; }
.pros-box, .cons-box {
  border-radius: var(--radius); padding: 18px;
}
.pros-box { background: var(--green-light); border: 1px solid #6EE7B7; }
.cons-box { background: var(--red-light); border: 1px solid #FCA5A5; }
.pros-box h3 { color: #065F46; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.cons-box h3 { color: #991B1B; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.pc-list { list-style: none; padding: 0; }
.pc-list li {
  font-size: 13px; color: #111827; padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.pc-list li:last-child { border-bottom: none; }

/* ── BEST FOR SECTION ──────────────────────────────── */
.best-for-card {
  background: linear-gradient(135deg, var(--blue-light), #F0FDF4);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius); padding: 20px;
  margin-top: 12px;
}
.best-for-card h3 { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.best-for-card p { font-size: 14px; color: var(--gray-700); line-height: 1.65; }

/* ── POLICY / DISCLOSURE BOX ───────────────────────── */
.policy-box {
  background: var(--yellow-light);
  border: 1px solid #FDE68A; border-left: 4px solid #F59E0B;
  border-radius: var(--radius); padding: 16px 18px;
  font-size: 13px; color: #92400E; line-height: 1.65;
}

/* ── CTA BUTTON ────────────────────────────────────── */
.cta-btn {
  display: block; width: 100%;
  background: var(--blue); color: #fff;
  padding: 16px 24px; border-radius: 10px;
  font-size: 16px; font-weight: 700;
  text-align: center; cursor: pointer; border: none;
  transition: background .2s;
}
.cta-btn:hover { background: var(--blue-dark); }
.cta-btn.outline {
  background: transparent; border: 2px solid var(--blue); color: var(--blue);
}
.cta-note { font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 8px; }

/* ── COMPARE LINK CARDS ────────────────────────────── */
.link-cards { display: flex; flex-direction: column; gap: 10px; }
.link-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 10px; font-size: 14px; font-weight: 600;
  color: var(--blue); box-shadow: var(--shadow);
  transition: border-color .2s, box-shadow .2s;
}
.link-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.link-card::after { content: '→'; }

/* ── COMPARISON TABLE ──────────────────────────────── */
.table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius); border: 1px solid var(--gray-200);
}
table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 13px; }
th {
  background: var(--blue); color: #fff;
  padding: 12px 14px; text-align: left; font-weight: 700; white-space: nowrap;
}
td { padding: 12px 14px; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--gray-50); }
.check { color: var(--green); font-weight: 700; }
.cross { color: #EF4444; font-weight: 700; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 10px; overflow: hidden; margin-bottom: 8px;
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%; background: #fff; padding: 16px 18px;
  text-align: left; font-size: 15px; font-weight: 600; color: #111827;
  border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; gap: 12px;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--blue); flex-shrink: 0; }
.faq-q.open { background: var(--blue-light); color: var(--blue); }
.faq-q.open::after { content: '−'; }
.faq-a { display: none; padding: 14px 18px; font-size: 14px; color: var(--gray-700); background: var(--gray-50); line-height: 1.7; }
.faq-a.open { display: block; }

/* ── CATEGORY WINNER CARDS ─────────────────────────── */
.winner-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 18px 16px;
  box-shadow: var(--shadow);
}
.winner-label {
  font-size: 11px; font-weight: 700; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px;
}
.winner-name { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.winner-desc { font-size: 13px; color: var(--gray-500); }
.winner-desc a { color: var(--blue); font-weight: 600; }

/* ── RATING STARS ──────────────────────────────────── */
.rating-row {
  display: flex; align-items: center; gap: 10px; margin: 12px 0;
}
.stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; }
.rating-num { font-size: 24px; font-weight: 800; }
.rating-label { font-size: 13px; color: var(--gray-400); }

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: #111827; color: #9CA3AF;
  padding: 36px 16px 84px;
  font-size: 13px; line-height: 1.7;
}
.footer-logo { color: #fff; font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.footer-tagline { font-size: 13px; color: #6B7280; margin-bottom: 16px; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 6px 16px; margin-bottom: 20px;
}
.footer-links a { color: #9CA3AF; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-disclaimer {
  font-size: 11px; color: #6B7280;
  border-top: 1px solid #374151; padding-top: 16px; margin-top: 4px;
}

/* ── SPACING HELPERS ───────────────────────────────── */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 36px; }
.mb-2 { margin-bottom: 16px; }

/* ── MOBILE ────────────────────────────────────────── */
@media (max-width: 480px) {
  .pros-cons { grid-template-columns: 1fr; }
}
