/* ============================================================
   TOPBETTINGSA — MAIN STYLESHEET
   topbettingsa.com · South African bookmaker reviews
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --c-green-dark:    #0f2d1e;
  --c-green:         #1a9e5c;
  --c-green-light:   #4cd68a;
  --c-green-bg:      #f0fdf4;
  --c-green-border:  #bbf7d0;
  --c-green-text:    #166534;
  --c-text-dark:     #111111;
  --c-text-body:     #374151;
  --c-text-muted:    #6b7280;
  --c-border:        #e5e7eb;
  --c-bg-light:      #f9fafb;
  --c-white:         #ffffff;
  --c-amber-bg:      #fff7ed;
  --c-amber-border:  #fed7aa;
  --c-amber-text:    #92400e;
  --c-red-bg:        #fef2f2;
  --c-red-border:    #fecaca;
  --c-red-text:      #991b1b;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --container: 1160px;
  --header-h: 68px;
  --transition: 0.18s ease;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-body);
  background: var(--c-white);
  padding-top: var(--header-h);
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-green-dark); }
ul, ol { padding-left: 1.4em; }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--c-text-dark);
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: clamp(26px, 4vw, 40px); }
h2 { font-size: clamp(20px, 3vw, 28px); }
h3 { font-size: 18px; }
h4 { font-size: 15px; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--c-text-dark); }

/* ── 4. LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--page   { max-width: 820px; padding: 40px 20px 80px; }
.container--review { max-width: 900px; padding: 24px 20px 80px; }

#page-wrap { min-height: calc(100vh - var(--header-h)); }

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
  padding: 10px 20px;
}
.btn--primary:hover {
  background: #158a4f;
  border-color: #158a4f;
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,158,92,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--c-green);
  border-color: var(--c-green);
  padding: 8px 18px;
}
.btn--ghost:hover { background: var(--c-green-bg); color: var(--c-green-dark); }
.btn--outline {
  background: transparent;
  color: var(--c-green);
  border-color: var(--c-green);
  padding: 10px 24px;
}
.btn--outline:hover { background: var(--c-green); color: var(--c-white); }
.btn--sm  { font-size: 13px; padding: 7px 14px; }
.btn--lg  { font-size: 15px; padding: 12px 28px; }
.btn--xl  { font-size: 16px; padding: 14px 32px; border-radius: var(--radius-md); }
.btn--block { width: 100%; }

/* ── 6. STARS ───────────────────────────────────────────────── */
.tbsa-stars { display: inline-flex; align-items: center; gap: 1px; }
.star { font-size: 16px; }
.star--full  { color: #f59e0b; }
.star--half  { color: #f59e0b; opacity: 0.6; }
.star--empty { color: #d1d5db; }
.stars-score { font-size: 15px; font-weight: 700; color: var(--c-text-dark); margin-left: 4px; }

/* ── 7. SCORE BADGES ───────────────────────────────────────── */
.score--outstanding { color: var(--c-green-text); }
.score--excellent   { color: var(--c-green-text); }
.score--good        { color: var(--c-amber-text); }
.score--poor        { color: var(--c-red-text); }

/* ── 8. HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

/* Logo */
.header-logo a { display: flex; align-items: center; }
.header-logo img { height: 42px; width: auto; }
.logo-text-link {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-text-dark);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo-sa { color: var(--c-green); }

/* Primary nav */
.header-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
}
.nav-menu li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
  color: var(--c-green);
  background: var(--c-green-bg);
}
/* Dropdown */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 6px;
  z-index: 100;
  list-style: none;
}
.nav-menu li { position: relative; }
.nav-menu li:hover > .sub-menu { display: block; }

/* Right side */
.header-right { display: flex; align-items: center; gap: 12px; }
.age-badge {
  background: var(--c-green-dark);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.open .toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open .toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle.open .toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── 9. HOMEPAGE — HERO ────────────────────────────────────── */
.home-hero {
  background: var(--c-green-dark);
  padding: 64px 0 56px;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-text { flex: 1; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-green-light);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-green-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Stats cards */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
  min-width: 140px;
}
.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ── 10. HOMEPAGE — RANKINGS ───────────────────────────────── */
.home-rankings { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-title { font-size: clamp(22px, 3vw, 30px); margin-bottom: 10px; }
.section-sub { font-size: 15px; color: var(--c-text-muted); max-width: 560px; margin: 0 auto; }

/* Filter bar */
.ranking-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--c-border);
  border-radius: 100px;
  background: var(--c-white);
  color: var(--c-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--c-green); color: var(--c-green); }
.filter-btn--active {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-white);
}

/* Rankings list */
.rankings-list { display: flex; flex-direction: column; gap: 16px; }

/* ── 11. REVIEW CARD ───────────────────────────────────────── */
.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 140px 1fr auto;
  gap: 20px;
  align-items: start;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: #d1d5db; }
.review-card--top {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(26,158,92,0.08);
}

/* Rank badge */
.card-rank {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  background: var(--c-bg-light);
  color: var(--c-text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}
.rank-1 { background: #fef3c7; color: #92400e; }
.rank-2 { background: #f1f5f9; color: #475569; }
.rank-3 { background: #fde8d8; color: #7c3d12; }

/* Editor's choice badge */
.card-badge-top {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--c-green);
  color: var(--c-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* Logo */
.card-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.card-logo { max-width: 130px; max-height: 60px; object-fit: contain; }
.card-logo-placeholder {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: var(--c-green-dark);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
}

/* Card info */
.card-name { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.card-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.card-score { font-size: 18px; font-weight: 800; }
.card-label { font-size: 12px; font-weight: 600; background: var(--c-green-bg); color: var(--c-green-text); padding: 2px 8px; border-radius: 4px; }
.card-verdict { font-size: 13px; color: var(--c-text-muted); margin-bottom: 10px; line-height: 1.5; }
.card-pros { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.card-pros li { font-size: 13px; color: var(--c-text-body); padding-left: 18px; position: relative; }
.card-pros li::before { content: "✓"; position: absolute; left: 0; color: var(--c-green); font-weight: 700; }

/* Card aside */
.card-aside { display: flex; flex-direction: column; gap: 10px; min-width: 200px; }
.card-bonus, .card-min-dep {
  background: var(--c-bg-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  border: 1px solid var(--c-border);
}
.bonus-label, .min-dep-label { display: block; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--c-text-muted); margin-bottom: 3px; }
.bonus-value, .min-dep-value { display: block; font-size: 13px; font-weight: 700; color: var(--c-text-dark); }
.card-ctas { display: flex; flex-direction: column; gap: 8px; }
.card-tc { font-size: 10px; color: var(--c-text-muted); text-align: center; }

/* ── 12. HOMEPAGE — CRITERIA GRID ─────────────────────────── */
.home-criteria { background: var(--c-bg-light); padding: 60px 0; }
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.criteria-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.criteria-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.criteria-name { font-size: 13px; font-weight: 700; color: var(--c-text-dark); }
.criteria-weight { font-size: 11px; padding: 2px 8px; border-radius: 4px; background: var(--c-green-bg); color: var(--c-green-text); border: 1px solid var(--c-green-border); font-weight: 600; }
.criteria-desc { font-size: 12px; color: var(--c-text-muted); line-height: 1.5; margin: 0; }
.criteria-cta { text-align: center; }

/* ── 13. TRUST STRIP ───────────────────────────────────────── */
.home-trust { padding: 48px 0; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-block { display: flex; gap: 14px; align-items: flex-start; }
.trust-icon { font-size: 24px; flex-shrink: 0; }
.trust-block strong { display: block; font-size: 14px; color: var(--c-text-dark); margin-bottom: 4px; }
.trust-block p { font-size: 13px; color: var(--c-text-muted); margin: 0; line-height: 1.5; }

/* ── 14. RG STRIPS ─────────────────────────────────────────── */
.home-rg-strip {
  background: var(--c-green-bg);
  border-top: 1px solid var(--c-green-border);
  border-bottom: 1px solid var(--c-green-border);
  padding: 16px 0;
  text-align: center;
}
.home-rg-strip p { font-size: 13px; color: var(--c-green-text); margin: 0; }
.home-rg-strip a { color: var(--c-green-text); text-decoration: underline; }

/* ── 15. BREADCRUMB ────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: var(--c-green); }
.breadcrumb span { color: var(--c-border); }

/* ── 16. REVIEW HEADER CARD ────────────────────────────────── */
.review-header-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.review-header-card--top { border-color: var(--c-green); box-shadow: 0 0 0 3px rgba(26,158,92,0.08); }

.rhc-logo-col { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.rhc-logo { max-width: 150px; max-height: 70px; object-fit: contain; }
.rhc-logo-placeholder {
  width: 80px; height: 80px;
  border-radius: var(--radius-md);
  background: var(--c-green-dark);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
}
.rhc-tested { font-size: 11px; color: var(--c-text-muted); text-align: center; }

.rhc-title { font-size: clamp(18px, 3vw, 24px); margin-bottom: 10px; }
.rhc-year { color: var(--c-text-muted); font-weight: 400; }
.rhc-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rhc-score-badge { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 4px; }
.score--outstanding .rhc-score-badge,
.rhc-score-badge.score--outstanding { background: var(--c-green-bg); color: var(--c-green-text); border: 1px solid var(--c-green-border); }
.rhc-score-badge.score--excellent { background: var(--c-green-bg); color: var(--c-green-text); border: 1px solid var(--c-green-border); }
.rhc-score-badge.score--good { background: var(--c-amber-bg); color: var(--c-amber-text); border: 1px solid var(--c-amber-border); }
.rhc-score-badge.score--poor { background: var(--c-red-bg); color: var(--c-red-text); border: 1px solid var(--c-red-border); }
.rhc-verdict { font-size: 14px; color: var(--c-text-body); line-height: 1.6; margin-bottom: 10px; }
.rhc-license { font-size: 12px; color: var(--c-text-muted); }

.rhc-cta-col { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.rhc-tc { font-size: 10px; color: var(--c-text-muted); text-align: center; }
.rhc-quick-stats { border-top: 1px solid var(--c-border); padding-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.rqs-item { display: flex; justify-content: space-between; align-items: center; }
.rqs-l { font-size: 12px; color: var(--c-text-muted); }
.rqs-v { font-size: 13px; font-weight: 700; color: var(--c-text-dark); }

/* ── 17. PROS & CONS ───────────────────────────────────────── */
.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.pros-col, .cons-col {
  border-radius: var(--radius-md);
  padding: 20px;
}
.pros-col { background: var(--c-green-bg); border: 1px solid var(--c-green-border); }
.cons-col { background: var(--c-red-bg); border: 1px solid var(--c-red-border); }
.pc-heading { font-size: 14px; margin-bottom: 12px; }
.pc-heading--pros { color: var(--c-green-text); }
.pc-heading--cons { color: var(--c-red-text); }
.pc-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pc-list li { font-size: 13px; padding-left: 20px; position: relative; line-height: 1.5; }
.pc-list--pros li { color: var(--c-green-text); }
.pc-list--pros li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; color: var(--c-green); }
.pc-list--cons li { color: var(--c-red-text); }
.pc-list--cons li::before { content: "✗"; position: absolute; left: 0; font-weight: 700; }

/* ── 18. REVIEW CONTENT (Gutenberg) ───────────────────────── */
.review-body { margin-bottom: 40px; }
.review-content h2 { font-size: 22px; margin: 36px 0 12px; padding-bottom: 10px; border-bottom: 2px solid var(--c-green); }
.review-content h3 { font-size: 17px; margin: 28px 0 10px; }
.review-content p { font-size: 15px; line-height: 1.8; margin-bottom: 1.2em; }
.review-content ul, .review-content ol { margin-bottom: 1.2em; padding-left: 1.6em; }
.review-content li { margin-bottom: 0.4em; }
.review-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.4em; font-size: 14px; }
.review-content th, .review-content td { border: 1px solid var(--c-border); padding: 10px 14px; text-align: left; }
.review-content th { background: var(--c-bg-light); font-weight: 700; }
.review-content tr:nth-child(even) td { background: var(--c-bg-light); }

/* ── 19. SCORING SECTION ───────────────────────────────────── */
.review-scoring {
  background: var(--c-bg-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.review-scoring .section-title { font-size: 20px; margin-bottom: 6px; }
.review-scoring .section-sub { font-size: 13px; margin-bottom: 24px; text-align: left; max-width: none; }
.scoring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.score-row { background: var(--c-white); border-radius: var(--radius-md); padding: 14px 16px; border: 1px solid var(--c-border); }
.score-row-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.score-name { font-size: 13px; font-weight: 700; color: var(--c-text-dark); flex: 1; }
.score-weight { font-size: 10px; color: var(--c-text-muted); margin: 0 8px; }
.score-val { font-size: 14px; font-weight: 800; }
.score-desc { font-size: 11px; color: var(--c-text-muted); line-height: 1.4; margin-bottom: 8px; }
.score-bar { height: 5px; background: var(--c-border); border-radius: 3px; }
.score-bar-fill { height: 100%; border-radius: 3px; background: var(--c-green); transition: width 0.6s ease; }

.overall-score-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--c-green-bg);
  border: 2px solid var(--c-green-border);
  border-radius: var(--radius-md);
  padding: 18px 24px;
}
.osb-label { font-size: 13px; font-weight: 600; color: var(--c-green-text); }
.osb-score { font-size: 32px; font-weight: 800; color: var(--c-green-text); }
.osb-verdict { font-size: 13px; background: var(--c-green); color: var(--c-white); padding: 3px 12px; border-radius: 4px; font-weight: 700; }

/* ── 20. PAYMENT METHODS ────────────────────────────────────── */
.review-payments {
  margin-bottom: 28px;
  padding: 24px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.review-payments h2 { font-size: 20px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--c-green); }
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.payment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--c-border);
}
.payment-item--yes { background: var(--c-green-bg); border-color: var(--c-green-border); color: var(--c-green-text); }
.payment-item--no { background: var(--c-bg-light); color: var(--c-text-muted); opacity: 0.6; }
.payment-check { font-weight: 700; font-size: 14px; }

/* ── 21. CTA REPEAT ─────────────────────────────────────────── */
.review-cta-repeat {
  text-align: center;
  padding: 32px;
  background: var(--c-green-dark);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.review-cta-repeat h3 { font-size: 20px; color: var(--c-white); margin-bottom: 8px; }
.ctar-bonus { font-size: 15px; color: var(--c-green-light); margin-bottom: 20px; font-weight: 600; }
.ctar-tc { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 12px; }

/* ── 22. REVIEW RG STRIP ────────────────────────────────────── */
.review-rg-strip {
  background: var(--c-green-bg);
  border: 1px solid var(--c-green-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 40px;
}
.review-rg-strip p { font-size: 13px; color: var(--c-green-text); margin: 0; }
.review-rg-strip a { color: var(--c-green); }

/* ── 23. ARCHIVE ────────────────────────────────────────────── */
.archive-header { margin-bottom: 40px; }
.archive-title { font-size: 28px; margin-bottom: 10px; }
.archive-desc { font-size: 15px; color: var(--c-text-muted); }
.archive-pagination { margin-top: 40px; display: flex; justify-content: center; }
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-body);
  margin: 0 3px;
  transition: all var(--transition);
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover { background: var(--c-green); color: var(--c-white); border-color: var(--c-green); }

/* ── 24. PAGE CONTENT ───────────────────────────────────────── */
.page-header { margin-bottom: 32px; padding-bottom: 20px; border-bottom: 2px solid var(--c-green); }
.page-title { font-size: 30px; }
.page-content p { font-size: 15px; line-height: 1.8; margin-bottom: 1.2em; }
.page-content h2 { font-size: 22px; margin: 36px 0 12px; }
.page-content h3 { font-size: 17px; margin: 24px 0 10px; }

/* ── 25. FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--c-green-dark); margin-top: 60px; }

.footer-top { padding: 56px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo-text { font-size: 22px; font-weight: 800; color: var(--c-white); display: block; margin-bottom: 14px; }
.footer-logo-text span { color: var(--c-green-light); }
.footer-about { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}
.footer-badge--rg { background: rgba(26,158,92,0.2); color: var(--c-green-light); border-color: rgba(26,158,92,0.3); }

/* Footer logo from WP custom logo */
.footer-col--brand .custom-logo-link img { height: 40px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }

.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-nav { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-nav li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-nav li a:hover { color: var(--c-white); }

.footer-helpline {
  margin-top: 20px;
  background: var(--c-green);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.helpline-label { display: block; font-size: 11px; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.helpline-number { display: block; font-size: 22px; font-weight: 800; color: var(--c-white); letter-spacing: 1px; margin-bottom: 4px; }
.helpline-note { display: block; font-size: 11px; color: rgba(255,255,255,0.7); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 900px;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.65); }
.footer-legal-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-legal-links { list-style: none; display: flex; gap: 16px; flex-wrap: wrap; padding: 0; }
.footer-legal-links li a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-legal-links li a:hover { color: rgba(255,255,255,0.8); }

/* ── 26. UTILITY ────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-green { color: var(--c-green); }
.text-muted { color: var(--c-text-muted); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* ── 27. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: row; justify-content: center; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
  .review-card { grid-template-columns: 36px 1fr auto; }
  .card-logo-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  body { padding-top: var(--header-h); }

  .menu-toggle { display: flex; }
  .header-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .header-nav.open { display: block; }
  .nav-menu { flex-direction: column; gap: 0; }
  .nav-menu li a { padding: 12px 4px; border-bottom: 1px solid var(--c-border); border-radius: 0; font-size: 15px; }
  .nav-menu .sub-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; }

  .review-card { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .card-rank { display: none; }
  .card-aside { min-width: auto; }

  .review-header-card { grid-template-columns: 1fr; }
  .rhc-cta-col { min-width: auto; }
  .review-pros-cons { grid-template-columns: 1fr; }
  .scoring-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }

  .trust-strip { grid-template-columns: 1fr; gap: 20px; }
  .criteria-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal-row { flex-direction: column; align-items: flex-start; }
  .home-hero { padding: 40px 0; }
  .hero-stats { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .ranking-filters { gap: 6px; }
  .filter-btn { font-size: 12px; padding: 6px 14px; }
  .payment-grid { grid-template-columns: 1fr; }
  .rhc-rating { flex-wrap: wrap; }
  .overall-score-box { flex-direction: column; gap: 8px; text-align: center; }
  .footer-legal-links { flex-direction: column; gap: 8px; }
}

/* ── 28. WP ALIGN CLASSES ───────────────────────────────────── */
.aligncenter { display: block; margin: 0 auto 1.2em; }
.alignleft { float: left; margin: 0 1.4em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.4em; }
.alignwide { max-width: 100%; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }

/* ── 29. PRINT ──────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .card-ctas, .review-cta-repeat, .ranking-filters { display: none; }
  body { padding-top: 0; }
  .review-card { border: 1px solid #000; page-break-inside: avoid; }
}
