/* ============================================
   HomeWarranty.Network — Main Stylesheet
   Design: Editorial authority with trust-first
   aesthetic. Deep navy + warm gold accents.
   Fonts: Playfair Display + DM Sans
   ============================================ */

:root {
  --navy: #0f1f3d;
  --navy-mid: #1a3260;
  --navy-light: #243d73;
  --gold: #c9983a;
  --gold-light: #e8b84b;
  --gold-pale: #fdf3e0;
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ea;
  --gray-400: #9aa5b4;
  --gray-600: #4a5568;
  --gray-800: #1a202c;
  --green: #2d7d46;
  --green-light: #e8f5ec;
  --red-light: #fef2f2;
  --shadow-sm: 0 1px 3px rgba(15,31,61,0.08);
  --shadow-md: 0 4px 16px rgba(15,31,61,0.10);
  --shadow-lg: 0 8px 32px rgba(15,31,61,0.14);
  --shadow-xl: 0 16px 48px rgba(15,31,61,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-w: 1180px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILITIES ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,152,58,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  font-weight: 700;
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,152,58,0.4);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }

.btn-pick-primary {
  background: var(--navy);
  color: var(--white);
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
  border-color: var(--navy);
}
.btn-pick-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-pick-outline {
  background: transparent;
  color: var(--navy);
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
  border-color: var(--navy);
}
.btn-pick-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-pick-secondary {
  background: transparent;
  color: var(--gold);
  width: 100%;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border: none;
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-pick-secondary:hover { color: var(--gold-light); }

.btn-table {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-table:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.logo-dot { color: var(--gold); }

.main-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav a:hover {
  color: var(--navy);
  background: var(--gray-100);
}

.nav-cta { margin-left: 8px; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--navy);
  margin-left: auto;
}

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201,152,58,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(36,61,115,0.8) 0%, transparent 50%);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,152,58,0.2);
  border: 1px solid rgba(201,152,58,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  max-width: 760px;
}

.hero-accent { color: var(--gold-light); }

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.trust-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---- TOP PICKS ---- */
.top-picks {
  padding: 88px 0;
  background: var(--cream);
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pick-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.pick-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pick-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,152,58,0.15), var(--shadow-md);
}

.pick-rank {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 5px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.pick-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pick-logo-placeholder {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.pick-logo-placeholder.chw { background: #1a3260; color: var(--gold); }
.pick-logo-placeholder.ahs { background: #003087; color: #fff; }
.pick-logo-placeholder.cinch { background: #00539b; color: #fff; }

.pick-info { flex: 1; }

.pick-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

.pick-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 8px;
}
.pick-stars span { color: var(--gray-600); font-size: 13px; }

.pick-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.pick-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.pick-price-item { text-align: center; }

.price-label {
  display: block;
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.price-val span { font-size: 13px; font-family: var(--font-body); font-weight: 400; color: var(--gray-600); }

.pick-pros {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pick-pros li {
  font-size: 14px;
  color: var(--gray-600);
  padding-left: 2px;
}

.pick-disclosure {
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.5;
  border-top: 1px solid var(--gray-100);
  padding-top: 12px;
  margin-top: auto;
}

.picks-cta { text-align: center; }

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 88px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 48px;
}

.step {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
}

.step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
}

.step-arrow {
  font-size: 28px;
  color: var(--gold);
  margin-top: 60px;
  opacity: 0.5;
  align-self: flex-start;
}

.how-cta { text-align: center; }

/* ---- COMPARISON TABLE ---- */
.comparison-preview {
  padding: 88px 0;
  background: var(--gray-50);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  border: 1px solid var(--gray-200);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

.compare-table thead {
  background: var(--navy);
}

.compare-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.compare-table tbody tr:hover { background: var(--gray-50); }
.compare-table tbody tr:last-child { border-bottom: none; }

.compare-table tbody td {
  padding: 16px 20px;
  color: var(--gray-800);
  white-space: nowrap;
}

.row-featured {
  background: var(--gold-pale);
}
.row-featured:hover { background: #fdf0d0 !important; }

.rating-cell { color: var(--gold); font-weight: 600; }

.compare-cta { text-align: center; }

/* ---- FAQ ---- */
.faq-section {
  padding: 88px 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-100);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-item p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-cta { text-align: center; }

/* ---- LEAD SECTION ---- */
.lead-section {
  padding: 80px 0;
  background: var(--navy);
  background-image: radial-gradient(ellipse at 30% 50%, rgba(201,152,58,0.15) 0%, transparent 60%);
}

.lead-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.lead-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.lead-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 480px;
}

.lead-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.lead-check {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--gray-800);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-mark { background: var(--gold); color: var(--navy); }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 24px 0;
}

.footer-disclosure {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 820px;
}

.footer-disclosure a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   COMPARE PAGE
   ============================================ */

.page-hero {
  background: var(--navy);
  padding: 60px 0;
}

.page-hero-content { max-width: 640px; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  position: sticky;
  top: 68px;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.filter-bar .container {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}

.filter-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--gray-600);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.companies-section { padding: 60px 0 88px; background: var(--cream); }

.company-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: start;
  transition: box-shadow var(--transition);
}
.company-card:hover { box-shadow: var(--shadow-lg); }
.company-card.featured-co { border-color: var(--gold); }

.co-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.co-logo.chw { background: #1a3260; color: var(--gold); }
.co-logo.ahs { background: #003087; color: #fff; }
.co-logo.cinch { background: #00539b; color: #fff; }
.co-logo.liberty { background: #1d5f3a; color: #fff; }
.co-logo.select { background: #6b21a8; color: #fff; }

.co-main {}

.co-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.co-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}

.co-badge {
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.co-stars {
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 12px;
}
.co-stars span { color: var(--gray-600); font-size: 14px; }

.co-summary {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 600px;
}

.co-specs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.co-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.co-spec-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
  font-weight: 600;
}

.co-spec-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.co-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 160px;
  flex-shrink: 0;
}

.co-price {
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 4px;
}

.co-price-from {
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.co-price-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}
.co-price-val span { font-size: 13px; font-family: var(--font-body); color: var(--gray-600); }

/* ============================================
   REVIEW PAGES
   ============================================ */

.review-hero {
  background: var(--navy);
  padding: 60px 0 0;
}

.review-hero-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: end;
}

.review-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.review-breadcrumb a { color: rgba(255,255,255,0.6); }
.review-breadcrumb a:hover { color: var(--gold-light); }

.review-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.review-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

.review-score-big {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.score-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.score-denom {
  font-size: 22px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
}

.review-stars-big {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 12px;
}

.review-verdict {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 560px;
}

.review-cta-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 0;
  align-self: end;
  text-align: center;
}

.review-cta-box .co-price { margin-bottom: 16px; border-bottom-color: rgba(255,255,255,0.1); }
.review-cta-box .co-price-from { color: rgba(255,255,255,0.5); }
.review-cta-box .co-price-val { color: var(--white); }
.review-cta-box .co-price-val span { color: rgba(255,255,255,0.55); }

.review-body {
  padding: 64px 0 88px;
  background: var(--white);
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.review-content { min-width: 0; }

.review-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 16px;
  line-height: 1.25;
}
.review-content h2:first-child { margin-top: 0; }

.review-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.pros-box, .cons-box {
  border-radius: var(--radius-md);
  padding: 24px;
}

.pros-box { background: var(--green-light); border: 1px solid #c6e8d0; }
.cons-box { background: var(--red-light); border: 1px solid #fecaca; }

.pros-box h4 { color: var(--green); margin-bottom: 12px; font-size: 15px; font-weight: 700; }
.cons-box h4 { color: #dc2626; margin-bottom: 12px; font-size: 15px; font-weight: 700; }

.pros-box ul, .cons-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pros-box li, .cons-box li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-800);
  padding-left: 4px;
}

.review-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.sidebar-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.sidebar-spec-row:last-child { border-bottom: none; }
.sidebar-spec-row .spec-key { color: var(--gray-600); }
.sidebar-spec-row .spec-val { font-weight: 600; color: var(--navy); }

/* ============================================
   GUIDE PAGE
   ============================================ */

.guide-body {
  padding: 64px 0 88px;
  background: var(--white);
}

.guide-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

.guide-toc {
  position: sticky;
  top: 88px;
}

.toc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid var(--gray-200);
  padding-left: 16px;
}

.toc-list a {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  display: block;
  padding: 4px 0;
  transition: color var(--transition);
}
.toc-list a:hover { color: var(--navy); }
.toc-list a.active { color: var(--gold); font-weight: 600; }

.guide-content h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin: 56px 0 20px;
  padding-top: 56px;
  border-top: 1px solid var(--gray-100);
  line-height: 1.2;
  scroll-margin-top: 100px;
}
.guide-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.guide-content h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin: 32px 0 14px;
}

.guide-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 18px;
}

.guide-content ul {
  margin: 16px 0 20px 20px;
}

.guide-content li {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 8px;
}

.callout {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.callout p {
  font-size: 15px;
  color: var(--gray-800);
  margin: 0;
  line-height: 1.65;
}

.callout strong { color: var(--navy); }

/* ============================================
   ABOUT / DISCLOSURE / PRIVACY PAGES
   ============================================ */

.simple-page {
  padding: 64px 0 88px;
  background: var(--white);
}

.simple-page .container { max-width: 760px; }

.simple-page h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.simple-page .page-date {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-100);
}

.simple-page h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 16px;
}

.simple-page p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 18px;
}

.simple-page ul {
  margin: 16px 0 20px 24px;
}

.simple-page li {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .picks-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .review-hero-inner { grid-template-columns: 1fr; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-toc { position: static; }
  .company-card { grid-template-columns: 72px 1fr; }
  .co-actions { grid-column: 2; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { padding: 60px 0 72px; }
  .hero-cta-group { flex-direction: column; }
  .hero-trust { gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .lead-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table thead th,
  .compare-table tbody td { padding: 12px 14px; }
  .pros-cons { grid-template-columns: 1fr; }
  .company-card { grid-template-columns: 1fr; }
  .co-logo { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .pick-pricing { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
}
