/* ============================================================
   SleepWise Australia — Main Stylesheet
   Fonts: Lora (display/headings) + DM Sans (body)
   Aesthetic: Calm, editorial, trustworthy — deep navy + warm white + sage
   ============================================================ */

:root {
  --navy:      #1a2744;
  --navy-mid:  #2c3f6e;
  --sage:      #5a7a6e;
  --sage-light:#e8f0ed;
  --amber:     #e8914a;
  --amber-pale:#fdf3eb;
  --cream:     #faf9f6;
  --white:     #ffffff;
  --text:      #2d2d2d;
  --text-mid:  #555;
  --text-light:#888;
  --border:    #e5e5e0;
  --radius:    10px;
  --shadow:    0 2px 16px rgba(26,39,68,0.08);
  --shadow-lg: 0 8px 40px rgba(26,39,68,0.13);
  --font-head: 'Lora', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --container: 1160px;
  --spacing:   clamp(1rem, 4vw, 2rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; margin: 2rem 0 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin: 1.5rem 0 .5rem; }
p  { margin-bottom: 1rem; }
a  { color: var(--navy-mid); text-decoration: none; }
a:hover { color: var(--amber); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--spacing);
}

/* ---- Disclosure Bar ---- */
.disclosure-bar {
  background: var(--sage-light);
  border-bottom: 1px solid #c8dcd5;
  font-size: 13px;
  color: var(--sage);
  padding: 8px 0;
  text-align: center;
}

/* ---- Site Header ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(26,39,68,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.logo-icon { font-size: 1.4rem; }
.logo-au { color: var(--sage); font-size: .95em; }

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-left: auto;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .2s;
}
.main-nav a:hover { color: var(--navy); }
.main-nav .nav-highlight {
  background: var(--navy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}
.main-nav .nav-highlight:hover { background: var(--amber); color: var(--white); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(90,122,110,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.85);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; }
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  border: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover { background: #d47c3a; color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,145,74,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }

/* ---- Hero stats ---- */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--white); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ---- Section ---- */
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section-alt { background: var(--white); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .6rem;
}

/* ---- Mattress Cards Grid ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.mattress-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.mattress-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mattress-card.featured-card { border-color: var(--amber); border-width: 2px; }

.card-badge-row {
  background: var(--navy);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}
.featured-card .card-badge-row { background: var(--amber); }

.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card-brand { font-size: 12px; font-weight: 600; color: var(--sage); text-transform: uppercase; letter-spacing: .06em; }
.card-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin: 4px 0 8px; }
.card-tagline { font-size: 14px; color: var(--text-mid); margin-bottom: 12px; }

.card-meta {
  display: flex;
  gap: 1rem;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }

.card-stars { color: #f5a623; font-size: 14px; }
.card-rating-num { color: var(--text-mid); font-size: 13px; }

.card-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.card-price-note { font-size: 12px; color: var(--text-light); margin-bottom: 1rem; }

.card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}
.pill {
  background: var(--sage-light);
  color: var(--sage);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}

.card-cta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-cta {
  flex: 1;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
}
.btn-cta:hover { background: var(--amber); color: var(--white); }
.btn-review {
  color: var(--navy-mid);
  font-size: 13px;
  text-decoration: underline;
  white-space: nowrap;
}
.btn-review:hover { color: var(--amber); }

/* ---- Comparison Table ---- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #fafaf8; }
.comparison-table .winner-col { background: #fffbf5 !important; }
.comparison-table .check { color: var(--sage); font-size: 16px; }
.comparison-table .cross { color: #bbb; }

/* ---- Review Page ---- */
.review-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(2rem, 6vw, 4rem) 0;
}
.review-hero h1 { color: var(--white); }
.review-hero .verdict-stars { font-size: 1.5rem; color: #f5a623; }

.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 860px) { .review-layout { grid-template-columns: 1fr; } }

.review-content { min-width: 0; }
.review-content h2 { border-left: 4px solid var(--amber); padding-left: 12px; }

.review-sidebar {
  position: sticky;
  top: 80px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}
.sidebar-buy {
  display: block;
  background: var(--amber);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  margin: 1rem 0;
  transition: background .2s;
}
.sidebar-buy:hover { background: #d47c3a; color: var(--white); }
.sidebar-specs { margin-top: 1rem; }
.sidebar-spec {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-spec:last-child { border-bottom: none; }
.sidebar-spec .label { color: var(--text-light); }
.sidebar-spec .value { font-weight: 500; color: var(--navy); }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 560px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.pros-box { border-top: 3px solid var(--sage); }
.cons-box { border-top: 3px solid #e57373; }
.pros-box h4 { color: var(--sage); margin-bottom: .75rem; }
.cons-box h4 { color: #c0392b; margin-bottom: .75rem; }
.pros-box ul, .cons-box ul {
  list-style: none;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pros-box li::before { content: '✓ '; color: var(--sage); font-weight: 700; }
.cons-box li::before { content: '✗ '; color: #c0392b; font-weight: 700; }

/* ---- Score Box ---- */
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin: 1.5rem 0;
}
.score-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.score-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--amber); }
.score-label { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ---- Post List ---- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-card-body { padding: 1.25rem; }
.post-type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sage);
  margin-bottom: 8px;
}
.post-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.post-card-excerpt {
  font-size: 13.5px;
  color: var(--text-mid);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-mid);
  margin-top: 12px;
}
.post-card-link:hover { color: var(--amber); }

/* ---- Affiliate Programs Table ---- */
.programs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.programs-table th {
  background: var(--sage-light);
  color: var(--sage);
  padding: 10px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.programs-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.programs-table tr:hover td { background: #fafaf8; }
.programs-table .join-btn {
  background: var(--navy);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.programs-table .join-btn:hover { background: var(--amber); color: var(--white); }

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  font-size: 13px;
  color: var(--text-light);
  padding: 12px 0;
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--amber); }
.breadcrumbs span { margin: 0 6px; }

/* ---- TOC ---- */
.toc {
  background: var(--sage-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-size: 14px;
}
.toc h4 { color: var(--sage); margin-bottom: .75rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.toc ol { padding-left: 1.2rem; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--navy-mid); }
.toc a:hover { color: var(--amber); }

/* ---- Alert / Notice ---- */
.notice {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 14px;
  margin: 1.5rem 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.notice-info { background: var(--sage-light); border-left: 4px solid var(--sage); color: #3a5a50; }
.notice-amber { background: var(--amber-pale); border-left: 4px solid var(--amber); color: #7a4a1a; }
.notice-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  margin-top: 4rem;
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.footer-tagline { font-size: 13.5px; line-height: 1.65; }
.site-footer h4 { color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem; font-family: var(--font-body); font-weight: 600; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,0.65); font-size: 13.5px; transition: color .2s; }
.site-footer a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer-disclosure { margin-top: .5rem; }

/* ---- Rating bars ---- */
.rating-bars { margin: 1rem 0; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
}
.rating-label { width: 140px; color: var(--text-mid); flex-shrink: 0; }
.rating-track { flex: 1; background: var(--border); border-radius: 4px; height: 8px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--sage); border-radius: 4px; transition: width .8s ease; }
.rating-val { width: 28px; text-align: right; font-weight: 600; color: var(--navy); }

/* ---- Page hero (non-home) ---- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.75); max-width: 640px; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0; }
.tag {
  background: var(--amber-pale);
  color: var(--amber);
  border: 1px solid #f0c89a;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); flex-direction: column; padding: 1rem; gap: .75rem; box-shadow: var(--shadow); z-index: 200; }
  .main-nav.open { display: flex; }
  .mobile-menu-btn { display: block; }
  .site-header .container { position: relative; }
}
@media (max-width: 600px) {
  .cards-grid, .post-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
  .pros-cons { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 8px; }
}

/* ============================================================
   RESTOVAAU ENHANCED STYLES — 2026 Update
   ============================================================ */

/* ---- Hero enhancements ---- */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(90,122,110,0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(232,145,74,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.flag-badge {
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.divider-dot { opacity: 0.4; margin: 0 4px; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 0;
}
.btn-lg { padding: 14px 28px; font-size: 16px; font-weight: 600; }
.hero-trust-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

/* ---- Podium / Top Picks ---- */
.top-picks-section { background: var(--cream); }
.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 860px) { .podium-grid { grid-template-columns: 1fr; } }

.podium-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.podium-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.podium-gold { border-color: #f5c542; border-width: 2px; background: linear-gradient(160deg, #fffdf0 0%, #fff 100%); }
.podium-silver { border-color: #c0c0c0; }
.podium-bronze { border-color: #cd7f32; }

.podium-medal { font-size: 2.5rem; line-height: 1; }
.podium-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: .25rem;
}
.podium-brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sage);
}
.podium-model {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.podium-summary {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
  max-width: 260px;
}
.podium-price {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: .25rem 0;
}
.podium-card .btn { margin-top: .5rem; width: 100%; justify-content: center; }
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  transition: all .2s;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ---- Card enhancements ---- */
.card-price-currency { font-size: 13px; color: var(--text-light); font-family: var(--font-body); }
.card-pros-list {
  font-size: 13px;
  color: var(--text-mid);
  list-style: none;
  margin-bottom: .75rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* ---- Comparison table enhancements ---- */
.table-scroll-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
tr.top-row td { background: #fffbf0 !important; }
tr.top-row td:first-child { border-left: 3px solid var(--amber); }
.table-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}
.rating-badge {
  display: inline-block;
  background: var(--amber-pale);
  color: var(--amber);
  font-weight: 700;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #f0c89a;
}
.table-review-link {
  color: var(--navy-mid);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.table-review-link:hover { color: var(--amber); }
.table-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

/* ---- Trust section ---- */
.trust-section { overflow: hidden; }
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .trust-inner { grid-template-columns: 1fr; } }
.trust-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.trust-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.trust-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.trust-list strong { display: block; color: var(--navy); margin-bottom: 2px; }
.trust-list p { font-size: 14px; color: var(--text-mid); margin: 0; }
.disclosure-link {
  font-size: 13.5px;
  color: var(--sage);
  text-decoration: underline;
}
.disclosure-link:hover { color: var(--amber); }

.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.trust-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 1px 8px rgba(26,39,68,0.05);
}
.trust-stat-wide {
  grid-column: 1 / -1;
  text-align: left;
}
.trust-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
}
.trust-stat-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}
.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-badge {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage);
  border: 1px solid #c8dcd5;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 3.5rem 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin: 0 0 .5rem; font-size: clamp(1.3rem, 3vw, 1.7rem); }
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; font-size: 15px; }
.cta-banner-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
@media (max-width: 700px) {
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns { justify-content: center; }
}

/* ============================================================
   NAV UPDATES — Restova Australia
   ============================================================ */
.nav-deals-btn {
  background: linear-gradient(135deg, #e8914a 0%, #d47c3a 100%);
  color: var(--white) !important;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(232,145,74,0.35);
  transition: all .2s !important;
}
.nav-deals-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232,145,74,0.5);
  color: var(--white) !important;
}
.nav-active {
  color: var(--navy) !important;
  font-weight: 600 !important;
}

/* ============================================================
   NEW PAGES — Guides, Reviews, Comparisons, Deals, About
   ============================================================ */

/* ---- Filter tabs (shared) ---- */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-tab {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  background: #f4f5f7;
  color: var(--text-mid);
  transition: all .18s;
  border: 1.5px solid transparent;
}
.filter-tab:hover { background: var(--sage-light); color: var(--sage); }
.filter-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---- Post grid large variant ---- */
.post-grid-lg {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.post-card-lg .post-card-body { padding: 1.5rem; }
.post-type-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.type-blue   { background: #e8f0fe; color: #1a73e8; }
.type-orange { background: #fff3e0; color: #e65100; }
.type-green  { background: #e8f5e9; color: #2e7d32; }
.type-red    { background: #fce4ec; color: #c62828; }
.post-card-meta { font-size: 12px; color: var(--text-light); margin: 8px 0; }

/* ---- Review list cards ---- */
.review-list-card {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.review-list-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.review-list-rank {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  flex-shrink: 0;
  width: 52px;
  text-align: center;
  padding-top: 4px;
  line-height: 1;
}
.review-list-body { flex: 1; min-width: 0; }
.review-list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.review-list-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--sage); }
.review-list-model { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 3px 0; }
.review-list-tagline { font-size: 13px; color: var(--text-mid); }
.review-list-price-block { text-align: right; flex-shrink: 0; }
.review-list-price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.review-list-stars { font-size: 13px; color: #f5a623; margin-top: 4px; }
.review-list-stars span { color: var(--text-mid); }
.review-list-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: .75rem; }
.review-list-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: 13px;
}
.review-mini-pros { color: var(--sage); }
.review-mini-pros div, .review-mini-cons div { padding: 2px 0; }
.review-mini-cons { color: #c0392b; }
.review-list-actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .review-list-card { flex-direction: column; }
  .review-list-rank { font-size: 1.5rem; width: auto; }
  .review-list-pros-cons { grid-template-columns: 1fr; }
}

/* ---- Comparisons page ---- */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.comp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.comp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.comp-vs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.comp-brand {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.comp-vs-badge {
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}
.comp-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.35;
}
.comp-card-title a { color: inherit; }
.comp-card-title a:hover { color: var(--amber); }
.comp-card-excerpt { font-size: 13.5px; color: var(--text-mid); margin-bottom: .75rem; line-height: 1.55; }

/* ---- Deals page ---- */
.deals-hero { position: relative; }
.deals-updated {
  display: inline-block;
  background: rgba(232,145,74,0.2);
  border: 1px solid rgba(232,145,74,0.4);
  color: #ffd9b0;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.deal-alert-bar {
  background: linear-gradient(90deg, #1a2744 0%, #2c3f6e 100%);
  border-bottom: 2px solid var(--amber);
  color: rgba(255,255,255,0.9);
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
}
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.deal-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.deal-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  background: var(--amber-pale);
  color: var(--amber);
  border: 1px solid #f0c89a;
  border-radius: 20px;
  padding: 3px 12px;
  align-self: flex-start;
}
.deal-header { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; }
.deal-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--sage); }
.deal-model { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 3px 0; }
.deal-type-pill { display: inline-block; font-size: 11px; background: var(--sage-light); color: var(--sage); padding: 2px 8px; border-radius: 10px; }
.deal-saving { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--sage); text-align: right; flex-shrink: 0; }
.deal-offer-box {
  background: linear-gradient(135deg, var(--amber-pale) 0%, #fff 100%);
  border: 1px solid #f0c89a;
  border-radius: 10px;
  padding: .75rem 1rem;
}
.deal-discount-text { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.deal-prices { display: flex; align-items: baseline; gap: .5rem; }
.deal-price-was { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
.deal-price-now { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.deal-price-label { font-size: 12px; color: var(--text-light); }
.deal-code-row { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.deal-code-label { color: var(--text-mid); }
.deal-code {
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  background: var(--navy);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background .15s;
}
.deal-code:hover { background: var(--amber); }
.deal-meta { font-size: 12px; color: var(--text-light); display: flex; gap: 6px; }
.deal-cta { text-align: center; justify-content: center; }
.deal-review-link { text-align: center; font-size: 12px; color: var(--text-light); text-decoration: underline; }
.deal-review-link:hover { color: var(--amber); }

/* ---- Deals tips ---- */
.deals-tips { margin-top: 3rem; }
.deals-tips h2 { margin-bottom: 1.5rem; }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.tip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.tip-icon { font-size: 2rem; margin-bottom: .75rem; }
.tip-card h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--navy); }
.tip-card p { font-size: 13.5px; color: var(--text-mid); margin: 0; }

/* ---- About page ---- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .about-layout { grid-template-columns: 1fr; } }
.about-section { margin-bottom: 2.5rem; }
.about-section h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.about-list { list-style: none; padding: 0; }
.about-list li { padding: 6px 0; font-size: 15px; }

.process-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.25rem; }
.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}
.step-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  width: 40px;
}
.step-content h3 { font-size: 1rem; margin-bottom: .4rem; }
.step-content p { font-size: 14px; color: var(--text-mid); margin: 0; }

.about-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.25rem; }
.about-stat-card, .about-trust-card, .about-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.about-stat-card h3, .about-trust-card h3, .about-contact-card h3 {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sage);
  margin-bottom: 1rem;
}
.about-stat { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.about-stat:last-child { border-bottom: none; }
.about-stat-num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--amber); }
.about-stat-label { font-size: 13px; color: var(--text-mid); }
.trust-commit-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.trust-commit-list li { font-size: 13.5px; color: var(--text); }

/* ---- Prose content (privacy, disclosure) ---- */
.prose-content { max-width: 720px; }
.prose-content h2 { font-size: 1.3rem; margin: 2rem 0 .75rem; border-left: 3px solid var(--amber); padding-left: 12px; }
.prose-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.prose-content li { margin-bottom: 6px; font-size: 15px; line-height: 1.65; }
.prose-content a { color: var(--sage); text-decoration: underline; }

/* ============================================================
   MONETISATION FEATURES — Quiz, Email, Schema, FAQ, Sitemap
   ============================================================ */

/* ---- Email capture popup ---- */
.email-popup-overlay {
  position: fixed; inset: 0; background: rgba(10,18,40,0.72);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.email-popup-overlay.active { opacity: 1; pointer-events: all; }
.email-popup {
  background: var(--white); border-radius: 20px; padding: 2.5rem;
  max-width: 480px; width: 92%; position: relative;
  box-shadow: 0 24px 80px rgba(10,18,40,0.35);
  animation: popupIn .35s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popupIn { from { transform: scale(.85) translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.email-popup-close {
  position: absolute; top: 14px; right: 18px; font-size: 22px;
  cursor: pointer; color: var(--text-light); background: none; border: none; line-height: 1;
}
.email-popup-close:hover { color: var(--navy); }
.email-popup-icon { font-size: 2.8rem; text-align: center; margin-bottom: .75rem; }
.email-popup h3 { font-size: 1.4rem; text-align: center; color: var(--navy); margin-bottom: .5rem; }
.email-popup p { font-size: 14px; color: var(--text-mid); text-align: center; margin-bottom: 1.25rem; }
.email-popup-form { display: flex; flex-direction: column; gap: 10px; }
.email-popup-form input[type="email"] {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: inherit; width: 100%;
}
.email-popup-form input:focus { outline: none; border-color: var(--amber); }
.email-popup-form button {
  background: var(--amber); color: #fff; border: none; padding: 13px;
  border-radius: var(--radius); font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: background .2s;
}
.email-popup-form button:hover { background: #d47c3a; }
.email-popup-disclaimer { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 8px; }
.email-popup-success { text-align: center; padding: 1rem 0; display: none; }
.email-popup-success .success-icon { font-size: 3rem; }
.email-popup-success p { font-size: 15px; color: var(--sage); font-weight: 600; margin-top: .5rem; }

/* ---- Inline email capture strip ---- */
.email-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 3rem 0; margin: 3rem 0 0;
}
.email-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.email-strip h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .35rem; }
.email-strip p { color: rgba(255,255,255,.75); font-size: 14px; margin: 0; }
.email-strip-form { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.email-strip-form input[type="email"] {
  padding: 11px 16px; border-radius: var(--radius); border: none;
  font-size: 14px; font-family: inherit; width: 240px;
}
.email-strip-form button {
  background: var(--amber); color: #fff; border: none;
  padding: 11px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
  white-space: nowrap; transition: background .2s;
}
.email-strip-form button:hover { background: #d47c3a; }
@media (max-width: 640px) {
  .email-strip-form { width: 100%; }
  .email-strip-form input[type="email"] { width: 100%; }
  .email-strip-form button { width: 100%; }
}

/* ---- Quiz page ---- */
.quiz-hero { background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%); padding: clamp(3rem,7vw,5rem) 0; }
.quiz-hero h1 { color: var(--white); }
.quiz-hero p { color: rgba(255,255,255,.8); max-width: 560px; }
.quiz-wrap { max-width: 680px; margin: 0 auto; padding: 2.5rem var(--spacing) 4rem; }
.quiz-progress-bar { height: 6px; background: var(--border); border-radius: 10px; margin-bottom: 2rem; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: linear-gradient(90deg, var(--sage), var(--amber)); border-radius: 10px; transition: width .4s ease; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeSlideIn .3s ease; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.quiz-q { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; line-height: 1.3; }
.quiz-hint { font-size: 14px; color: var(--text-mid); margin-bottom: 1.5rem; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 2px solid var(--border); border-radius: 12px;
  padding: 1rem 1.25rem; cursor: pointer; transition: all .18s; text-align: left;
}
.quiz-option:hover { border-color: var(--amber); background: var(--amber-pale); }
.quiz-option.selected { border-color: var(--sage); background: var(--sage-light); }
.quiz-option-icon { font-size: 1.6rem; flex-shrink: 0; }
.quiz-option-text strong { display: block; font-size: 15px; color: var(--navy); }
.quiz-option-text span { font-size: 13px; color: var(--text-mid); }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 1.5rem; gap: 10px; }
.quiz-btn-back { background: var(--white); border: 1.5px solid var(--border); color: var(--text-mid); padding: 11px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 500; cursor: pointer; font-family: inherit; }
.quiz-btn-next { background: var(--navy); color: var(--white); border: none; padding: 12px 28px; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .2s; margin-left: auto; }
.quiz-btn-next:hover { background: var(--amber); }
.quiz-btn-next:disabled { opacity: .4; cursor: not-allowed; }
.quiz-step-count { font-size: 12px; color: var(--text-light); text-align: center; margin-bottom: 1.25rem; }

/* Quiz results */
.quiz-result { display: none; }
.quiz-result.active { display: block; animation: fadeSlideIn .4s ease; }
.result-header { text-align: center; padding: 2rem 0 1.5rem; }
.result-badge { display: inline-block; background: var(--amber); color: var(--white); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 5px 14px; border-radius: 20px; margin-bottom: 1rem; }
.result-header h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: .5rem; }
.result-header p { color: var(--text-mid); font-size: 15px; max-width: 480px; margin: 0 auto; }
.result-cards { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.result-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.5rem;
  display: flex; gap: 1.25rem; align-items: flex-start; box-shadow: var(--shadow);
}
.result-card.top-pick { border-color: var(--amber); border-width: 2px; }
.result-rank { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--border); flex-shrink: 0; width: 40px; }
.result-body { flex: 1; }
.result-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--sage); }
.result-model { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 3px 0; }
.result-why { font-size: 13.5px; color: var(--text-mid); margin-bottom: .75rem; }
.result-price { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.result-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: .75rem; }
.quiz-restart { display: block; text-align: center; font-size: 13px; color: var(--text-light); cursor: pointer; margin-top: 1.5rem; text-decoration: underline; }
.quiz-restart:hover { color: var(--amber); }

/* ---- FAQ accordion ---- */
.faq-section { margin: 3rem 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; cursor: pointer; gap: 1rem;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--navy);
}
.faq-question:hover { color: var(--amber); }
.faq-chevron { flex-shrink: 0; font-size: 18px; transition: transform .25s; color: var(--text-light); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--amber); }
.faq-answer { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 1.1rem; }

/* ---- Internal link boxes ---- */
.related-articles { margin: 2.5rem 0; }
.related-articles h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .07em; color: var(--sage); margin-bottom: 1rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem; }
.related-link {
  display: block; background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: .9rem 1rem; text-decoration: none;
  font-size: 13.5px; color: var(--navy); font-weight: 500; transition: all .18s;
  border-left: 3px solid transparent;
}
.related-link:hover { border-left-color: var(--amber); background: var(--amber-pale); color: var(--navy); }
.related-link .rel-type { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); margin-bottom: 4px; display: block; }

/* ---- HTML sitemap ---- */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2rem; }
.sitemap-col h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--sage); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--sage-light); }
.sitemap-col ul { list-style: none; }
.sitemap-col li { margin-bottom: 8px; }
.sitemap-col a { font-size: 14px; color: var(--navy-mid); }
.sitemap-col a:hover { color: var(--amber); }

/* ---- Methodology page ---- */
.method-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
.method-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; box-shadow: var(--shadow); }
.method-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--amber); line-height: 1; margin-bottom: .5rem; }
.method-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.method-card p { font-size: 13.5px; color: var(--text-mid); margin: 0; }
.score-criteria { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.score-row { display: flex; align-items: center; gap: 1rem; }
.score-label-col { width: 180px; font-size: 14px; font-weight: 500; color: var(--navy); flex-shrink: 0; }
.score-bar-col { flex: 1; height: 10px; background: var(--border); border-radius: 10px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--sage), var(--amber)); border-radius: 10px; }
.score-weight { width: 36px; font-size: 13px; font-weight: 600; color: var(--sage); text-align: right; }

/* Quiz nav button */
.nav-quiz-btn {
  background: linear-gradient(135deg, var(--sage) 0%, #3d6b5e 100%);
  color: var(--white) !important;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s !important;
  box-shadow: 0 2px 8px rgba(90,122,110,0.3);
}
.nav-quiz-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(90,122,110,0.45); color: var(--white) !important; }

/* ---- Contact page ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-form-col {}
.contact-field { margin-bottom: 1.25rem; }
.contact-field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.contact-field input, .contact-field select, .contact-field textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-family: inherit; color: var(--text); background: var(--white); transition: border-color .15s;
}
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232,145,74,.1);
}
.contact-field textarea { resize: vertical; min-height: 140px; }
.contact-submit { width: 100%; justify-content: center; }
.contact-success { text-align: center; padding: 3rem 1rem; }
.contact-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.contact-success h2 { color: var(--sage); margin-bottom: .75rem; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 90px; }
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.25rem; box-shadow: var(--shadow); }
.contact-info-card h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--sage); margin-bottom: .85rem; }
.contact-email-link { display: block; font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; word-break: break-all; }
.contact-email-link:hover { color: var(--amber); }
.contact-info-card p { font-size: 13px; color: var(--text-mid); margin: 0; }
.response-times { display: flex; flex-direction: column; gap: 0; }
.response-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.response-row:last-child { border-bottom: none; }
.response-time { font-weight: 600; color: var(--sage); }
.contact-faqs { display: flex; flex-direction: column; gap: .9rem; }
.contact-faq-item strong { display: block; font-size: 13px; color: var(--navy); margin-bottom: 3px; }
.contact-faq-item p { font-size: 12.5px; color: var(--text-mid); margin: 0; }

/* ---- Affiliate disclosure page ---- */
.disclosure-summary-box {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 100%);
  border: 1.5px solid #c8dcd5; border-radius: 14px; padding: 1.75rem; margin-bottom: 2rem;
}
.disclosure-summary-box h2 { margin-top: 0; }
.disclosure-ways { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin: 1rem 0; }
.disclosure-ways li { display: flex; gap: .85rem; align-items: flex-start; font-size: 14.5px; }
.disclosure-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   NAV REDESIGN — fixed layout, dropdowns, mobile drawer
   ============================================================ */

/* Top deals strip */
.topbar-deals-strip {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 7px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-deals-strip .container { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.topbar-deals-strip a { color: var(--amber); font-weight: 600; text-decoration: none; white-space: nowrap; }
.topbar-deals-strip a:hover { text-decoration: underline; }

/* Header layout */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(26,39,68,.12); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 60px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  margin-right: 2rem;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.3rem; }
.logo-au { color: var(--sage); }

/* Primary nav — centre */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.main-nav > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.main-nav > a:hover, .main-nav > a.nav-active { color: var(--navy); background: var(--sage-light); }

/* Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-trigger {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-wrap.open .nav-dropdown-trigger { color: var(--navy); background: var(--sage-light); }
.nav-caret { font-size: 10px; opacity: .6; transition: transform .25s; }
.nav-dropdown-wrap.open .nav-caret { transform: rotate(180deg); }

/* Dropdown panel — JS-controlled via .open class */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(26,39,68,.18);
  min-width: 230px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 400;
}
/* Add a transparent bridge above the dropdown so
   moving from trigger → menu doesn't close it */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--text);
  border-radius: 8px;
  text-decoration: none;
  transition: background .12s, color .12s;
  gap: 8px;
  line-height: 1.3;
}
.nav-dropdown a:hover { background: var(--sage-light); color: var(--navy); }
.nav-dropdown a:last-child { border-top: 1px solid var(--border); margin-top: 4px; color: var(--sage); font-weight: 500; }

/* Right CTA group */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 1rem;
  flex-shrink: 0;
}
.nav-quiz-btn {
  background: var(--sage);
  color: var(--white) !important;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .18s;
  white-space: nowrap;
}
.nav-quiz-btn:hover { background: #3d6b5e; color: var(--white) !important; transform: translateY(-1px); }
.nav-deals-btn {
  background: linear-gradient(135deg, var(--amber) 0%, #d47c3a 100%);
  color: var(--white) !important;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .18s;
  white-space: nowrap;
}
.nav-deals-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,145,74,.45); color: var(--white) !important; }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
  padding: 4px 8px;
  margin-left: auto;
}

/* Mobile drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--white);
  z-index: 500;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(26,39,68,.15);
}
.mobile-nav-drawer.open { transform: translateX(0); }
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(10,18,40,.5);
  z-index: 499;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy);
}
.mobile-close-btn {
  background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-light);
}
.mobile-drawer-nav { padding: .75rem 0; }
.mobile-drawer-nav a {
  display: block; padding: 11px 1.25rem;
  font-size: 15px; font-weight: 500; color: var(--navy); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer-nav a:hover { background: var(--sage-light); }
.mobile-nav-section {
  padding: 10px 1.25rem 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-light);
}
.mobile-nav-sub { padding-left: 2rem !important; font-size: 14px !important; color: var(--text-mid) !important; }
.mobile-nav-cta {
  background: var(--sage) !important; color: var(--white) !important;
  margin: .75rem 1.25rem .25rem !important; border-radius: 10px; text-align: center;
  border-bottom: none !important;
}
.mobile-nav-cta.deals { background: var(--amber) !important; margin-top: .25rem !important; }

/* Responsive breakpoints */
@media (max-width: 1050px) {
  .main-nav > a, .nav-dropdown-trigger { font-size: 13px; padding: 6px 8px; }
  .nav-quiz-btn, .nav-deals-btn { font-size: 12px; padding: 6px 11px; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-ctas { display: none; }
  .mobile-menu-btn { display: block; }
  .site-logo { margin-right: auto; }
}

/* ---- Accessories page ---- */
.accessory-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 1.5rem; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.accessory-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.accessory-card.accessory-top { border-color: var(--amber); border-width: 2px; }
.accessory-badge { display:inline-block; background:var(--amber-pale); color:var(--amber); border:1px solid #f0c89a; font-size:11px; font-weight:700; padding:3px 12px; border-radius:20px; margin-bottom:.75rem; }
.accessory-top .accessory-badge { background:var(--amber); color:var(--white); border-color:var(--amber); }
.accessory-header { display:flex; justify-content:space-between; align-items:flex-start; gap:1rem; margin-bottom:.75rem; flex-wrap:wrap; }
.accessory-name { font-family:var(--font-head); font-size:1.15rem; font-weight:700; color:var(--navy); }
.accessory-type { font-size:12px; color:var(--sage); font-weight:600; text-transform:uppercase; letter-spacing:.06em; margin:3px 0; }
.accessory-best { font-size:13px; color:var(--text-mid); }
.accessory-price-block { text-align:right; flex-shrink:0; }
.accessory-price { font-family:var(--font-head); font-size:1.4rem; font-weight:700; color:var(--navy); }
.accessory-verdict { font-size:14px; color:var(--text-mid); line-height:1.6; margin-bottom:.75rem; }

/* ---- Glossary ---- */
.glossary-list { display:flex; flex-direction:column; gap:.75rem; }
.glossary-item { padding:1rem 1.25rem; background:var(--white); border:1px solid var(--border); border-radius:10px; }
.glossary-term { font-family:var(--font-head); font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:.4rem; display:block; }
.glossary-def { font-size:14px; color:var(--text-mid); line-height:1.65; margin:0; }

/* ============================================================
   HOMEPAGE REDESIGN — editorial magazine style
   ============================================================ */

/* ── Hero ── */
.hp-hero {
  position: relative;
  background: linear-gradient(140deg, #0f1d3a 0%, #1a2f58 50%, #0d2240 100%);
  overflow: hidden;
  padding: clamp(3rem,8vw,6rem) 0 clamp(2.5rem,6vw,5rem);
}
.hp-hero-bg { position:absolute;inset:0;pointer-events:none; }
.hp-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}
.hp-blob-1 { width:500px;height:500px;background:#5a7a6e;top:-100px;right:-100px; }
.hp-blob-2 { width:300px;height:300px;background:#e8914a;bottom:-80px;left:10%;opacity:.15; }
.hp-blob-3 { width:200px;height:200px;background:#2c5f8e;top:40%;left:-50px; }

.hp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media(max-width:900px){.hp-hero-inner{grid-template-columns:1fr;}.hp-hero-visual{display:none;}}

.hp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hp-flag { font-size: 1rem; }
.hp-divider { opacity: .4; }

.hp-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem,4.5vw,3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hp-hero-accent { color: #6db8a8; }
.hp-hero-year { font-size: .7em; color: rgba(255,255,255,.6); font-weight: 400; }
.hp-hero-sub { font-size: clamp(.95rem,2vw,1.1rem); color: rgba(255,255,255,.78); max-width: 560px; margin-bottom: 1rem; line-height: 1.7; }
.hp-hero-cta-label { font-size: 14px; color: var(--amber); font-weight: 600; margin-bottom: 1.25rem; }

.hp-hero-btns { display:flex;gap:10px;flex-wrap:wrap;margin-bottom:2rem; }
.hp-btn-primary {
  display:inline-flex;align-items:center;gap:6px;
  background:var(--amber);color:#fff;
  padding:12px 22px;border-radius:10px;
  font-size:15px;font-weight:600;text-decoration:none;
  transition:all .18s;border:2px solid var(--amber);
}
.hp-btn-primary:hover{background:#d47c3a;border-color:#d47c3a;transform:translateY(-2px);box-shadow:0 6px 20px rgba(232,145,74,.4);color:#fff;}
.hp-btn-secondary {
  display:inline-flex;align-items:center;gap:6px;
  background:transparent;color:rgba(255,255,255,.9);
  padding:12px 22px;border-radius:10px;
  font-size:15px;font-weight:500;text-decoration:none;
  border:2px solid rgba(255,255,255,.3);
  transition:all .18s;
}
.hp-btn-secondary:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.5);color:#fff;}
.hp-btn-quiz{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--sage);color:#fff;
  padding:12px 22px;border-radius:10px;
  font-size:15px;font-weight:600;text-decoration:none;
  border:2px solid var(--sage);transition:all .18s;
}
.hp-btn-quiz:hover{background:#3d6b5e;transform:translateY(-2px);color:#fff;}

.hp-hero-stats {
  display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap;
  padding-top:1.75rem;border-top:1px solid rgba(255,255,255,.12);
}
.hp-stat{text-align:left;}
.hp-stat strong{display:block;font-family:var(--font-head);font-size:1.5rem;font-weight:700;color:#fff;}
.hp-stat span{font-size:12px;color:rgba(255,255,255,.55);}
.hp-stat-sep{width:1px;height:32px;background:rgba(255,255,255,.15);}

/* Score widget */
.hp-score-widget {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 1.5rem;
  color: #fff;
}
.hp-score-header{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:var(--amber);margin-bottom:.75rem;}
.hp-score-brand{font-family:var(--font-head);font-size:1.3rem;font-weight:700;margin-bottom:4px;}
.hp-score-stars{color:#f5c842;font-size:1.1rem;letter-spacing:2px;}
.hp-score-rating{font-size:13px;color:rgba(255,255,255,.6);margin-bottom:1rem;}
.hp-bar-row{display:flex;align-items:center;gap:8px;margin-bottom:8px;font-size:12px;color:rgba(255,255,255,.7);}
.hp-bar-row span:first-child{width:62px;flex-shrink:0;}
.hp-bar-row span:last-child{width:24px;text-align:right;color:rgba(255,255,255,.9);font-weight:600;}
.hp-bar-track{flex:1;height:5px;background:rgba(255,255,255,.12);border-radius:4px;overflow:hidden;}
.hp-bar-fill{height:100%;background:linear-gradient(90deg,var(--sage),var(--amber));border-radius:4px;transition:width 1s ease .3s;}
.hp-score-price{font-family:var(--font-head);font-size:1.2rem;font-weight:700;color:var(--amber);margin:1rem 0 .5rem;}
.hp-score-cta{display:block;text-align:center;background:var(--amber);color:#fff;padding:10px;border-radius:8px;font-size:13px;font-weight:600;text-decoration:none;transition:background .15s;}
.hp-score-cta:hover{background:#d47c3a;color:#fff;}
.hp-trust-chips{display:flex;gap:6px;flex-wrap:wrap;margin-top:10px;}
.hp-trust-chips span{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);border-radius:20px;padding:4px 10px;font-size:11px;color:rgba(255,255,255,.75);}

/* ── Sections ── */
.hp-section { padding: clamp(3rem,7vw,5rem) 0; }
.hp-alt { background: var(--white); }
.hp-section-header { text-align:center;max-width:680px;margin:0 auto 2.5rem; }
.hp-section-tag {
  display:inline-block;
  background:var(--amber-pale);color:var(--amber);
  border:1px solid #f0c89a;border-radius:20px;
  padding:4px 14px;font-size:12px;font-weight:700;
  letter-spacing:.05em;margin-bottom:.75rem;
}
.hp-section-header h2{font-size:clamp(1.5rem,3vw,2.1rem);color:var(--navy);margin-bottom:.6rem;}
.hp-section-header p{font-size:15px;color:var(--text-mid);}

/* ── Podium ── */
.hp-podium {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  align-items:stretch;
}
@media(max-width:860px){.hp-podium{grid-template-columns:1fr;}}

.hp-podium-card {
  background:var(--white);
  border:2px solid var(--border);
  border-radius:18px;
  padding:2rem 1.5rem;
  display:flex;flex-direction:column;align-items:center;
  text-align:center;gap:.5rem;
  box-shadow:var(--shadow);
  transition:transform .2s,box-shadow .2s;
}
.hp-podium-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);}
.hp-gold{border-color:#f0c940;background:linear-gradient(160deg,#fffdf0 0%,#fff 100%);}
.hp-silver{border-color:#c0c0c0;}
.hp-bronze{border-color:#c87941;}

.hp-podium-medal{font-size:2.8rem;line-height:1;}
.hp-podium-rank{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.09em;color:var(--text-light);margin-bottom:.25rem;}
.hp-podium-brand{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:var(--sage);}
.hp-podium-model{font-family:var(--font-head);font-size:1.2rem;font-weight:700;color:var(--navy);}
.hp-podium-desc{font-size:13.5px;color:var(--text-mid);line-height:1.55;max-width:260px;}
.hp-podium-meta{display:flex;gap:10px;align-items:center;flex-wrap:wrap;justify-content:center;}
.hp-podium-type{background:var(--sage-light);color:var(--sage);font-size:11px;font-weight:600;padding:3px 10px;border-radius:20px;}
.hp-podium-price{font-family:var(--font-head);font-size:1.3rem;font-weight:700;color:var(--navy);}
.hp-podium-stars{color:#f5c842;font-size:.95rem;letter-spacing:1px;}
.hp-podium-trial{font-size:12px;color:var(--text-light);}
.hp-deal-btn{
  display:block;width:100%;text-align:center;
  background:var(--amber);color:#fff;
  padding:11px;border-radius:10px;
  font-size:14px;font-weight:600;text-decoration:none;
  transition:background .15s;margin-top:.5rem;
}
.hp-deal-btn:hover{background:#d47c3a;color:#fff;}
.hp-deal-outline{background:transparent;color:var(--navy);border:2px solid var(--navy);}
.hp-deal-outline:hover{background:var(--navy);color:#fff;}
.hp-review-link{font-size:12px;color:var(--text-light);text-decoration:underline;}
.hp-review-link:hover{color:var(--amber);}

/* ── Table ── */
.hp-table-wrap{overflow-x:auto;border-radius:14px;box-shadow:var(--shadow);}
.hp-table{width:100%;border-collapse:collapse;font-size:14px;background:var(--white);}
.hp-table thead tr{background:var(--navy);}
.hp-table th{padding:14px 12px;text-align:left;font-family:var(--font-head);font-size:13px;font-weight:600;color:#fff;white-space:nowrap;}
.hp-table td{padding:13px 12px;border-bottom:1px solid var(--border);vertical-align:middle;}
.hp-table tr:last-child td{border-bottom:none;}
.hp-table-top td{background:#fffbf0!important;}
.hp-table-top td:first-child{border-left:3px solid var(--amber);}
.hp-table-rank{font-size:1.1rem;text-align:center;width:44px;}
.hp-top-badge{display:inline-block;background:var(--amber);color:#fff;font-size:10px;font-weight:700;text-transform:uppercase;padding:2px 7px;border-radius:10px;margin-left:5px;vertical-align:middle;}
.hp-type-tag{background:var(--sage-light);color:var(--sage);font-size:11px;font-weight:600;padding:3px 9px;border-radius:20px;white-space:nowrap;}
.hp-rating{background:var(--amber-pale);color:var(--amber);font-weight:700;font-size:13px;padding:3px 10px;border-radius:20px;border:1px solid #f0c89a;}
.hp-table-link{color:var(--navy-mid);font-size:13px;font-weight:500;white-space:nowrap;text-decoration:none;}
.hp-table-link:hover{color:var(--amber);}

/* ── Choose grid ── */
.hp-choose-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;}
@media(max-width:860px){.hp-choose-grid{grid-template-columns:1fr;}}
.hp-choose-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:16px;padding:2rem 1.5rem;
  box-shadow:var(--shadow);
  border-top:4px solid var(--sage);
}
.hp-choose-icon{font-size:2rem;margin-bottom:.75rem;}
.hp-choose-card h3{font-size:1.05rem;color:var(--navy);margin-bottom:1rem;}
.hp-choose-list{list-style:none;display:flex;flex-direction:column;gap:.6rem;margin-bottom:1rem;}
.hp-choose-list li{display:flex;gap:8px;font-size:13.5px;align-items:flex-start;}
.hp-choose-label{font-weight:600;color:var(--navy);flex-shrink:0;min-width:110px;}
.hp-choose-list li > span:last-child{color:var(--text-mid);}
.hp-choose-link{font-size:13px;color:var(--sage);text-decoration:underline;font-weight:500;}
.hp-choose-link:hover{color:var(--amber);}

/* ── Trust section ── */
.hp-trust-section{background:linear-gradient(135deg,#f0f6f3 0%,var(--cream) 100%);}
.hp-trust-inner{display:grid;grid-template-columns:1fr 360px;gap:3.5rem;align-items:start;}
@media(max-width:900px){.hp-trust-inner{grid-template-columns:1fr;}}
.hp-trust-text .hp-section-tag{display:inline-block;margin-bottom:.75rem;}
.hp-trust-text h2{font-size:clamp(1.4rem,2.8vw,1.9rem);color:var(--navy);margin-bottom:1rem;}
.hp-trust-text > p{font-size:15px;color:var(--text-mid);margin-bottom:1.5rem;}
.hp-trust-points{display:flex;flex-direction:column;gap:1rem;margin-bottom:1.25rem;}
.hp-trust-point{display:flex;gap:12px;align-items:flex-start;font-size:14px;}
.hp-trust-check{background:var(--sage);color:#fff;font-size:11px;font-weight:700;width:22px;height:22px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px;}
.hp-trust-point strong{color:var(--navy);}
.hp-trust-goal{font-size:15px;color:var(--navy);font-weight:500;border-left:3px solid var(--amber);padding-left:12px;}
.hp-trust-stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px;}
.hp-trust-stat{background:var(--white);border:1px solid var(--border);border-radius:12px;padding:1.25rem;text-align:center;box-shadow:0 1px 8px rgba(26,39,68,.05);}
.hp-trust-num{font-family:var(--font-head);font-size:2rem;font-weight:700;color:var(--amber);}
.hp-trust-label{font-size:12px;color:var(--text-light);margin-top:4px;}
.hp-trust-badges{display:flex;flex-wrap:wrap;gap:7px;}
.hp-trust-badges span{background:var(--sage-light);color:var(--sage);border:1px solid #c8dcd5;font-size:12px;font-weight:500;padding:4px 11px;border-radius:20px;}

/* ── Guides grid ── */
.hp-guides-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;}
@media(max-width:860px){.hp-guides-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.hp-guides-grid{grid-template-columns:1fr;}}
.hp-guide-card{
  display:flex;flex-direction:column;gap:.5rem;
  background:var(--white);border:1px solid var(--border);
  border-radius:14px;padding:1.25rem;
  text-decoration:none;
  transition:transform .18s,box-shadow .18s,border-color .18s;
  box-shadow:var(--shadow);
}
.hp-guide-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--amber);}
.hp-guide-featured{grid-column:1 / -1;}
@media(min-width:861px){.hp-guide-featured{grid-column:span 2;}}
.hp-guide-tag{display:inline-block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;padding:3px 9px;border-radius:20px;}
.hp-tag-green{background:#e8f5e9;color:#2e7d32;}
.hp-tag-blue{background:#e8f0fe;color:#1a73e8;}
.hp-tag-orange{background:#fff3e0;color:#e65100;}
.hp-tag-red{background:#fce4ec;color:#c62828;}
.hp-guide-title{font-family:var(--font-head);font-size:1rem;font-weight:700;color:var(--navy);line-height:1.35;}
.hp-guide-featured .hp-guide-title{font-size:1.2rem;}
.hp-guide-excerpt{font-size:13px;color:var(--text-mid);line-height:1.55;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.hp-guide-link{font-size:12px;color:var(--sage);font-weight:500;margin-top:auto;}

/* ── FAQ ── */
.hp-faq-section{background:var(--cream);}
.hp-faq-grid{max-width:720px;margin:0 auto;display:flex;flex-direction:column;gap:0;}
.hp-faq-item{border-bottom:1px solid var(--border);}
.hp-faq-q{
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
  padding:1.1rem 0;cursor:pointer;
  font-family:var(--font-head);font-size:1rem;font-weight:600;color:var(--navy);
  transition:color .15s;
}
.hp-faq-q:hover{color:var(--amber);}
.hp-faq-chevron{flex-shrink:0;font-size:16px;transition:transform .25s;color:var(--text-light);}
.hp-faq-item.open .hp-faq-chevron{transform:rotate(180deg);color:var(--amber);}
.hp-faq-a{font-size:14.5px;color:var(--text-mid);line-height:1.7;max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s;}
.hp-faq-item.open .hp-faq-a{max-height:400px;padding-bottom:1.1rem;}

/* ── Final CTA ── */
.hp-final-cta{
  position:relative;overflow:hidden;
  background:linear-gradient(140deg,#0f1d3a 0%,#1a2f58 60%,#0d2240 100%);
  padding:clamp(3rem,8vw,6rem) 0;
  text-align:center;
}
.hp-final-cta-bg{position:absolute;inset:0;pointer-events:none;}
.hp-final-cta-inner{position:relative;z-index:1;max-width:640px;margin:0 auto;}
.hp-final-cta-moon{font-size:3.5rem;margin-bottom:1rem;animation:moonFloat 3s ease-in-out infinite;}
@keyframes moonFloat{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}
.hp-final-cta h2{font-family:var(--font-head);font-size:clamp(1.7rem,4vw,2.4rem);color:#fff;margin-bottom:.75rem;}
.hp-final-cta p{font-size:15px;color:rgba(255,255,255,.75);margin-bottom:2rem;max-width:480px;margin-left:auto;margin-right:auto;}
.hp-final-btns{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:1.5rem;}
.hp-final-trust{font-size:13px;color:rgba(255,255,255,.5);display:flex;gap:8px;justify-content:center;flex-wrap:wrap;}
.hp-final-trust span{display:flex;align-items:center;}

/* ============================================================
   HOMEPAGE v9 — Document-matched editorial design
   Tone: clean, content-first, trustworthy, Australian
   ============================================================ */

/* ── Hero ── */
.rh-hero {
  position: relative;
  background: linear-gradient(150deg, #0e1c38 0%, #162d55 55%, #0c1f3f 100%);
  padding: clamp(3.5rem,8vw,6rem) 0 clamp(2.5rem,5vw,4.5rem);
  overflow: hidden;
}
.rh-hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(90,122,110,.22) 0%, transparent 65%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.rh-hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  align-items: center;
  position: relative; z-index: 1;
}
@media(max-width:900px){ .rh-hero-inner{grid-template-columns:1fr;} .rh-hero-right{display:none;} }

.rh-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px; padding: 5px 14px; font-size: 13px;
  color: rgba(255,255,255,.82); margin-bottom: 1.4rem;
}
.rh-eyebrow-flag { font-size: .95rem; }
.rh-eyebrow-dot { opacity: .35; }

.rh-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700; color: #fff;
  line-height: 1.18; margin-bottom: 1.25rem;
}
.rh-hero-h1-sub {
  display: block;
  font-size: .62em;
  color: rgba(255,255,255,.5);
  font-weight: 400;
  margin-top: .25rem;
}
.rh-hero-intro { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.72; margin-bottom: .9rem; max-width: 560px; }
.rh-hero-intro strong { color: rgba(255,255,255,.95); }

.rh-hero-cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 1.5rem 0 .75rem; }
.rh-hero-cta-label { font-size: 13px; color: var(--amber); font-weight: 600; }

/* Buttons */
.rh-btn { display:inline-flex;align-items:center;gap:6px;padding:12px 22px;border-radius:10px;font-size:14px;font-weight:600;text-decoration:none;transition:all .18s;white-space:nowrap; }
.rh-btn-primary { background:var(--amber);color:#fff;border:2px solid var(--amber); }
.rh-btn-primary:hover { background:#d47c3a;border-color:#d47c3a;transform:translateY(-2px);box-shadow:0 6px 20px rgba(232,145,74,.4);color:#fff; }
.rh-btn-quiz { background:var(--sage);color:#fff;border:2px solid var(--sage); }
.rh-btn-quiz:hover { background:#3d6b5e;color:#fff;transform:translateY(-2px); }
.rh-btn-ghost { background:transparent;color:rgba(255,255,255,.85);border:2px solid rgba(255,255,255,.28); }
.rh-btn-ghost:hover { background:rgba(255,255,255,.1);color:#fff;border-color:rgba(255,255,255,.5); }
.rh-btn-ghost-dark { background:transparent;color:var(--navy);border:2px solid var(--border); }
.rh-btn-ghost-dark:hover { background:var(--sage-light);color:var(--navy);border-color:var(--sage); }

/* Score card */
.rh-score-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  border-radius: 20px; padding: 1.5rem; color: #fff;
}
.rh-score-card-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--amber); margin-bottom: .75rem; }
.rh-score-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; margin-bottom: .3rem; }
.rh-score-stars { color: #f5c842; font-size: 1rem; letter-spacing: 2px; margin-bottom: 2px; }
.rh-score-sub { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.rh-score-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1rem; }
.rh-bar-row { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: rgba(255,255,255,.7); }
.rh-bar-label { width: 90px; flex-shrink: 0; }
.rh-bar-track { flex: 1; height: 5px; background: rgba(255,255,255,.12); border-radius: 3px; overflow: hidden; }
.rh-bar-fill { height: 100%; background: linear-gradient(90deg, var(--sage), var(--amber)); border-radius: 3px; }
.rh-bar-val { width: 22px; text-align: right; font-weight: 700; color: #fff; }
.rh-score-price { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--amber); margin-bottom: .75rem; }
.rh-score-actions { display: flex; flex-direction: column; gap: 6px; margin-bottom: .75rem; }
.rh-score-deal { display: block; text-align: center; background: var(--amber); color: #fff; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .15s; }
.rh-score-deal:hover { background: #d47c3a; color: #fff; }
.rh-score-review { display: block; text-align: center; font-size: 12px; color: rgba(255,255,255,.65); text-decoration: underline; }
.rh-score-review:hover { color: #fff; }
.rh-score-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.rh-score-chips span { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 20px; padding: 3px 9px; font-size: 10px; color: rgba(255,255,255,.7); }

/* ── Trust bar ── */
.rh-trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0; }
.rh-trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.rh-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--text-mid); }
.rh-trust-ico { font-size: 1rem; }
.rh-trust-sep { width: 1px; height: 18px; background: var(--border); }
@media(max-width:600px){ .rh-trust-sep{display:none;} }

/* ── Sections ── */
.rh-section { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--cream); }
.rh-alt { background: var(--white); }
.rh-section-label { display: inline-block; background: var(--amber-pale); color: var(--amber); border: 1px solid #f0c89a; border-radius: 20px; padding: 4px 14px; font-size: 12px; font-weight: 700; letter-spacing: .05em; margin-bottom: .75rem; }
.rh-section-h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--navy); margin-bottom: .65rem; text-align: center; }
.rh-section-intro { font-size: 15px; color: var(--text-mid); text-align: center; max-width: 660px; margin: 0 auto 2.5rem; }

/* ── Pick cards ── */
.rh-pick {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  align-items: center;
}
.rh-pick:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.rh-pick-gold  { border-color: #e8c640; background: linear-gradient(160deg,#fffef2 0%,#fff 100%); }
.rh-pick-silver{ border-color: #c0c0c0; }
.rh-pick-bronze{ border-color: #b87333; }
@media(max-width:760px){ .rh-pick{grid-template-columns:1fr;} }

.rh-pick-left { display: flex; flex-direction: column; gap: .5rem; }
.rh-pick-medal { font-size: 2.5rem; line-height: 1; }
.rh-pick-rank { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text-light); }
.rh-pick-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--sage); }
.rh-pick-model { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--navy); margin: 0; }
.rh-pick-type-row { display: flex; gap: 7px; flex-wrap: wrap; }
.rh-type-pill { background: var(--sage-light); color: var(--sage); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.rh-firm-pill { background: #f0f0f0; color: #555; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.rh-rating-pill { background: var(--amber-pale); color: var(--amber); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; border: 1px solid #f0c89a; }
.rh-pick-desc { font-size: 14.5px; color: var(--text-mid); line-height: 1.65; max-width: 520px; }
.rh-pick-checks { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.rh-pick-checks li { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 6px; }

.rh-pick-price-box { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; text-align: center; }
.rh-pick-price-silver { border-color: #c0c0c0; }
.rh-pick-price-bronze { border-color: #b87333; }
.rh-pick-price-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--text-light); margin-bottom: 4px; }
.rh-pick-price { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.rh-pick-price-sub { font-size: 12px; color: var(--text-light); margin-bottom: 1rem; }
.rh-pick-deal-btn { display: block; background: var(--amber); color: #fff; padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; margin-bottom: 8px; transition: background .15s; }
.rh-pick-deal-btn:hover { background: #d47c3a; color: #fff; }
.rh-deal-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.rh-deal-outline:hover { background: var(--navy); color: #fff; }
.rh-pick-review-link { display: block; font-size: 13px; color: var(--sage); text-decoration: underline; text-align: center; margin-bottom: 8px; }
.rh-pick-review-link:hover { color: var(--amber); }
.rh-pick-trial { font-size: 11px; color: var(--text-light); text-align: center; }

.rh-cta-link { font-size: 15px; font-weight: 600; color: var(--amber); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.rh-cta-link:hover { color: #d47c3a; text-decoration: underline; }

/* ── Table ── */
.rh-table-wrap { overflow-x: auto; border-radius: 14px; box-shadow: var(--shadow); }
.rh-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--white); }
.rh-table thead tr { background: var(--navy); }
.rh-table th { padding: 13px 12px; text-align: left; font-size: 12px; font-weight: 600; color: #fff; white-space: nowrap; font-family: var(--font-body); letter-spacing: .04em; text-transform: uppercase; }
.rh-table td { padding: 13px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.rh-table tr:last-child td { border-bottom: none; }
.rh-row-top td { background: #fffbf0 !important; }
.rh-row-top td:first-child { border-left: 4px solid var(--amber); }
.rh-col-rank { font-size: 1.2rem; text-align: center; width: 48px; }
.rh-table-brand { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.rh-table-model { display: block; font-size: 12px; color: var(--text-light); margin-top: 1px; }
.rh-top-badge { display: inline-block; background: var(--amber); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 2px 7px; border-radius: 10px; margin-left: 4px; vertical-align: middle; }
.rh-type-tag { background: var(--sage-light); color: var(--sage); font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 20px; white-space: nowrap; }
.rh-rating-tag { background: var(--amber-pale); color: var(--amber); font-weight: 700; font-size: 13px; padding: 3px 10px; border-radius: 20px; border: 1px solid #f0c89a; }
.rh-table-link { color: var(--navy-mid); font-size: 13px; font-weight: 500; white-space: nowrap; text-decoration: none; }
.rh-table-link:hover { color: var(--amber); }

/* ── Choose grid ── */
.rh-choose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
@media(max-width:760px){ .rh-choose-grid{grid-template-columns:1fr;} }
.rh-choose-block { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; box-shadow: var(--shadow); border-top: 4px solid var(--sage); }
.rh-choose-icon-wrap { margin-bottom: .75rem; }
.rh-choose-icon { font-size: 2rem; }
.rh-choose-block h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); margin-bottom: .5rem; }
.rh-choose-block > p { font-size: 14px; color: var(--text-mid); margin-bottom: .75rem; line-height: 1.6; }
.rh-choose-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.rh-choose-list li { font-size: 14px; color: var(--text); line-height: 1.55; }
.rh-choose-list li strong { color: var(--navy); }
.rh-choose-more { font-size: 13px; color: var(--sage); text-decoration: underline; font-weight: 500; }
.rh-choose-more:hover { color: var(--amber); }
.rh-choose-quiz-cta { background: linear-gradient(135deg, var(--sage-light), var(--cream)); border: 1px solid #c8dcd5; border-radius: 14px; padding: 2rem; text-align: center; }
.rh-choose-quiz-cta p { font-size: 16px; color: var(--navy); margin-bottom: 1.25rem; }

/* ── Trust section ── */
.rh-trust-inner { display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; align-items: start; }
@media(max-width:860px){ .rh-trust-inner{grid-template-columns:1fr;} }
.rh-trust-text .rh-section-h2 { text-align: left; }
.rh-trust-text > p { font-size: 15px; color: var(--text-mid); margin-bottom: .9rem; }
.rh-trust-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin: .75rem 0 1.25rem; }
.rh-trust-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text); }
.rh-trust-list li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.rh-trust-motto { font-size: 15px; color: var(--navy); border-left: 3px solid var(--amber); padding: .75rem 1rem; background: var(--amber-pale); border-radius: 0 10px 10px 0; margin-bottom: 1.5rem; line-height: 1.65; }
.rh-trust-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }

.rh-trust-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rh-stat-box { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; text-align: center; }
.rh-stat-highlight { background: var(--amber-pale); border-color: #f0c89a; }
.rh-stat-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--amber); }
.rh-stat-label { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ── Guides grid ── */
.rh-guides-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media(max-width:860px){ .rh-guides-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:560px){ .rh-guides-grid{grid-template-columns:1fr;} }
.rh-guide-card { display: flex; flex-direction: column; gap: .5rem; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.25rem; text-decoration: none; transition: transform .18s, box-shadow .18s, border-color .18s; box-shadow: var(--shadow); }
.rh-guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--amber); }
.rh-guide-featured { grid-column: 1 / -1; }
@media(min-width:861px){ .rh-guide-featured { grid-column: span 2; } }
.rh-guide-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 9px; border-radius: 20px; }
.rh-tag-green { background: #e8f5e9; color: #2e7d32; }
.rh-tag-blue  { background: #e8f0fe; color: #1a73e8; }
.rh-tag-orange{ background: #fff3e0; color: #e65100; }
.rh-guide-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.35; }
.rh-guide-featured .rh-guide-title { font-size: 1.15rem; }
.rh-guide-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.rh-guide-arrow { font-size: 12px; color: var(--sage); font-weight: 500; margin-top: auto; }

/* ── Tips grid ── */
.rh-tips-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media(max-width:760px){ .rh-tips-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:480px){ .rh-tips-grid{grid-template-columns:1fr;} }
.rh-tip { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; display: flex; gap: .85rem; align-items: flex-start; box-shadow: 0 1px 8px rgba(26,39,68,.05); }
.rh-tip-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--amber); flex-shrink: 0; line-height: 1.2; }
.rh-tip div { font-size: 14px; color: var(--text); line-height: 1.6; }
.rh-tip strong { color: var(--navy); }

/* ── FAQ ── */
.rh-faq-wrap { max-width: 720px; }
.rh-faq-wrap .rh-section-label,
.rh-faq-wrap .rh-section-h2 { text-align: left; }
.rh-faq-item { border-bottom: 1px solid var(--border); }
.rh-faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; cursor: pointer; font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--navy); transition: color .15s; }
.rh-faq-q:hover { color: var(--amber); }
.rh-faq-chevron { flex-shrink: 0; font-size: 16px; color: var(--text-light); transition: transform .25s; }
.rh-faq-item.open .rh-faq-chevron { transform: rotate(180deg); color: var(--amber); }
.rh-faq-a { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.rh-faq-item.open .rh-faq-a { max-height: 400px; padding-bottom: 1.1rem; }

/* ── Final CTA ── */
.rh-final-cta { position: relative; overflow: hidden; background: linear-gradient(145deg,#0e1c38 0%,#162d55 60%,#0c1f3f 100%); padding: clamp(3.5rem,8vw,6rem) 0; text-align: center; }
.rh-final-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(90,122,110,.2) 0%, transparent 65%); top: -200px; right: -100px; pointer-events: none; }
.rh-final-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.rh-final-moon { font-size: 3.5rem; margin-bottom: 1rem; display: block; animation: rhFloat 3s ease-in-out infinite; }
@keyframes rhFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.rh-final-cta h2 { font-family: var(--font-head); font-size: clamp(1.7rem,4vw,2.3rem); color: #fff; margin-bottom: .75rem; }
.rh-final-cta p { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 1rem; }
.rh-final-cta-label { font-size: 15px; color: rgba(255,255,255,.85); font-weight: 500; margin-bottom: 2rem !important; }
.rh-final-cta-label strong { color: var(--amber); }
.rh-final-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.rh-final-trust-row { font-size: 13px; color: rgba(255,255,255,.45); display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   AUTHOR BOX + ARTICLE STYLES
   ============================================================ */
.author-box {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  box-shadow: var(--shadow); margin: 2.5rem 0;
  border-left: 4px solid var(--sage);
}
.author-box-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; flex-shrink: 0;
}
.author-box-body { flex: 1; min-width: 0; }
.author-box-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sage); margin-bottom: 3px; }
.author-box-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.author-box-title { font-size: 12px; color: var(--text-light); margin-bottom: .6rem; }
.author-box-bio { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; margin-bottom: .75rem; }
.author-box-links { display: flex; gap: 8px; align-items: center; font-size: 12px; flex-wrap: wrap; }
.author-box-links a { color: var(--sage); text-decoration: underline; }
.author-box-links a:hover { color: var(--amber); }
.author-box-links span { color: var(--border); }

.author-inline { display: flex; gap: 10px; align-items: center; margin-bottom: 1.25rem; }
.author-inline-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.author-inline-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.author-inline-meta { font-size: 12px; color: var(--text-light); }
.author-inline-meta a { color: var(--sage); }

/* Long-form article layout */
.article-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
@media(max-width:900px){ .article-wrap{grid-template-columns:1fr;} }
.article-body { min-width: 0; }
.article-body h2 { font-size: 1.5rem; color: var(--navy); margin: 2.25rem 0 .9rem; border-left: 4px solid var(--amber); padding-left: 12px; }
.article-body h3 { font-size: 1.15rem; color: var(--navy); margin: 1.75rem 0 .6rem; }
.article-body p { font-size: 15px; line-height: 1.75; color: var(--text); margin-bottom: 1rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.article-body li { font-size: 15px; line-height: 1.7; margin-bottom: .4rem; color: var(--text); }
.article-body strong { color: var(--navy); }
.article-body a { color: var(--sage); text-decoration: underline; }
.article-body a:hover { color: var(--amber); }

/* Article sticky sidebar */
.article-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-toc { background: var(--sage-light); border: 1px solid #c8dcd5; border-radius: 12px; padding: 1.25rem; }
.sidebar-toc h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--sage); margin-bottom: .9rem; }
.sidebar-toc ol { padding-left: 1.2rem; }
.sidebar-toc li { margin-bottom: 7px; }
.sidebar-toc a { font-size: 13px; color: var(--navy-mid); }
.sidebar-toc a:hover { color: var(--amber); }
.sidebar-cta-box { background: var(--navy); border-radius: 12px; padding: 1.25rem; text-align: center; }
.sidebar-cta-box h4 { color: #fff; font-size: .95rem; margin-bottom: .5rem; }
.sidebar-cta-box p { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.sidebar-cta-box a { display: block; background: var(--amber); color: #fff; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; margin-bottom: 6px; }
.sidebar-cta-box a:hover { background: #d47c3a; color: #fff; }

/* Internal link box */
.article-link-box { background: var(--sage-light); border: 1px solid #c8dcd5; border-radius: 10px; padding: 1rem 1.25rem; margin: 1.5rem 0; display: flex; align-items: flex-start; gap: 10px; }
.article-link-box-icon { font-size: 1.2rem; flex-shrink: 0; }
.article-link-box-text { font-size: 14px; color: var(--text); }
.article-link-box-text strong { color: var(--navy); }
.article-link-box-text a { color: var(--sage); font-weight: 600; text-decoration: underline; }

/* Key takeaway box */
.key-takeaway { background: var(--amber-pale); border: 1.5px solid #f0c89a; border-radius: 12px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.key-takeaway h4 { color: var(--amber); font-size: .85rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem; }
.key-takeaway p { font-size: 15px; color: var(--navy); margin: 0; font-weight: 500; }

/* Article hero meta */
.article-hero-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1rem; }
.article-meta-item { font-size: 13px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 5px; }
.article-meta-item strong { color: rgba(255,255,255,.9); }

/* Review methodology page specific */
.method-criteria { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.method-criterion { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; }
.method-criterion-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--amber); flex-shrink: 0; width: 40px; }
.method-criterion h3 { font-size: 1rem; color: var(--navy); margin-bottom: .35rem; }
.method-criterion p { font-size: 14px; color: var(--text-mid); margin: 0; }
.method-score-example { background: var(--sage-light); border-radius: 10px; padding: 1rem 1.25rem; margin-top: .75rem; font-size: 13px; color: var(--sage); }

/* Homepage author strip */
.hp-author-strip {
  background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.hp-author-strip-inner {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.hp-author-strip-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.hp-author-strip-text { flex: 1; min-width: 200px; }
.hp-author-strip-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.hp-author-strip-meta { font-size: 13px; color: var(--text-light); }
.hp-author-strip-links { display: flex; gap: 10px; font-size: 12px; margin-left: auto; flex-wrap: wrap; }
.hp-author-strip-links a { color: var(--sage); text-decoration: underline; white-space: nowrap; }

/* ============================================================
   FEATURED GUIDE BLOCK — homepage money page funnel
   ============================================================ */
.rh-featured-guide-section {
  background: linear-gradient(135deg, #0e1c38 0%, #162d55 100%);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.rh-featured-guide-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(90,122,110,.2) 0%, transparent 65%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.rh-featured-guide-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: center;
  position: relative; z-index: 1;
}
@media(max-width:860px){ .rh-featured-guide-card{grid-template-columns:1fr;} .rh-featured-guide-right{display:none;} }

.rh-featured-guide-tag {
  display: inline-block;
  background: rgba(232,145,74,.2);
  border: 1px solid rgba(232,145,74,.4);
  color: var(--amber);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: .9rem;
}
.rh-featured-guide-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700; color: #fff;
  line-height: 1.25; margin-bottom: .75rem;
}
.rh-featured-guide-desc {
  font-size: 15px; color: rgba(255,255,255,.75);
  line-height: 1.7; margin-bottom: 1.1rem;
}
.rh-featured-guide-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 1.5rem;
}
.rh-featured-guide-bullets li {
  font-size: 14px; color: rgba(255,255,255,.82);
  display: flex; align-items: center; gap: 6px;
}
.rh-featured-guide-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* Mini picks widget */
.rh-featured-guide-right {}
.rh-featured-mini-picks {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 1.25rem;
}
.rh-featured-mini-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: rgba(255,255,255,.5);
  margin-bottom: .85rem;
}
.rh-mini-pick {
  display: flex; align-items: center; gap: .85rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: .85rem 1rem;
  text-decoration: none;
  transition: all .18s;
  margin-bottom: 8px;
}
.rh-mini-pick:last-child { margin-bottom: 0; }
.rh-mini-pick:hover { background: rgba(255,255,255,.12); border-color: var(--amber); transform: translateX(3px); }
.rh-mini-pick.rh-mini-gold { border-color: rgba(232,180,60,.4); background: rgba(232,180,60,.08); }
.rh-mini-medal { font-size: 1.4rem; flex-shrink: 0; }
.rh-mini-pick div { flex: 1; min-width: 0; }
.rh-mini-pick strong { display: block; font-size: 13.5px; color: #fff; font-weight: 600; }
.rh-mini-pick span:not(.rh-mini-medal):not(.rh-mini-arrow) { font-size: 12px; color: rgba(255,255,255,.55); }
.rh-mini-arrow { color: rgba(255,255,255,.4); font-size: 14px; flex-shrink: 0; }
.rh-mini-pick:hover .rh-mini-arrow { color: var(--amber); }

/* ============================================================
   HOW WE CHOOSE — Authority section
   ============================================================ */
.rh-authority-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.rh-authority-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(90,122,110,.18) 0%, transparent 65%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.rh-authority-section .rh-section-label {
  background: rgba(232,145,74,.2);
  border-color: rgba(232,145,74,.35);
  color: var(--amber);
}
.rh-authority-section .rh-section-h2 { color: #fff; }
.rh-authority-section .rh-section-intro { color: rgba(255,255,255,.72); }

.rh-authority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
@media(max-width:900px){ .rh-authority-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .rh-authority-grid{grid-template-columns:1fr;} }

.rh-authority-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.5rem;
  transition: background .18s, border-color .18s, transform .18s;
}
.rh-authority-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-3px);
}
.rh-authority-card.rh-authority-highlight {
  border-color: rgba(232,145,74,.5);
  background: rgba(232,145,74,.08);
}
.rh-authority-icon { font-size: 1.8rem; margin-bottom: .6rem; }
.rh-authority-score-bar {
  height: 4px;
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: .85rem;
}
.rh-authority-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), #6db8a8);
  border-radius: 4px;
}
.rh-authority-fill.rh-fill-amber {
  background: linear-gradient(90deg, var(--amber), #f5b56e);
}
.rh-authority-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.rh-authority-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: .75rem;
}
.rh-authority-weight {
  display: inline-block;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
}
.rh-authority-highlight .rh-authority-weight {
  background: rgba(232,145,74,.25);
  color: var(--amber);
}

.rh-authority-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  position: relative; z-index: 1;
}
.rh-authority-footer-left {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  max-width: 520px;
}
.rh-authority-footer-left strong { color: #fff; }
.rh-authority-footer-right { display: flex; gap: 0; flex-wrap: wrap; }
.rh-authority-section .rh-cta-link { color: var(--amber) !important; }
.rh-authority-section .rh-cta-link:hover { color: #f5b56e !important; }

/* ============================================================
   HERO SUBLINE + WHAT MATTERS + GUIDE STRIP
   ============================================================ */

/* Hero subline — sits between H1 and intro paragraph */
.rh-hero-subline {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,.95);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 540px;
  font-style: italic;
  border-left: 3px solid var(--amber);
  padding-left: 14px;
}

/* What Actually Matters section */
.rh-matters-section { background: var(--white); }
.rh-matters-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
@media(max-width:880px){ .rh-matters-inner{grid-template-columns:1fr;} .rh-matters-sidebar{display:none;} }

.rh-matters-points {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}
.rh-matters-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .18s, background .18s;
}
.rh-matters-point:hover {
  border-color: var(--sage);
  background: var(--sage-light);
}
.rh-matters-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.rh-matters-point strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: .3rem;
}
.rh-matters-point p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

.rh-matters-callout {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 100%);
  border-left: 4px solid var(--sage);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.65;
}

/* Sidebar quick-check widget */
.rh-matters-quick-check {
  background: var(--navy);
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}
.rh-matters-check-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.rh-matters-check-item {
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rh-matters-check-item:last-of-type { border-bottom: none; }
.rh-matters-q {
  font-size: 13.5px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.rh-matters-a {
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
}

/* Full guide strip */
.rh-guide-strip {
  background: linear-gradient(135deg, var(--sage) 0%, #3d6b5e 100%);
  padding: 1.5rem 0;
}
.rh-guide-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.rh-guide-strip-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rh-guide-strip-text strong {
  font-size: 17px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
}
.rh-guide-strip-text span {
  font-size: 13px;
  color: rgba(255,255,255,.75);
}
.rh-guide-strip .rh-btn-primary {
  background: #fff;
  color: var(--sage);
  border-color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.rh-guide-strip .rh-btn-primary:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}
@media(max-width:700px){
  .rh-guide-strip-inner { flex-direction: column; text-align: center; }
  .rh-guide-strip .rh-btn-primary { width: 100%; justify-content: center; }
}

/* ============================================================
   REVIEW PAGE v2 — full 2500-word template
   ============================================================ */
.rv-hero {
  background: linear-gradient(140deg, #0e1c38 0%, #162d55 60%, #0c1f3f 100%);
  padding: clamp(2.5rem,6vw,4.5rem) 0;
  position: relative;
}
.rv-hero-meta { display:flex;gap:8px;flex-wrap:wrap;margin:10px 0; }
.rv-hero-tag { background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);border-radius:20px;padding:3px 12px;font-size:12px;color:rgba(255,255,255,.8); }
.rv-hero-h1 { font-family:var(--font-head);font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:700;color:#fff;line-height:1.2;margin:10px 0; }
.rv-hero-sub { font-size:15px;color:rgba(255,255,255,.75);max-width:620px;line-height:1.7;margin-bottom:.75rem; }
.rv-hero-rating { display:flex;align-items:center;gap:.75rem;margin:.5rem 0; }
.rv-stars { color:#f5c842;font-size:1.3rem;letter-spacing:2px; }
.rv-hero-rating strong { color:#fff;font-size:1.1rem; }
.rv-hero-count { font-size:13px;color:rgba(255,255,255,.55); }
.rv-quick-verdict { font-size:15px;color:rgba(255,255,255,.85);background:rgba(232,145,74,.15);border:1px solid rgba(232,145,74,.3);border-radius:8px;padding:.75rem 1rem;margin-top:.75rem;display:inline-block; }

/* Layout */
.rv-layout { display:grid;grid-template-columns:1fr 280px;gap:2.5rem;align-items:start; }
@media(max-width:900px){ .rv-layout{grid-template-columns:1fr;} .rv-sidebar{display:none;} }

/* Main content sections */
.rv-main section { margin-bottom:2.5rem; }
.rv-main h2 { font-size:1.4rem;color:var(--navy);margin-bottom:.85rem;border-left:4px solid var(--amber);padding-left:12px; }
.rv-main h3 { font-size:1.1rem;color:var(--navy);margin-bottom:.5rem; }
.rv-main p { font-size:15px;line-height:1.75;color:var(--text);margin-bottom:1rem; }
.rv-main ul { padding-left:1.3rem;margin-bottom:1rem; }
.rv-main li { font-size:15px;line-height:1.7;color:var(--text);margin-bottom:.35rem; }
.rv-main a { color:var(--sage);text-decoration:underline; }
.rv-main a:hover { color:var(--amber); }

/* Score table */
.rv-score-table-wrap { overflow-x:auto;border-radius:12px;box-shadow:var(--shadow);margin-bottom:.5rem; }
.rv-score-table { width:100%;border-collapse:collapse;background:var(--white); }
.rv-score-table thead tr { background:var(--navy); }
.rv-score-table th { padding:11px 14px;text-align:left;color:#fff;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.05em; }
.rv-score-table td { padding:11px 14px;border-bottom:1px solid var(--border);vertical-align:middle;font-size:14px; }
.rv-score-table tr:last-child td { border-bottom:none; }
.rv-score-table .rv-score-total td { background:#fffbf0;font-weight:700; }
.rv-stars-col { font-size:1rem;letter-spacing:1px; }
.rv-score-col { font-weight:700;color:var(--navy);white-space:nowrap; }

/* CTA buttons in content */
.rv-verdict-cta { display:flex;gap:10px;flex-wrap:wrap;margin:1.25rem 0; }
.rv-btn-primary { display:inline-flex;align-items:center;gap:6px;background:var(--amber);color:#fff;padding:13px 22px;border-radius:10px;font-size:15px;font-weight:700;text-decoration:none;transition:all .18s; }
.rv-btn-primary:hover { background:#d47c3a;color:#fff;transform:translateY(-2px);box-shadow:0 6px 20px rgba(232,145,74,.4); }
.rv-btn-secondary { display:inline-flex;align-items:center;gap:6px;background:transparent;color:var(--navy);padding:13px 22px;border-radius:10px;font-size:15px;font-weight:600;text-decoration:none;border:2px solid var(--navy);transition:all .18s; }
.rv-btn-secondary:hover { background:var(--navy);color:#fff; }
.rv-full-review-content { font-size:15px;line-height:1.75;color:var(--text); }

/* Sidebar */
.rv-sidebar { position:sticky;top:90px;display:flex;flex-direction:column;gap:1rem; }
.rv-sidebar-card { background:var(--white);border:1px solid var(--border);border-radius:14px;padding:1.25rem;box-shadow:var(--shadow); }
.rv-sidebar-price { border-top:4px solid var(--amber); }
.rv-sb-brand { font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:var(--sage); }
.rv-sb-model { font-family:var(--font-head);font-size:1.1rem;font-weight:700;color:var(--navy);margin:.2rem 0 .4rem; }
.rv-sb-stars { color:#f5a623;font-size:1rem;letter-spacing:1px;margin-bottom:.35rem; }
.rv-sb-stars span { font-size:12px;color:var(--text-mid); }
.rv-sb-price { font-family:var(--font-head);font-size:1.8rem;font-weight:700;color:var(--navy); }
.rv-sb-price-note { font-size:12px;color:var(--text-light);margin-bottom:.85rem; }
.rv-sb-deal-btn { display:block;background:var(--amber);color:#fff;text-align:center;padding:12px;border-radius:10px;font-size:14px;font-weight:700;text-decoration:none;margin-bottom:.75rem;transition:background .15s; }
.rv-sb-deal-btn:hover { background:#d47c3a;color:#fff; }
.rv-sb-meta { display:flex;flex-direction:column;gap:4px;font-size:12px;color:var(--text-light); }
.rv-sb-toc-title { font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--sage);margin-bottom:.75rem; }
.rv-sb-toc { padding-left:1.1rem;display:flex;flex-direction:column;gap:5px; }
.rv-sb-toc li a { font-size:13px;color:var(--navy-mid);text-decoration:none; }
.rv-sb-toc li a:hover { color:var(--amber); }
.rv-sb-related { display:flex;flex-direction:column;gap:6px; }
.rv-sb-related-link { display:flex;flex-direction:column;gap:1px;background:var(--cream);border-radius:8px;padding:.65rem .9rem;text-decoration:none;transition:background .15s; }
.rv-sb-related-link:hover { background:var(--sage-light); }
.rv-sb-related-type { font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:var(--sage); }
.rv-sb-related-link span:last-child { font-size:13px;color:var(--navy);font-weight:500; }

/* ============================================================
   COMPARISON PAGE — vs layout
   ============================================================ */
.comp-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin: 1.5rem 0;
}
@media(max-width:640px){ .comp-hero-grid{grid-template-columns:1fr;} .comp-vs{text-align:center;} }
.comp-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  box-shadow: var(--shadow);
}
.comp-card-a { border-color: var(--sage); }
.comp-card-b { border-color: var(--amber); }
.comp-card-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); }
.comp-card-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--sage); }
.comp-card-model { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.comp-card-type { font-size: 12px; color: var(--text-light); }
.comp-card-price { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-top: .25rem; }
.comp-card-stars { color: #f5c842; font-size: .95rem; letter-spacing: 1px; }
.comp-card-meta { font-size: 12px; color: var(--text-light); }
.comp-card-btn {
  display: block; text-align: center;
  background: var(--sage); color: #fff;
  padding: 10px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; margin-top: .5rem;
  transition: background .15s;
}
.comp-card-btn:hover { background: #3d6b5e; color: #fff; }
.comp-card-btn-b { background: var(--amber); }
.comp-card-btn-b:hover { background: #d47c3a; }
.comp-card-review { font-size: 12px; color: var(--text-light); text-align: center; text-decoration: underline; }
.comp-card-review:hover { color: var(--amber); }
.comp-vs {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
  padding: 0 .5rem;
}

.comp-diff-table-wrap { overflow-x: auto; border-radius: 12px; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.comp-diff-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 14px; }
.comp-diff-table thead tr { background: var(--navy); }
.comp-diff-table th { padding: 12px 14px; text-align: left; color: #fff; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.comp-diff-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.comp-diff-table tr:last-child td { border-bottom: none; }
.comp-diff-table td:first-child { font-size: 13px; color: var(--text-light); white-space: nowrap; }

.comp-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media(max-width:580px){ .comp-final-grid{grid-template-columns:1fr;} }
.comp-final-card {
  border-radius: 14px;
  padding: 1.25rem;
  border: 2px solid var(--border);
}
.comp-final-a { border-color: var(--sage); background: var(--sage-light); }
.comp-final-b { border-color: var(--amber); background: var(--amber-pale); }
.comp-final-tag {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: .6rem;
}
.comp-final-a .comp-final-tag { color: var(--sage); }
.comp-final-b .comp-final-tag { color: var(--amber); }
.comp-final-card p { font-size: 14px; color: var(--text); line-height: 1.6; }
