/* =============================================
   MEDVi QUAD Review — Main Stylesheet
   Design: Dark medical authority × gold accent
   Font: Montserrat throughout
   ============================================= */

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

:root {
  --bg-deep:    #060e1e;
  --bg-dark:    #0a1628;
  --bg-card:    #0f1f3a;
  --bg-card2:   #132240;
  --border:     rgba(255,255,255,0.08);
  --gold:       #f0a623;
  --gold-light: #f8c96a;
  --gold-dark:  #c8851a;
  --text:       #e2eaf8;
  --text-muted: #8ba3cc;
  --text-dim:   #4d6a99;
  --green:      #1fba72;
  --red:        #e05050;
  --amber:      #f0a623;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.6);
  --transition: 0.2s ease;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* SKIP NAV */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: #000;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-nav:focus { top: 0; }

/* CONTAINER */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(6, 14, 30, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

.header-nav {
  display: flex;
  gap: 20px;
  flex: 1;
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--text); }

.btn-header {
  flex-shrink: 0;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-header:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .logo { font-size: 1.2rem; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(240,166,35,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(31,186,114,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0a1628 0%, #060e1e 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,166,35,0.12);
  border: 1px solid rgba(240,166,35,0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

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

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  margin-top: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(240,166,35,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,166,35,0.5);
}
.btn-primary.large {
  font-size: 1.25rem;
  padding: 18px 48px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  margin-top: 16px;
}
.btn-secondary:hover {
  background: var(--gold);
  color: #000;
}

.disclaimer-small {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 10px;
}

/* =============================================
   TOC BAR
   ============================================= */
.toc-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow-x: auto;
}

.toc-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.toc-inner strong {
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

.toc-inner a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}

.toc-inner a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* =============================================
   PAGE BODY
   ============================================= */
.page-body {
  padding: 40px 20px 80px;
}

.content-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.content-section:last-child {
  border-bottom: none;
}

p { color: var(--text); margin-bottom: 14px; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

em { color: var(--text-muted); font-style: normal; font-size: 0.9rem; }

.styled-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.styled-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}
.styled-list li:last-child { border-bottom: none; }
.styled-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.info-callout {
  background: rgba(240,166,35,0.07);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-size: 0.95rem;
}
.info-callout.green {
  background: rgba(31,186,114,0.07);
  border-left-color: var(--green);
}

.warning-box {
  background: rgba(224,80,80,0.08);
  border: 1px solid rgba(224,80,80,0.3);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================================
   VERDICT BOX
   ============================================= */
.verdict-box {
  background: var(--bg-card);
  border: 1px solid rgba(240,166,35,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-lg);
}

.verdict-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.verdict-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(240,166,35,0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.star-row {
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.half-star { opacity: 0.5; }

.verdict-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin: 20px 0 24px;
}

.verdict-item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
}
.verdict-item.good { background: rgba(31,186,114,0.1); color: #5de0a0; }
.verdict-item.neutral { background: rgba(240,166,35,0.08); color: var(--gold-light); }
.verdict-item.bad { background: rgba(224,80,80,0.08); color: #e88888; }

/* =============================================
   INGREDIENTS GRID
   ============================================= */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.ingredient-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.ingredient-card:hover {
  border-color: rgba(240,166,35,0.4);
  transform: translateY(-2px);
}

.ing-icon { font-size: 1.8rem; margin-bottom: 10px; }
.ingredient-card h3 { margin: 0 0 4px; font-size: 1.15rem; }
.ing-class {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.ingredient-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.review-card.complaint { border-color: rgba(224,80,80,0.2); }

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.review-card footer {
  font-size: 0.78rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.rating-summary {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.big-rating {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.big-rating span { font-size: 1.4rem; color: var(--text-dim); }

.rating-bars { flex: 1; min-width: 200px; }

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.bar-row > span:first-child { width: 22px; flex-shrink: 0; }
.bar-row > span:last-child { width: 32px; flex-shrink: 0; }

.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 1s ease;
}

.review-count {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 8px;
}

.complaint-list li::before { content: '⚠'; }

/* =============================================
   SIDE EFFECTS TABLE
   ============================================= */
.side-effects-table-wrap,
.compare-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.side-effects-table,
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.side-effects-table th,
.compare-table th {
  background: var(--bg-card2);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.side-effects-table td,
.compare-table td {
  padding: 12px 18px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.side-effects-table tr:last-child td,
.compare-table tr:last-child td { border-bottom: none; }

.side-effects-table tbody tr:hover,
.compare-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.compare-table td:nth-child(2) { color: var(--text); }

/* =============================================
   PRICING
   ============================================= */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(240,166,35,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 480px;
  box-shadow: var(--shadow);
}

.price-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.price-tag span { font-size: 1.4rem; color: var(--text-dim); }

.price-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.price-includes li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.price-includes li:last-child { border-bottom: none; }

.price-disclaimer {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

/* =============================================
   FDA
   ============================================= */
.fda-explainer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 16px;
}

.fda-no {
  background: rgba(224,80,80,0.1);
  border: 1px solid rgba(224,80,80,0.25);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  color: #e88888;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  margin-top: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(240,166,35,0.3); }
.faq-item[open] { border-color: rgba(240,166,35,0.4); }

.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding-top: 14px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240,166,35,0.2);
  margin-bottom: 60px;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 540px; margin: 0 auto 28px; color: var(--text-muted); }
.cta-section .btn-primary { display: inline-block; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 0 80px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}
.footer-logo span { color: var(--gold); }

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-nav a:hover { color: var(--text-muted); }

.footer-disclaimer {
  max-width: 680px;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-copyright {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* =============================================
   MOBILE STICKY CTA
   ============================================= */
.mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(6,14,30,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 800;
  display: none;
}

.mobile-sticky a {
  display: block;
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 -4px 20px rgba(240,166,35,0.3);
}

@media (max-width: 768px) {
  .mobile-sticky { display: block; }
  .site-footer { padding-bottom: 100px; }

  .ingredients-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }

  .rating-summary { flex-direction: column; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero { padding: 50px 0 40px; }
  .verdict-box { padding: 20px; }
  .pricing-card { max-width: 100%; }
}

/* =============================================
   HERO — TWO COLUMN LAYOUT
   ============================================= */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  /* left column — all existing hero copy styles apply */
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  max-height: 420px;
}

.hero-lifestyle-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,14,30,0.45) 0%,
    rgba(6,14,30,0.1) 50%,
    rgba(240,166,35,0.08) 100%
  );
  border-radius: var(--radius-lg);
  pointer-events: none;
}

@media (max-width: 860px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-image-wrap {
    max-height: 280px;
    order: -1; /* image on top on mobile */
  }
  .hero-lifestyle-img {
    height: 280px;
  }
}

/* =============================================
   WHAT IS — PRODUCT IMAGE LAYOUT
   ============================================= */
.what-is-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 40px;
  align-items: start;
}

.what-is-copy { /* copy takes remaining width */ }

.product-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(240,166,35,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 16px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  position: sticky;
  top: 80px;
}

.product-img {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
  transition: transform 0.3s ease;
}
.product-img:hover {
  transform: scale(1.03);
}

.product-img-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 14px;
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  width: 100%;
}
.product-img-caption strong {
  display: block;
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .what-is-layout {
    grid-template-columns: 1fr;
  }
  .product-img-wrap {
    flex-direction: row;
    gap: 16px;
    align-items: center;
    position: static;
    max-width: 100%;
  }
  .product-img {
    max-width: 80px;
  }
  .product-img-caption {
    border-top: none;
    border-left: 1px solid var(--border);
    padding-top: 0;
    padding-left: 16px;
    text-align: left;
  }
}

/* =============================================
   THREE-WAY COMPARISON CARDS
   ============================================= */
.three-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}

@media (max-width: 860px) {
  .three-card-grid { grid-template-columns: 1fr; }
}

.compare-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.compare-product-card.winner {
  border-color: rgba(240,166,35,0.4);
  background: linear-gradient(160deg, rgba(240,166,35,0.06) 0%, var(--bg-card) 60%);
}

.card-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--gold);
  color: #000;
  width: fit-content;
}
.card-badge.alt {
  background: var(--green);
  color: #000;
}

.card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.card-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.card-price span { font-size: 0.95rem; color: var(--text-dim); font-family: 'Montserrat', sans-serif; font-weight: 400; }

.card-features {
  list-style: none;
  padding: 0;
  flex: 1;
}
.card-features li {
  padding: 7px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.card-features li:last-child { border-bottom: none; }
.card-features .pro { color: #5de0a0; }
.card-features .neutral { color: var(--text-muted); }
.card-features .con { color: #e88888; }

.card-review-link {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.card-review-link:hover { color: var(--gold); }

/* CTA ALT LINKS */
.cta-alt-links {
  margin: 20px 0 10px;
  font-size: 0.88rem;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-alt-links a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-alt-links a:hover { color: #fff; }

/* FOUR-COLUMN COMPARE TABLE */
.compare-table th:nth-child(2),
.compare-table td:nth-child(2) {
  background: rgba(240,166,35,0.04);
  color: var(--text);
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  .site-header, .mobile-sticky, .toc-bar { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  .hero-bg { display: none; }
}
