/*
Theme Name: SecureRank Pro
Theme URI: https://securerank.com
Description: Corporate antivirus comparison & review theme with visual section builder. Navy/silver palette, professional and trustworthy.
Version: 1.0.0
Author: SecureRank
Text Domain: securerank
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — Navy / Silver Corporate
   ============================================================ */
:root {
  /* Backgrounds */
  --bg:          #f0f2f7;
  --bg-white:    #ffffff;
  --bg-subtle:   #e8edf5;
  --bg-section:  #f5f7fb;

  /* Navy family */
  --navy-900:    #0b1629;
  --navy-800:    #112040;
  --navy-700:    #163058;
  --navy-600:    #1c3d70;
  --navy-500:    #234d8c;
  --navy-400:    #3b66a8;
  --navy-300:    #5c85c5;

  /* Silver / slate */
  --silver-900:  #1e2d42;
  --silver-700:  #3a4f6b;
  --silver-500:  #6b80a0;
  --silver-300:  #a8b8cc;
  --silver-200:  #c8d4e3;
  --silver-100:  #e2e9f2;
  --silver-50:   #f0f4f9;

  /* Accent — trust gold */
  --gold:        #b8860b;
  --gold-bright: #d4a017;
  --gold-light:  #f0c040;
  --gold-bg:     #faf3dc;
  --gold-border: #e8d090;

  /* Signal colors */
  --green:       #1a6b3c;
  --green-bright:#22a05a;
  --green-bg:    #eaf5ee;
  --green-border:#9dd5b2;

  --red:         #b91c1c;
  --red-bright:  #dc2626;
  --red-bg:      #fef2f2;
  --red-border:  #fca5a5;

  /* Text */
  --text-primary:  #0b1629;
  --text-body:     #2c3e55;
  --text-soft:     #5a6f88;
  --text-muted:    #8fa3bb;
  --text-on-dark:  #e8edf5;
  --text-on-dark-soft: #a8b8cc;

  /* Borders */
  --border:      #d4dde8;
  --border-soft: #e2e9f2;
  --border-dark: #c0cdd9;

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --ff-mono:    'IBM Plex Mono', monospace;

  /* Radii */
  --r-sm:  4px;
  --r:     8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(11,22,41,0.08);
  --shadow-sm: 0 2px 8px rgba(11,22,41,0.10);
  --shadow-md: 0 4px 20px rgba(11,22,41,0.12);
  --shadow-lg: 0 8px 40px rgba(11,22,41,0.14);
  --shadow-navy: 0 4px 24px rgba(11,22,41,0.20);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
::selection { background: rgba(28,61,112,0.15); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  color: var(--text-primary);
  line-height: 1.15;
  font-weight: 700;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center  { text-align: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ============================================================
   COMPONENTS — BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  border-radius: var(--r);
  padding: 11px 22px;
  transition: all 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn--navy {
  background: var(--navy-700);
  color: #fff;
  box-shadow: 0 2px 12px rgba(22,48,88,0.30);
}
.btn--navy:hover { background: var(--navy-600); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(22,48,88,0.35); }

.btn--gold {
  background: var(--gold-bright);
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(184,134,11,0.25);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--navy-700);
  border: 1.5px solid var(--navy-300);
}
.btn--outline:hover { border-color: var(--navy-600); background: var(--navy-900); color: #fff; }

.btn--outline-light {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(200,212,227,0.3);
}
.btn--outline-light:hover { border-color: var(--silver-300); background: rgba(255,255,255,0.06); }

.btn--ghost {
  background: transparent;
  color: var(--navy-500);
  font-weight: 600;
}
.btn--ghost:hover { color: var(--navy-700); }

.btn--sm { padding: 8px 16px; font-size: 12px; }
.btn--full { width: 100%; }

/* ============================================================
   COMPONENTS — BADGE / PILL
   ============================================================ */
.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pill--navy   { color: var(--navy-600);   background: rgba(28,61,112,0.10); }
.pill--gold   { color: var(--gold);       background: var(--gold-bg); border: 1px solid var(--gold-border); }
.pill--green  { color: var(--green);      background: var(--green-bg); }
.pill--silver { color: var(--silver-700); background: var(--silver-100); }
.pill--white  { color: #fff; background: rgba(255,255,255,0.15); }

/* ============================================================
   COMPONENTS — STARS
   ============================================================ */
.stars { display: inline-flex; gap: 2px; color: var(--gold-bright); font-size: 14px; line-height: 1; }
.stars .empty { color: var(--silver-200); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sh { margin-bottom: 40px; }
.sh--center { text-align: center; }
.sh--center .sh-tag::before { margin: 0 auto 6px; display: block; }

.sh-tag {
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sh-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--navy-500);
  flex-shrink: 0;
}
.sh-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.sh-sub { font-size: 14.5px; color: var(--text-soft); line-height: 1.65; max-width: 560px; }
.sh--center .sh-sub { margin: 0 auto; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--navy-900);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--navy-800);
  box-shadow: 0 2px 16px rgba(11,22,41,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-shield {
  width: 34px;
  height: 34px;
  background: linear-gradient(145deg, var(--navy-400), var(--navy-600));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 2px 8px rgba(11,22,41,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.logo-text span { color: var(--gold-light); }

.site-nav { display: flex; gap: 2px; flex: 1; }
.site-nav a {
  color: var(--text-on-dark-soft);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all 0.15s;
}
.site-nav a:hover, .site-nav a.current-menu-item {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.header-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: linear-gradient(90deg, var(--navy-600), var(--navy-500));
  padding: 7px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.announce-bar span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); }
.announce-bar a { font-size: 11px; color: var(--gold-light); text-decoration: underline; font-weight: 700; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, #1a2e55 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(200,212,227,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,212,227,1) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(59,102,168,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(28,61,112,0.25) 0%, transparent 55%);
}
.hero-content { position: relative; max-width: 660px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,212,227,0.10);
  border: 1px solid rgba(200,212,227,0.20);
  color: var(--silver-200);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); flex-shrink: 0; }

.hero-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-family: var(--ff-display);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-h1 em { font-style: normal; color: var(--gold-light); }

.hero-sub {
  font-size: 16.5px;
  color: var(--text-on-dark-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(200,212,227,0.12);
  padding-top: 32px;
}
.hero-metric {
  padding: 0 32px 0 0;
  margin-right: 32px;
  border-right: 1px solid rgba(200,212,227,0.12);
}
.hero-metric:last-child { border-right: none; }
.hero-metric-n {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-metric-l {
  font-size: 11px;
  color: var(--text-on-dark-soft);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.pcard {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 26px 22px 22px;
  position: relative;
  transition: all 0.22s;
  box-shadow: var(--shadow-xs);
}
.pcard:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pcard--featured {
  border-color: var(--navy-400);
  box-shadow: 0 4px 24px rgba(28,61,112,0.14);
}
.pcard--featured:hover {
  box-shadow: 0 8px 36px rgba(28,61,112,0.20);
}
.pcard-badge {
  position: absolute;
  top: -10px;
  left: 18px;
  background: var(--navy-700);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.pcard-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pcard-rank {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  min-width: 38px;
}
.pcard-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}
.pcard-meta { flex: 1; min-width: 0; }
.pcard-name { font-size: 15px; font-weight: 700; font-family: var(--ff-display); color: var(--text-primary); }
.pcard-tag  { font-size: 11px; color: var(--text-muted); }

.pcard-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.pcard-rnum   { font-weight: 700; font-size: 13px; color: var(--text-body); }

.pcard-rule { height: 1px; background: var(--border-soft); margin: 14px 0; }

.pcard-price-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.pcard-price { font-family: var(--ff-display); font-size: 23px; font-weight: 700; color: var(--text-primary); }
.pcard-trial { font-size: 10px; color: var(--text-muted); text-align: right; line-height: 1.4; max-width: 90px; }

.pcard-specs { font-size: 11.5px; color: var(--text-soft); margin-bottom: 14px; line-height: 1.7; }
.pcard-specs strong { color: var(--text-body); font-weight: 600; }

.pcard-btns { display: flex; gap: 8px; }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.cat-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.18s;
  box-shadow: var(--shadow-xs);
}
.cat-card:hover {
  border-color: var(--navy-400);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.cat-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--bg-section);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cat-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.cat-desc  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.ctable {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.ctable-head {
  display: grid;
  grid-template-columns: 210px 1fr 1fr;
  background: var(--navy-900);
}
.ctable-head > div { padding: 14px 20px; }
.ctable-lbl { font-size: 11px; font-weight: 700; color: var(--text-on-dark-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.ctable-col {
  text-align: center;
  border-left: 1px solid var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ctable-col span { font-size: 13px; font-weight: 700; font-family: var(--ff-display); color: #fff; }

.ctable-row {
  display: grid;
  grid-template-columns: 210px 1fr 1fr;
  border-bottom: 1px solid var(--border-soft);
}
.ctable-row:last-child { border-bottom: none; }
.ctable-row > div { padding: 10px 20px; font-size: 12.5px; }
.ctable-row:nth-child(even) { background: var(--bg-section); }

.ctable-feat { font-weight: 600; color: var(--text-body); display: flex; align-items: center; }
.ctable-val  { text-align: center; border-left: 1px solid var(--border-soft); color: var(--text-soft); display: flex; align-items: center; justify-content: center; }
.ctable-val.win { color: var(--green); font-weight: 700; background: var(--green-bg); }
.ctable-row:nth-child(even) .ctable-val.win { background: #daf0e4; }

.ctable-foot {
  display: grid;
  grid-template-columns: 210px 1fr 1fr;
  border-top: 2px solid var(--border);
  background: var(--bg-section);
}
.ctable-foot > div { padding: 16px; text-align: center; }
.ctable-foot > div + div { border-left: 1px solid var(--border-soft); }

/* VERDICT */
.verdict-box {
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin-bottom: 28px;
}
.verdict-label { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.verdict-text  { font-size: 14px; color: var(--text-body); line-height: 1.7; }

.choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.choose-card { border-radius: var(--r-md); padding: 22px; border: 1px solid var(--border); }
.choose-card--navy { background: rgba(28,61,112,0.04); border-color: rgba(28,61,112,0.15); }
.choose-card--gold { background: var(--gold-bg); border-color: var(--gold-border); }
.choose-title { font-size: 13px; font-weight: 700; margin-bottom: 12px; font-family: var(--ff-display); }
.choose-item  { display: flex; gap: 8px; font-size: 12px; color: var(--text-soft); line-height: 1.6; margin-bottom: 6px; }
.choose-check { flex-shrink: 0; font-weight: 700; }

.tip-box {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.tip-icon { font-size: 26px; flex-shrink: 0; }
.tip-label { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.tip-text  { font-size: 12.5px; color: var(--text-body); line-height: 1.6; }

/* ============================================================
   REVIEW LAYOUT
   ============================================================ */
.review-layout { display: flex; gap: 36px; }
.review-main   { flex: 1; min-width: 0; }
.review-sidebar { width: 270px; flex-shrink: 0; }
.review-sidebar-sticky { position: sticky; top: 80px; }

.score-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  margin-bottom: 20px;
  display: flex;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.score-big   { text-align: center; min-width: 80px; }
.score-num   { font-family: var(--ff-display); font-size: 56px; font-weight: 700; color: var(--navy-700); line-height: 1; }
.score-label { font-size: 10px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.score-bars  { flex: 1; border-left: 1px solid var(--border-soft); padding-left: 24px; }

.bar-row   { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.bar-label { font-size: 11.5px; font-weight: 600; color: var(--text-body); width: 88px; }
.bar-track { flex: 1; height: 7px; background: var(--silver-100); border-radius: 4px; overflow: hidden; }
.bar-fill  { height: 100%; background: linear-gradient(90deg, var(--navy-600), var(--navy-400)); border-radius: 4px; transition: width 0.7s ease; }
.bar-val   { font-size: 11px; font-weight: 700; color: var(--text-body); width: 32px; text-align: right; }

.specs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.spec-item  { background: var(--bg-section); padding: 11px 12px; border-radius: var(--r-sm); }
.spec-lbl   { font-size: 10px; color: var(--text-muted); margin-bottom: 2px; }
.spec-val   { font-size: 12px; font-weight: 700; color: var(--text-primary); }

.pros-cons  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.pros { background: var(--green-bg); border: 1px solid var(--green-border); border-radius: var(--r); padding: 18px; }
.cons { background: var(--red-bg);   border: 1px solid var(--red-border);   border-radius: var(--r); padding: 18px; }
.pros-title { font-size: 12px; font-weight: 700; color: var(--green);     margin-bottom: 10px; }
.cons-title { font-size: 12px; font-weight: 700; color: var(--red-bright); margin-bottom: 10px; }
.pros li, .cons li { list-style: none; font-size: 12px; color: var(--text-body); padding: 3px 0; line-height: 1.5; }
.pros li::before { content: "✓ "; color: var(--green);     font-weight: 700; }
.cons li::before { content: "✗ "; color: var(--red-bright); font-weight: 700; }

.verdict-card {
  background: var(--bg-white);
  border: 2px solid var(--navy-500);
  border-radius: var(--r-lg);
  padding: 26px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(28,61,112,0.10);
}
.verdict-card h3 { font-family: var(--ff-display); font-size: 19px; margin-bottom: 10px; color: var(--navy-800); }
.verdict-card p  { font-size: 13.5px; color: var(--text-body); line-height: 1.75; margin-bottom: 18px; }

.sidebar-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
}
.sidebar-price { font-family: var(--ff-display); font-size: 32px; font-weight: 700; color: var(--text-primary); }
.sidebar-trial { font-size: 11px; color: var(--text-muted); margin-bottom: 16px; }
.sidebar-links { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border-soft); }
.sidebar-links a { display: block; font-size: 12px; color: var(--navy-500); padding: 3px 0; font-weight: 500; }
.sidebar-links a:hover { color: var(--navy-700); }

/* ============================================================
   ROUNDUP TABLE
   ============================================================ */
.rtable {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.rtable-head {
  display: grid;
  grid-template-columns: 48px 1fr 90px 90px 100px 80px 120px;
  background: var(--navy-900);
  padding: 10px 0;
}
.rtable-head > div { padding: 0 12px; font-size: 10px; font-weight: 700; color: var(--text-on-dark-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.rtable-row {
  display: grid;
  grid-template-columns: 48px 1fr 90px 90px 100px 80px 120px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.15s;
}
.rtable-row:last-child { border-bottom: none; }
.rtable-row:hover { background: var(--bg-section); }
.rtable-row.featured { background: rgba(28,61,112,0.03); }
.rtable-row > div { padding: 12px; font-size: 12.5px; color: var(--text-soft); }
.rtable-rank { text-align: center; font-family: var(--ff-display); font-size: 18px !important; font-weight: 700 !important; }

/* ============================================================
   MINI REVIEWS
   ============================================================ */
.mini-review {
  background: var(--bg-white);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  gap: 24px;
  box-shadow: var(--shadow-xs);
}
.mini-review.featured { border-color: var(--navy-400); box-shadow: 0 4px 20px rgba(28,61,112,0.10); }
.mini-review-rank { min-width: 60px; text-align: center; }
.mini-review-rank .num { font-family: var(--ff-display); font-size: 32px; font-weight: 700; }
.mini-review-body { flex: 1; }
.mini-review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.mini-review-name { font-family: var(--ff-display); font-size: 17px; font-weight: 700; color: var(--text-primary); }
.mini-review-text { font-size: 13px; color: var(--text-body); line-height: 1.7; margin-bottom: 14px; }
.mini-review-price { min-width: 90px; text-align: right; flex-shrink: 0; }
.mini-review-price .amount { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: var(--text-primary); }
.mini-review-price .trial  { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

.method-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}
.method-box h3 { font-family: var(--ff-display); font-size: 16px; color: var(--text-primary); margin-bottom: 8px; }
.method-box p  { font-size: 13px; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 18px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.18s;
  box-shadow: var(--shadow-xs);
}
.blog-card:hover { border-color: var(--navy-300); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.blog-ico { width: 48px; height: 48px; border-radius: 10px; background: var(--bg-section); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.blog-title { font-size: 13.5px; font-weight: 600; color: var(--text-primary); line-height: 1.4; margin-top: 4px; font-family: var(--ff-display); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--r-xl);
  padding: 52px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-navy);
}
.cta-banner-deco {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,102,168,0.2) 0%, transparent 70%);
}
.cta-banner h3 { font-family: var(--ff-display); font-size: 26px; color: #fff; margin: 12px 0 8px; }
.cta-banner p  { font-size: 14.5px; color: var(--text-on-dark-soft); line-height: 1.6; }

/* ============================================================
   COMPARISON CARDS (homepage)
   ============================================================ */
.comp-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 20px;
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.comp-card:hover { border-color: var(--navy-400); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.comp-vs { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 10px; }
.vs-label { font-family: var(--ff-display); font-size: 12px; font-weight: 700; color: var(--text-muted); }
.comp-title { font-size: 13px; font-weight: 700; color: var(--text-primary); font-family: var(--ff-display); }
.comp-link  { font-size: 11.5px; color: var(--navy-500); margin-top: 6px; font-weight: 600; }

/* ============================================================
   CRUMB
   ============================================================ */
.crumb { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.crumb a { color: var(--navy-500); }

/* ============================================================
   PAGE DIVIDER
   ============================================================ */
.page-divider { height: 1px; background: var(--border-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  padding: 60px 0 28px;
}
.footer-logo { margin-bottom: 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4,1fr);
  gap: 28px;
  margin-bottom: 44px;
}
.footer-brand p { font-size: 13px; color: var(--text-on-dark-soft); line-height: 1.65; margin-top: 10px; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-link { font-size: 12.5px; color: var(--text-on-dark-soft); display: block; padding: 4px 0; transition: color 0.15s; }
.footer-link:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--navy-800);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span { font-size: 11.5px; color: var(--text-on-dark-soft); }

/* ============================================================
   SECTION BUILDER — EDIT UI (overridden by plugin CSS)
   ============================================================ */
.ssb-section-controls { display: none; }
body.ssb-edit-mode .ssb-section:hover .ssb-section-controls { display: flex; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.d1 { animation-delay:.06s; }
.d2 { animation-delay:.12s; }
.d3 { animation-delay:.18s; }
.d4 { animation-delay:.24s; }
.d5 { animation-delay:.30s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-layout { flex-direction: column; }
  .review-sidebar { width: 100%; }
  .rtable-head, .rtable-row { grid-template-columns: 40px 1fr 80px 90px; }
  .rtable-head > div:nth-child(n+4):not(:last-child),
  .rtable-row  > div:nth-child(n+4):not(:last-child) { display: none; }
}
@media (max-width: 600px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-metrics { flex-wrap: wrap; gap: 20px; }
  .hero-metric { border-right: none; padding-right: 0; margin-right: 0; }
  .site-nav { display: none; }
  .ctable-head, .ctable-row, .ctable-foot { grid-template-columns: 130px 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .choose-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}
