/* ============================================
   fbwhnew-tokens.css
   Shared design tokens for findbestwebhosting.com
   Import this on every page across the site
   ============================================ */

:root {
  /* ── Colours ── */
  --navy:    #0f1f38;
  --slate:   #1c2e4a;
  --amber:   #e8943a;
  --amber-l: #fdf0e3;
  --amber-d: #c4721f;
  --white:   #ffffff;
  --off:     #f7f8fa;
  --border:  #dde3ec;
  --text:    #1a2535;
  --muted:   #5a6a82;
  --green:   #1a7f5a;
  --green-l: #e6f4ee;
  --red-l:   #fdf0f0;
  --red:     #c0392b;

  /* ── Typography ── */
  --serif: 'Lora', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --base-size: 17px;

  /* ── Layout ── */
  --radius:    12px;
  --radius-sm: 8px;
  --max-width: 700px;
}

/* ── Base resets ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--sans);
  font-size: var(--base-size);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}/* ============================================================
   fbwhnew.css — New FBWH Homepage Design 2026
   findbestwebhosting.com
   Fonts: Lora (headlines) + DM Sans (body)
   ============================================================ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #f8f7f4;
  color: #0d1117;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Design Tokens ─── */
:root {
  --navy:      #1c2333;
  --navy-dk:   #0f1923;
  --ink:       #0d1117;
  --ink-soft:  #4a5568;
  --surface:   #f8f7f4;
  --white:     #ffffff;
  --amber:     #e8943a;
  --amber-dk:  #c4721f;
  --teal:      #1a7b6e;
  --teal-lt:   #e6f4f2;
  --border:    #e2dfd8;
  --serif:     'Lora', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
  --r:         10px;
  --sh-sm:     0 1px 3px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.05);
  --sh-md:     0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
}

/* ─── Utilities ─── */
.fbwh-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }
.section-label {
  font-size: .95rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 6px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy); line-height: 1.2;
  letter-spacing: -.02em; margin-bottom: 8px;
}
.section-sub {
  font-size: 1.05rem; color: var(--ink-soft);
  font-weight: 300; max-width: 480px;
}

/* ─── Fade-in animations ─── */
.fade { opacity:0; transform:translateY(18px); animation: fadeUp .5s ease forwards; }
.fade:nth-child(2){ animation-delay:.08s; }
.fade:nth-child(3){ animation-delay:.16s; }
.fade:nth-child(4){ animation-delay:.24s; }
.fade:nth-child(5){ animation-delay:.32s; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.fbwh-trust-bar {
  background: var(--navy-dk);
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  text-align: center;
  padding: 7px 20px;
  letter-spacing: .03em;
}
.fbwh-trust-bar strong { color: var(--amber); }

/* ══════════════════════════════════════════
   HEADER — dark navy
══════════════════════════════════════════ */
.fbwh-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.fbwh-header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 20px; height: 56px;
  max-width: 1100px; margin: 0 auto;
}
.fbwh-logo {
  display: flex; align-items: center; gap: 3px;
  font-family: var(--serif);
  font-size: 1.25rem; color: #fff;
  letter-spacing: .01em;
}
.fbwh-logo-dot {
  width: 6px; height: 6px;
  background: var(--amber); border-radius: 50%;
  margin-bottom: 4px; flex-shrink: 0;
}
.fbwh-nav-links {
  display: flex; align-items: center; gap: 4px;
}
.fbwh-nav-links a {
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,.6);
  padding: 6px 12px; border-radius: 6px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.fbwh-nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.fbwh-nav-links .nav-cta {
  background: var(--amber); color: #fff !important;
  margin-left: 8px; padding: 7px 16px; font-weight: 600;
}
.fbwh-nav-links .nav-cta:hover { background: var(--amber-dk) !important; }

/* Hamburger */
.fbwh-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.fbwh-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.7); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* Mobile drawer */
.fbwh-nav-drawer {
  display: none; flex-direction: column;
  background: var(--navy-dk);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 12px 20px 20px;
}
.fbwh-nav-drawer.open { display: flex; }
.fbwh-nav-drawer a {
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .18s;
}
.fbwh-nav-drawer a:hover { color: var(--amber); }
.fbwh-nav-drawer .drawer-cta {
  margin-top: 14px;
  background: var(--amber); color: #fff !important;
  padding: 12px; border-radius: 8px;
  text-align: center; font-weight: 600;
  border-bottom: none;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.fbwh-hero {
  background: var(--white);
  padding: 56px 0 52px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.fbwh-hero::after {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(232,148,58,.08) 0%, transparent 70%);
  pointer-events: none;
}
.fbwh-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center;
}
.fbwh-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--teal-lt); color: var(--teal);
  font-size: .95rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 20px;
}
.fbwh-hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%;
  animation: fbwhPulse 2.2s infinite;
}
@keyframes fbwhPulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.4;transform:scale(1.4)}
}
.fbwh-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.13; letter-spacing: -.025em;
  color: var(--navy); margin-bottom: 16px;
}
.fbwh-hero h1 em { font-style: italic; color: var(--amber); }
.fbwh-hero-sub {
  font-size: 1rem; color: var(--ink-soft);
  font-weight: 300; line-height: 1.65;
  max-width: 420px; margin-bottom: 10px;
}
.fbwh-hero-disclosure {
  font-size: .97rem; color: var(--ink-soft);
  opacity: .7; margin-bottom: 28px;
}
.fbwh-hero-disclosure a { color: var(--teal); font-weight: 600; }

/* Stats row */
.fbwh-hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  background: var(--surface);
}
.fbwh-stat-item {
  flex: 1; min-width: 80px;
  padding: 14px 16px; text-align: center;
  border-right: 1px solid var(--border);
}
.fbwh-stat-item:last-child { border-right: none; }
.fbwh-stat-num {
  font-family: var(--serif);
  font-size: 1.55rem; color: var(--navy);
  line-height: 1; display: block;
}
.fbwh-stat-lbl {
  font-size: 1rem; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: .06em;
  display: block; margin-top: 3px;
}

/* ══════════════════════════════════════════
   QUIZ CARD
══════════════════════════════════════════ */
.fbwh-quiz-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px;
  box-shadow: var(--sh-md);
  position: relative; z-index: 1;
}
.fbwh-quiz-progress {
  display: flex; gap: 5px; margin-bottom: 18px;
}
.fbwh-quiz-progress span {
  flex: 1; height: 3px; border-radius: 3px;
  background: var(--border); transition: background .3s;
}
.fbwh-quiz-progress span.done { background: var(--amber); }
.fbwh-quiz-step { display: none; }
.fbwh-quiz-step.active { display: block; }
.fbwh-quiz-q {
  font-size: .8rem; font-weight: 700;
  color: var(--ink-soft); text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 14px;
}
.fbwh-quiz-opts {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 18px;
}
.fbwh-quiz-opt {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 7px; padding: 9px 16px;
  font-family: var(--sans); font-size: .95rem;
  font-weight: 500; color: var(--ink);
  cursor: pointer; transition: all .16s;
}
.fbwh-quiz-opt:hover { border-color: var(--navy); color: var(--navy); }
.fbwh-quiz-opt.selected {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.fbwh-quiz-next {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: #fff;
  font-family: var(--sans); font-weight: 600;
  font-size: 1rem; padding: 12px 22px;
  border-radius: 8px; border: none;
  cursor: pointer; transition: background .18s;
  width: 100%; justify-content: center;
}
.fbwh-quiz-next:hover { background: var(--amber-dk); }
.fbwh-quiz-next:disabled {
  background: var(--border); color: var(--ink-soft); cursor: not-allowed;
}
.fbwh-quiz-result { display: none; }
.fbwh-quiz-result.active { display: block; }
.fbwh-result-badge {
  display: inline-block;
  background: var(--teal-lt); color: var(--teal);
  font-size: .95rem; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 10px;
}
.fbwh-result-host {
  font-family: var(--serif);
  font-size: 1.4rem; color: var(--navy); margin-bottom: 6px;
}
.fbwh-result-reason {
  font-size: .95rem; color: var(--ink-soft);
  line-height: 1.7; margin-bottom: 16px;
}
.fbwh-result-btns { display: flex; gap: 10px; }
.fbwh-btn-primary {
  flex: 1; background: var(--navy); color: #fff;
  border: none; border-radius: 7px;
  padding: 11px 16px; font-family: var(--sans);
  font-size: .95rem; font-weight: 600;
  cursor: pointer; text-align: center;
  display: inline-block; transition: background .18s;
}
.fbwh-btn-primary:hover { background: var(--amber); }
.fbwh-btn-ghost {
  background: transparent; color: var(--ink-soft);
  border: 1.5px solid var(--border);
  border-radius: 7px; padding: 11px 16px;
  font-family: var(--sans); font-size: .95rem;
  font-weight: 500; cursor: pointer;
  display: inline-block; transition: all .18s;
}
.fbwh-btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

/* ══════════════════════════════════════════
   SITUATION CARDS
══════════════════════════════════════════ */
.fbwh-situations { padding: 64px 0; background: var(--surface); }
.fbwh-sit-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 28px;
  flex-wrap: wrap; gap: 12px;
}
.fbwh-view-all {
  font-size: .8rem; font-weight: 600;
  color: var(--teal); display: flex;
  align-items: center; gap: 5px; transition: gap .18s;
}
.fbwh-view-all:hover { gap: 9px; }
.fbwh-sit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.fbwh-sit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px 16px;
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: block;
}
.fbwh-sit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--amber);
}
.fbwh-sit-card.india { border-color: var(--amber); background: #fffbf5; }
.fbwh-sit-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.fbwh-sit-title {
  font-size: 1rem; font-weight: 600;
  color: var(--navy); line-height: 1.35; margin-bottom: 5px;
}
.fbwh-sit-sub { font-size: .95rem; color: var(--ink-soft); line-height: 1.4; }
.fbwh-sit-arrow {
  display: block; margin-top: 14px;
  font-size: .95rem; font-weight: 700;
  color: var(--amber); letter-spacing: .03em;
}

/* ══════════════════════════════════════════
   WHO WE RECOMMEND
══════════════════════════════════════════ */
.fbwh-recommend { padding: 64px 0; background: var(--navy); }
.fbwh-recommend .section-label { color: rgba(255,255,255,.4); }
.fbwh-recommend .section-title { color: #fff; }
.fbwh-recommend .section-sub { color: rgba(255,255,255,.5); }
.fbwh-rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px; margin-top: 32px;
}
.fbwh-rec-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r); padding: 20px;
  transition: background .2s, border-color .2s;
}
.fbwh-rec-card:hover {
  background: rgba(255,255,255,.08); border-color: var(--amber);
}
.fbwh-rec-host {
  font-size: .95rem; font-weight: 700;
  color: var(--amber); margin-bottom: 6px;
}
.fbwh-rec-for {
  font-size: .95rem; font-weight: 600;
  color: rgba(255,255,255,.35);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px;
}
.fbwh-rec-desc { font-size: .92rem; color: rgba(255,255,255,.55); line-height: 1.55; }
.fbwh-rec-link {
  display: inline-block; margin-top: 14px;
  font-size: .97rem; font-weight: 600;
  color: var(--amber); transition: opacity .18s;
}
.fbwh-rec-link:hover { opacity: .7; }

/* ══════════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════════ */
.fbwh-compare { padding: 64px 0; background: var(--white); }
.fbwh-compare-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 28px;
  flex-wrap: wrap; gap: 12px;
}
.fbwh-tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.fbwh-tbl-wrap table {
  width: 100%; border-collapse: collapse;
  font-size: .97rem; min-width: 600px;
}
.fbwh-tbl-wrap thead th {
  padding: 12px 16px; text-align: left;
  font-size: .92rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-soft);
  border-bottom: 2px solid var(--border);
  white-space: nowrap; background: var(--surface);
}
.fbwh-tbl-wrap tbody tr {
  border-bottom: 1px solid var(--border); transition: background .15s;
}
.fbwh-tbl-wrap tbody tr:hover { background: #fffbf5; }
.fbwh-tbl-wrap tbody tr.tbl-featured { background: #fffdf8; }
.fbwh-tbl-wrap tbody td { padding: 14px 16px; vertical-align: middle; }
.fbwh-tbl-name { font-weight: 600; font-size: 1rem; color: var(--navy); }
.fbwh-tbl-type { font-size: .82rem; color: var(--ink-soft); margin-top: 2px; }
.fbwh-uptime-pill {
  display: inline-block;
  background: #e8f5e9; color: #2e7d32;
  font-size: .82rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
}
.fbwh-speed-wrap { display: flex; align-items: center; gap: 8px; }
.fbwh-speed-bar {
  height: 5px; border-radius: 3px;
  background: var(--border); flex: 1;
  overflow: hidden; min-width: 50px;
}
.fbwh-speed-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #2ab99d);
  border-radius: 3px; transition: width .7s ease;
}
.fbwh-speed-val { font-size: 1rem; font-weight: 600; white-space: nowrap; }
.fbwh-tbl-price { font-weight: 700; color: var(--navy); }
.fbwh-tbl-price .mo { font-weight: 400; font-size: .95rem; color: var(--ink-soft); }
.fbwh-stars-sm { color: var(--amber); font-size: .92rem; }
.fbwh-tbl-btn {
  display: inline-block;
  background: var(--navy); color: #fff;
  padding: 8px 16px; border-radius: 6px;
  font-size: .87rem; font-weight: 600;
  white-space: nowrap; transition: background .18s;
}
.fbwh-tbl-btn:hover { background: var(--amber); }
.fbwh-tbl-btn.outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border);
}
.fbwh-tbl-btn.outline:hover { background: var(--navy); color: #fff; }
.fbwh-tbl-note {
  font-size: .95rem; color: var(--ink-soft);
  margin-top: 12px; line-height: 1.5;
}
.fbwh-tbl-note a { color: var(--teal); font-weight: 600; }

/* Verdict chips — comparison table */
.fbwh-verdict-wrap { display: flex; align-items: center; }
.fbwh-verdict-chip {
  display: inline-block;
  font-size: .82rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  white-space: nowrap; letter-spacing: .01em;
}
.chip-fastest { background: #fff3e0; color: #b45309; }
.chip-fast    { background: #e8f5e9; color: #2e7d32; }
.chip-good    { background: #e3f2fd; color: #1565c0; }
.fbwh-tbl-bestfor {
  font-size: .84rem; color: var(--ink-soft); line-height: 1.4;
}

/* ══════════════════════════════════════════
   FEATURED ARTICLES
══════════════════════════════════════════ */
.fbwh-articles { padding: 64px 0; background: var(--surface); }
.fbwh-art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 32px;
}
.fbwh-art-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.fbwh-art-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.fbwh-art-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.fbwh-art-cat {
  font-size: .92rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}
.cat-woo   { color: #7c3aed; }
.cat-india { color: var(--teal); }
.cat-vps   { color: #0369a1; }
.fbwh-art-title {
  font-family: var(--serif);
  font-size: 1.05rem; color: var(--navy);
  line-height: 1.3; margin: 8px 0 10px; flex: 1;
}
.fbwh-art-title a { color: inherit; }
.fbwh-art-title a:hover { color: var(--amber); }
.fbwh-art-meta {
  font-size: .95rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.fbwh-art-read {
  font-size: .8rem; font-weight: 600;
  color: var(--teal); display: flex;
  align-items: center; gap: 5px; transition: gap .18s;
}
.fbwh-art-read:hover { gap: 9px; }

/* ══════════════════════════════════════════
   TOP PICKS SUMMARY
══════════════════════════════════════════ */
.fbwh-top-picks { padding: 64px 0; background: var(--white); }
.fbwh-picks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px; margin-top: 32px;
}
.fbwh-pick-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 14px; text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.fbwh-pick-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-sm); border-color: var(--amber);
}
.fbwh-pick-name { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.fbwh-pick-for { font-size: .92rem; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.4; }
.fbwh-pick-stars { color: var(--amber); font-size: 1rem; margin-bottom: 12px; }
.fbwh-pick-btn {
  display: block; background: var(--navy);
  color: #fff; border-radius: 6px;
  padding: 8px 10px; font-size: .95rem;
  font-weight: 600; transition: background .18s;
}
.fbwh-pick-btn:hover { background: var(--amber); }

/* ══════════════════════════════════════════
   INDIA CALLOUT STRIP
══════════════════════════════════════════ */
.fbwh-india-strip {
  background: linear-gradient(135deg, var(--navy-dk) 0%, #1a2f3a 100%);
  padding: 48px 0;
}
.fbwh-india-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.fbwh-india-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #fff; margin-bottom: 8px; letter-spacing: -.02em;
}
.fbwh-india-text p {
  font-size: 1rem; color: rgba(255,255,255,.55);
  max-width: 480px; line-height: 1.7;
}
.fbwh-india-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: #fff;
  font-weight: 600; font-size: .9rem;
  padding: 13px 26px; border-radius: 8px;
  white-space: nowrap; transition: background .18s; flex-shrink: 0;
}
.fbwh-india-cta:hover { background: var(--amber-dk); }

/* ══════════════════════════════════════════
   METHODOLOGY
══════════════════════════════════════════ */
.fbwh-methodology {
  padding: 64px 0; background: var(--surface);
  border-top: 1px solid var(--border);
}
.fbwh-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 32px;
}
.fbwh-method-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 18px;
}
.fbwh-method-icon {
  width: 36px; height: 36px;
  background: var(--navy); border-radius: 8px;
  display: flex; align-items: center;
  justify-content: center;
  font-size: 1rem; margin-bottom: 14px;
}
.fbwh-method-title {
  font-weight: 600; font-size: 1rem;
  color: var(--navy); margin-bottom: 6px;
}
.fbwh-method-desc { font-size: 1rem; color: var(--ink-soft); line-height: 1.55; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.fbwh-faq { padding: 64px 0; background: var(--white); }
.fbwh-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 32px;
}
.fbwh-faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.fbwh-faq summary {
  padding: 17px 20px;
  font-weight: 600; font-size: .9rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between;
  align-items: center; color: var(--navy); gap: 12px;
}
.fbwh-faq summary::-webkit-details-marker { display: none; }
.fbwh-faq summary::after {
  content: '+'; font-size: 1.2rem;
  color: var(--amber); flex-shrink: 0; transition: transform .2s;
}
.fbwh-faq details[open] summary::after { transform: rotate(45deg); }
.fbwh-faq-ans {
  padding: 0 20px 17px;
  font-size: .97rem; color: var(--ink-soft); line-height: 1.7;
}
.fbwh-faq-ans a { color: var(--teal); font-weight: 600; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.fbwh-footer {
  background: var(--navy-dk);
  color: rgba(255,255,255,.45);
  padding: 52px 0 28px;
}
.fbwh-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px;
}
.fbwh-footer-desc { font-size: .92rem; line-height: 1.65; margin-bottom: 12px; margin-top: 12px; }
.fbwh-footer-stamp {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 5px; padding: 5px 10px;
  font-size: .82rem; color: rgba(255,255,255,.35);
}
.fbwh-footer-stamp span { color: var(--amber); }
.fbwh-footer-col h4 {
  font-size: .92rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.25); margin-bottom: 14px;
}
.fbwh-footer-col li { margin-bottom: 9px; }
.fbwh-footer-col a {
  font-size: .8rem; color: rgba(255,255,255,.5); transition: color .18s;
}
.fbwh-footer-col a:hover { color: var(--amber); }
.fbwh-footer-bottom {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 20px;
  flex-wrap: wrap; font-size: .95rem;
}
.fbwh-disclosure {
  max-width: 580px; line-height: 1.55; color: rgba(255,255,255,.28);
}
.fbwh-disclosure strong { color: rgba(255,255,255,.4); }
.fbwh-disclosure a { color: rgba(255,255,255,.45); }

/* ══════════════════════════════════════════
   STICKY COMPARE BAR
══════════════════════════════════════════ */
.fbwh-compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 300;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.fbwh-compare-bar.show { transform: translateY(0); }
.fbwh-cb-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  max-width: 1100px; margin: 0 auto;
  padding: 12px 20px; gap: 16px; flex-wrap: wrap;
}
.fbwh-cb-label { font-size: 1rem; color: rgba(255,255,255,.5); white-space: nowrap; }
.fbwh-cb-slots { display: flex; gap: 8px; flex: 1; }
.fbwh-cb-slot {
  background: rgba(255,255,255,.07);
  border: 1.5px dashed rgba(255,255,255,.2);
  border-radius: 6px; padding: 5px 14px;
  font-size: .87rem; color: rgba(255,255,255,.35);
  min-width: 100px; text-align: center;
}
.fbwh-cb-slot.filled {
  background: rgba(232,148,58,.12);
  border-color: var(--amber);
  color: #fff; border-style: solid;
}
.fbwh-cb-cta {
  background: var(--amber); color: #fff;
  border: none; border-radius: 7px;
  padding: 9px 20px; font-family: var(--sans);
  font-weight: 600; font-size: .95rem;
  cursor: pointer; white-space: nowrap; transition: background .18s;
}
.fbwh-cb-cta:hover { background: var(--amber-dk); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .fbwh-sit-grid { grid-template-columns: repeat(3, 1fr); }
  .fbwh-picks-grid { grid-template-columns: repeat(3, 1fr); }
  .fbwh-method-grid { grid-template-columns: repeat(2, 1fr); }
  .fbwh-art-grid { grid-template-columns: repeat(2, 1fr); }
  .fbwh-footer-grid { grid-template-columns: 1fr 1fr; }
  .fbwh-footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .fbwh-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .fbwh-hero { padding: 36px 0 40px; }
  .fbwh-hero h1 { font-size: 1.85rem; }
  .fbwh-nav-links { display: none; }
  .fbwh-hamburger { display: flex; }
  .fbwh-sit-grid { grid-template-columns: repeat(2, 1fr); }
  .fbwh-faq-grid { grid-template-columns: 1fr; }
  .fbwh-picks-grid { grid-template-columns: repeat(2, 1fr); }
  .fbwh-art-grid { grid-template-columns: 1fr; }
  .fbwh-rec-grid { grid-template-columns: 1fr 1fr; }
  .fbwh-cb-slots { display: none; }
  .fbwh-india-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .fbwh-sit-grid { grid-template-columns: 1fr 1fr; }
  .fbwh-picks-grid { grid-template-columns: 1fr 1fr; }
  .fbwh-rec-grid { grid-template-columns: 1fr; }
  .fbwh-method-grid { grid-template-columns: 1fr; }
  .fbwh-footer-grid { grid-template-columns: 1fr; }
  .fbwh-hero-stats { flex-direction: column; }
  .fbwh-stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .fbwh-stat-item:last-child { border-bottom: none; }
}

/* ============================================
   APPEND TO BOTTOM OF: static/css/fbwhnew.css
   Review page components
   All token values mapped to fbwhnew.css :root
   --navy      #1c2333
   --amber     #e8943a
   --amber-dk  #c4721f
   --teal      #1a7b6e
   --teal-lt   #e6f4f2
   --border    #e2dfd8
   --surface   #f8f7f4
   --ink-soft  #4a5568
   --serif     Lora
   --sans      DM Sans
   ============================================ */


/* ============================================
   PAGE LAYOUT — review pages only
   Scoped under .blog-article so old /reviews/
   pages are NOT affected
   ============================================ */

.blog-article {
  background: #f8f7f4;
}

.blog-article .content-section2 {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #0d1117;
  display: block;
  float: none;
  width: 100%;
}

/* Page title */
.blog-article center h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #1c2333;
  line-height: 1.25;
  letter-spacing: -.02em;
  padding: 1.75rem 1.5rem .75rem;
  max-width: 780px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

/* h2 section headings */
.blog-article .content-section2 h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: #1c2333;
  margin: 2.75rem 0 1rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}

/* h3 */
.blog-article .content-section2 h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1c2333;
  margin: 1.75rem 0 .6rem;
}

/* Paragraphs */
.blog-article .content-section2 p {
  margin: 0 0 1.15rem;
  line-height: 1.8;
}

/* Lists */
.blog-article .content-section2 ul,
.blog-article .content-section2 ol {
  padding-left: 1.4rem;
  margin: 0 0 1.1rem;
  line-height: 1.8;
  list-style: disc;
}
.blog-article .content-section2 ol { list-style: decimal; }
.blog-article .content-section2 li { margin-bottom: .4rem; }

/* HR */
.blog-article .content-section2 hr {
  border: none;
  border-top: 1px solid #e2dfd8;
  margin: 2.25rem 0;
}

/* Strong */
.blog-article .content-section2 strong { color: #1c2333; }

/* ── TOC fix ── */
/* Neutralise any float/width from old theme */
.blog-article .content-section2 .toc,
.blog-article .content-section2 #toc,
.blog-article .content-section2 nav.toc,
.blog-article .content-section2 div.toc,
.blog-article .content-section2 aside.toc,
.blog-article .content-section2 .TableOfContents {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 2rem 0 !important;
  position: static !important;
  display: block !important;
  background: #f8f7f4;
  border: 1px solid #e2dfd8;
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  font-size: .9rem;
}
.blog-article .content-section2 .toc ul,
.blog-article .content-section2 .TableOfContents ul,
.blog-article .content-section2 .toc ol,
.blog-article .content-section2 .TableOfContents ol {
  list-style: none !important;
  padding-left: .5rem !important;
  margin: 0 !important;
}
.blog-article .content-section2 .toc li,
.blog-article .content-section2 .TableOfContents li {
  margin-bottom: .2rem !important;
}
.blog-article .content-section2 .toc a,
.blog-article .content-section2 .TableOfContents a {
  color: #1c2333;
  text-decoration: none;
  font-size: .88rem;
  line-height: 1.8;
}
.blog-article .content-section2 .toc a:hover,
.blog-article .content-section2 .TableOfContents a:hover {
  color: #e8943a;
}

/* Responsive layout */
@media (max-width: 768px) {
  .blog-article .content-section2 { padding: 1.5rem 1.1rem 3rem; }
  .blog-article center h1 { padding: 1.25rem 1.1rem .5rem; }
}
@media (max-width: 480px) {
  .blog-article .content-section2 { padding: 1.25rem .9rem 2.5rem; }
  .blog-article center h1 { padding: 1rem .9rem .5rem; font-size: 1.35rem; }
}


/* ============================================
   REVIEW COMPONENTS
   All colour values hardcoded — no missing vars
   ============================================ */

/* ── Meta bar ── */
.rv-meta {
  font-size: .8rem;
  color: #4a5568;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid #e2dfd8;
  padding-bottom: 1rem;
  line-height: 1.7;
}
.rv-meta span {
  display: inline-flex;
  align-items: center;
  padding-right: .9rem;
  margin-right: .9rem;
  border-right: 1px solid #e2dfd8;
  white-space: nowrap;
}
.rv-meta span:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.rv-meta a { color: #e8943a; text-decoration: none; }
.rv-meta a:hover { text-decoration: underline; }

/* ── Verdict box ── */
.rv-verdict {
  background: #1c2333;
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #e8943a;
}
.rv-verdict-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e8943a;
  margin-bottom: .5rem;
}
.rv-verdict p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.8;
  color: #cdd5e0;
}

/* ── Verdict chips ── */
.rv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 1rem 0 1.75rem;
}
.rv-chip {
  font-size: .73rem;
  font-weight: 600;
  padding: .28rem .75rem;
  border-radius: 20px;
  letter-spacing: .02em;
  line-height: 1.4;
}
.rv-chip-green { background: #e6f4f2; color: #1a7b6e; }
.rv-chip-amber { background: #fdf0e3; color: #c4721f; }
.rv-chip-red   { background: #fdf0f0; color: #c0392b; }
.rv-chip-navy  { background: #e8edf4; color: #1c2333; }

/* ── Quick specs table ── */
.rv-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin-bottom: 2rem;
}
.rv-specs tr { border-bottom: 1px solid #e2dfd8; }
.rv-specs tr:last-child { border-bottom: none; }
.rv-specs td {
  padding: .65rem .5rem;
  vertical-align: top;
  line-height: 1.55;
}
.rv-specs td:first-child {
  font-weight: 600;
  color: #4a5568;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  width: 36%;
  padding-right: 1rem;
  white-space: nowrap;
}

/* ── Pros / Cons grid ── */
.rv-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.rv-pros, .rv-cons {
  border-radius: 8px;
  padding: 1rem 1.1rem;
}
.rv-pros { background: #e6f4f2; border: 1px solid #b2d8c7; }
.rv-cons { background: #fdf0f0; border: 1px solid #f0c4c0; }
.rv-pros h4 {
  color: #1a7b6e;
  margin: 0 0 .6rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.rv-cons h4 {
  color: #c0392b;
  margin: 0 0 .6rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.rv-pros ul, .rv-cons ul {
  margin: 0;
  padding-left: 1.1rem !important;
  font-size: .87rem;
  line-height: 1.75;
  list-style: disc !important;
}

/* ── Pricing table ── */
.rv-pricing-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
  border-radius: 8px;
  border: 1px solid #e2dfd8;
}
.rv-pricing {
  width: 100%;
  border-collapse: collapse;
  font-size: .87rem;
  min-width: 480px;
}
.rv-pricing thead tr { background: #1c2333; color: #e8edf4; }
.rv-pricing thead th {
  padding: .7rem .9rem;
  text-align: left;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.rv-pricing tbody tr { border-bottom: 1px solid #e2dfd8; }
.rv-pricing tbody tr:last-child { border-bottom: none; }
.rv-pricing tbody td {
  padding: .65rem .9rem;
  vertical-align: middle;
  white-space: nowrap;
}
.rv-pricing tbody tr:nth-child(even) { background: #f8f7f4; }
.rv-pricing .rv-highlight { background: #fdf0e3 !important; font-weight: 600; }

/* ── CTA block ── */
.rv-cta {
  background: #f8f7f4;
  border: 1px solid #e2dfd8;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.rv-cta-text { font-size: .93rem; line-height: 1.5; flex: 1 1 200px; }
.rv-cta-text strong { display: block; font-size: 1rem; color: #1c2333; margin-bottom: .2rem; }
.rv-cta-text span { color: #4a5568; font-size: .85rem; }
.rv-cta a.rv-btn {
  display: block;
  background: #f59e0b;
  color: #1a1a2e !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none !important;
  text-align: center;
  transition: background 0.18s;
  flex-shrink: 0;
}
.rv-cta a.rv-btn:hover { background: #d97706; color: #1a1a2e !important; }

/* ── Who it's for / not for ── */
.rv-forbox {
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  font-size: .9rem;
}
.rv-forbox-yes { background: #e6f4f2; border-left: 3px solid #1a7b6e; }
.rv-forbox-no  { background: #fdf0f0; border-left: 3px solid #c0392b; }
.rv-forbox h4  { margin: 0 0 .5rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.rv-forbox-yes h4 { color: #1a7b6e; }
.rv-forbox-no  h4 { color: #c0392b; }
.rv-forbox ul  {
  margin: 0;
  padding-left: 1.1rem !important;
  line-height: 1.75;
  list-style: disc !important;
}
.rv-forbox li { margin-bottom: .3rem; }


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

@media (max-width: 768px) {
  .rv-verdict { padding: 1.15rem 1.2rem; }
  .rv-verdict p { font-size: .92rem; }
  .rv-cta { padding: 1.1rem 1.2rem; }
}

@media (max-width: 640px) {
  .rv-meta { flex-direction: column; align-items: flex-start; gap: .3rem; }
  .rv-meta span { border-right: none; padding-right: 0; margin-right: 0; white-space: normal; }
}

@media (max-width: 560px) {
  .rv-proscons { grid-template-columns: 1fr; }

  .rv-specs tr   { display: block; padding: .5rem 0; border-bottom: 1px solid #e2dfd8; }
  .rv-specs tr:last-child { border-bottom: none; }
  .rv-specs td   { display: block; padding: 0 .2rem; }
  .rv-specs td:first-child {
    width: 100%; white-space: normal;
    padding-bottom: .1rem; padding-right: 0; border-bottom: none;
  }
  .rv-specs td:last-child { padding-bottom: .5rem; }

  .rv-cta { flex-direction: column; align-items: stretch; }
  .rv-cta a.rv-btn { width: 100%; padding: .9rem 1rem; font-size: .95rem; }

  .rv-chip { font-size: .7rem; padding: .25rem .65rem; }
  .rv-forbox ul { font-size: .86rem; }
  .rv-pros ul, .rv-cons ul { font-size: .86rem; }
}

@media (max-width: 380px) {
  .rv-verdict { padding: .9rem; }
  .rv-verdict p { font-size: .88rem; }
  .rv-cta { padding: .9rem; }
  .rv-forbox { padding: .85rem .9rem; }
  .rv-pros, .rv-cons { padding: .85rem .9rem; }
}


/* ── Meta bar container fix ──
   .rv-meta sits in <section> outside .content-section2
   so needs its own centering */
.blog-article > section {
  max-width: 780px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
@media (max-width: 768px) {
  .blog-article > section { padding: 1rem 1.1rem 0; }
}
@media (max-width: 480px) {
  .blog-article > section { padding: .75rem .9rem 0; }
}

/* ── Meta bar — mobile: show date only ── */
@media (max-width: 640px) {
  .rv-meta span:nth-child(2),
  .rv-meta span:nth-child(3),
  .rv-meta span:nth-child(4) {
    display: none;
  }
  .rv-meta span:first-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    font-size: .78rem;
    color: #4a5568;
  }
}

/* ── TOC — custom-toc (merged, final version) ── */
.blog-article .content-section2 .custom-toc {
  max-width: 100% !important;
  width: 100% !important;
  float: none !important;
  background: #f8f7f4 !important;
  border: 1px solid #e2dfd8 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding: 1rem 1.25rem !important;
  margin-top: 0 !important;
  margin-bottom: 1.75rem !important;
}
.blog-article .content-section2 .custom-toc h2 {
  font-size: .72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  color: #4a5568 !important;
  margin: 0 0 .6rem 0 !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
  border-bottom: none !important;
}
.blog-article .content-section2 .custom-toc a {
  color: #1c2333 !important;
  font-size: .87rem !important;
  text-decoration: none !important;
}
.blog-article .content-section2 .custom-toc a:hover {
  color: #e8943a !important;
}
.blog-article .content-section2 .custom-toc:first-child,
.blog-article .content-section2 > .custom-toc {
  margin-top: 0 !important;
}
.blog-article .content-section2 .custom-toc + h2 {
  margin-top: 1.75rem !important;
}

/* ============================================
   REVIEWS HUB PAGE
   ============================================ */

.rv-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.rv-hub-card {
  background: #ffffff;
  border: 1px solid #e2dfd8;
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .18s, box-shadow .18s;
}
.rv-hub-card:hover {
  border-color: #e8943a;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}

.rv-hub-card-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}

.rv-hub-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1c2333;
}

.rv-hub-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
  flex: 1;
}

.rv-hub-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .9rem;
  font-size: .78rem;
  color: #4a5568;
  border-top: 1px solid #e2dfd8;
  padding-top: .65rem;
}
.rv-hub-meta span::before {
  content: '✓ ';
  color: #1a7b6e;
  font-weight: 700;
}

.rv-hub-btn {
  display: block;
  background: #1c2333;
  color: #ffffff;
  text-align: center;
  padding: .65rem 1rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s;
  margin-top: auto;
}
.rv-hub-btn:hover { background: #e8943a; }

/* Quick match box */
.rv-hub-matcher {
  background: #f8f7f4;
  border: 1px solid #e2dfd8;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.rv-hub-matcher p {
  margin: 0 0 .85rem;
  font-size: .9rem;
  line-height: 1.6;
}
.rv-hub-matcher p:last-child { margin-bottom: 0; }
.rv-hub-matcher a {
  color: #e8943a;
  font-weight: 600;
  text-decoration: none;
}
.rv-hub-matcher a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 600px) {
  .rv-hub-grid { grid-template-columns: 1fr; }
}


/* ============================================
   COMPARISON PAGE — mobile table fix
   Simple: reduce font + min-width so 3 cols fit
   ============================================ */

@media (max-width: 640px) {
  /* Shrink font and padding so 3 columns fit */
  .rv-pricing-wrap .rv-pricing {
    min-width: 0;
    font-size: .75rem;
  }
  .rv-pricing thead th {
    padding: .5rem .4rem;
    font-size: .65rem;
    letter-spacing: .02em;
  }
  .rv-pricing tbody td {
    padding: .5rem .4rem;
    white-space: normal;
    word-break: break-word;
    vertical-align: top;
  }
  /* First column (Feature/Plan) stays bold and narrow */
  .rv-pricing tbody td:first-child {
    font-weight: 600;
    width: 30%;
  }
}

 
.content-section2 a:not([class]) {
  text-decoration: underline;
  text-decoration-color: #f59e0b;
  text-underline-offset: 3px;
}
.content-section2 a:not([class]):hover {
  text-decoration-color: currentColor;
}

/* ── Standalone rv-btn / rv-btn-secondary — works anywhere, not just inside .rv-cta ── */
a.rv-btn, button.rv-btn {
  display: inline-block;
  background: #f59e0b;
  color: #1a1a2e !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none !important;
  text-align: center;
  white-space: nowrap;
  transition: background 0.18s;
  border: none;
  cursor: pointer;
}
a.rv-btn:hover, button.rv-btn:hover { background: #d97706; color: #1a1a2e !important; }

a.rv-btn-secondary, button.rv-btn-secondary {
  display: inline-block;
  background: #1a1a2e;
  color: #f59e0b !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none !important;
  text-align: center;
  white-space: nowrap;
  transition: background 0.18s;
  border: 2px solid #f59e0b;
  cursor: pointer;
}
a.rv-btn-secondary:hover { background: #2d2d4e; color: #f59e0b !important; }

.blog-article .content-section2 .rv-verdict strong,
.blog-article .content-section2 .rv-verdict ul li strong {
  color: #fbbf24;
}

.blog-article .content-section2 .rv-verdict ul li,
.blog-article .content-section2 .rv-verdict ul {
  color: #e5e7eb;
}

/* Callout boxes */
.callout {
  padding: 1rem 1.25rem;
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
  border-left: 4px solid;
}

.callout-info {
  background: #f0f9ff;
  border-color: #0ea5e9;
}

.callout-warning {
  background: #fff8e1;
  border-color: #f59e0b;
}

.callout-title {
  display: block;
  margin-bottom: 0.5rem;
}

.callout-body {
  /* Inherits default paragraph styling */
}

/* Signpost boxes */
.signpost {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.signpost strong {
  color: #166534;
}