/*
  Consumer Health Watchdog Alliance - Editorial Stylesheet
  Theme: Slate Navy & Amber Gold with Verified Emerald Badges
  Classes: .rep-*
*/

:root {
  --rep-navy-950: #090d16;
  --rep-navy-900: #0f172a;
  --rep-navy-800: #1e293b;
  --rep-navy-700: #334155;
  --rep-slate-500: #64748b;
  --rep-slate-400: #94a3b8;
  --rep-slate-200: #e2e8f0;
  --rep-slate-100: #f1f5f9;
  --rep-slate-50: #f8fafc;
  --rep-white: #ffffff;
  
  --rep-gold: #f59e0b;
  --rep-gold-dark: #d97706;
  --rep-gold-light: #fef3c7;
  
  --rep-emerald: #10b981;
  --rep-emerald-dark: #059669;
  --rep-emerald-light: #d1fae5;
  
  --rep-crimson: #e11d48;
  --rep-crimson-light: #ffe4e6;
  
  --rep-font-heading: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --rep-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --rep-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --rep-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --rep-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --rep-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  font-family: var(--rep-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--rep-navy-900);
  background-color: var(--rep-slate-50);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.rep-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Top Audit Ribbon */
.rep-top-ribbon {
  background: var(--rep-navy-950);
  color: var(--rep-gold);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rep-top-ribbon span.rep-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--rep-emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--rep-emerald);
}

/* Header & Nav */
.rep-header {
  background: var(--rep-white);
  border-bottom: 1px solid var(--rep-slate-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--rep-shadow-sm);
}

.rep-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.rep-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rep-logo-icon {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
}

.rep-brand-text h2 {
  font-family: var(--rep-font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--rep-navy-900);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.rep-brand-text span {
  font-size: 12px;
  font-weight: 600;
  color: var(--rep-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.rep-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.rep-nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--rep-navy-700);
  transition: color 0.2s ease;
}

.rep-nav-links a:hover {
  color: var(--rep-gold-dark);
}

.rep-nav-cta {
  background: linear-gradient(135deg, var(--rep-gold) 0%, var(--rep-gold-dark) 100%);
  color: var(--rep-navy-950) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: var(--rep-shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rep-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--rep-shadow-md);
}

/* Hero Section */
.rep-hero {
  background: linear-gradient(180deg, var(--rep-white) 0%, var(--rep-slate-100) 100%);
  padding: 40px 0 50px;
  border-bottom: 1px solid var(--rep-slate-200);
}

.rep-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.rep-meta-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.rep-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rep-navy-900);
  color: var(--rep-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rep-badge-pill.gold {
  background: var(--rep-gold-light);
  color: var(--rep-gold-dark);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.rep-badge-pill.green {
  background: var(--rep-emerald-light);
  color: var(--rep-emerald-dark);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.rep-hero h1 {
  font-family: var(--rep-font-heading);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.18;
  color: var(--rep-navy-900);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.rep-score-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--rep-white);
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--rep-slate-200);
  margin-bottom: 20px;
  box-shadow: var(--rep-shadow-sm);
}

.rep-score-number {
  font-family: var(--rep-font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--rep-navy-900);
  line-height: 1;
}

.rep-score-number span {
  font-size: 16px;
  font-weight: 600;
  color: var(--rep-slate-500);
}

.rep-score-stars {
  color: var(--rep-gold);
  font-size: 18px;
}

.rep-score-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--rep-slate-500);
}

.rep-score-text strong {
  color: var(--rep-emerald-dark);
  font-weight: 700;
  display: block;
}

.rep-canonical-lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--rep-navy-700);
  margin-bottom: 24px;
}

.rep-hero-bullets {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rep-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--rep-navy-800);
}

.rep-hero-bullets svg {
  width: 18px;
  height: 18px;
  fill: var(--rep-emerald);
  flex-shrink: 0;
}

/* Giant CTA Button */
.rep-cta-huge {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #090d16;
  text-align: center;
  font-family: var(--rep-font-heading);
  font-size: 18px;
  font-weight: 900;
  padding: 18px 24px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.2px;
  border: 1px solid #fbbf24;
}

.rep-cta-huge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(217, 119, 6, 0.45);
}

.rep-cta-subtext {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(9, 13, 22, 0.85);
  margin-top: 4px;
  text-transform: none;
}

.rep-stock-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rep-slate-500);
}

.rep-stock-dot {
  width: 8px;
  height: 8px;
  background: var(--rep-emerald);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--rep-emerald);
}

/* Hero Media Box */
.rep-hero-media {
  background: var(--rep-white);
  border: 1px solid var(--rep-slate-200);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--rep-shadow-lg);
  position: relative;
  text-align: center;
}

.rep-hero-media img {
  margin: 0 auto;
  max-height: 400px;
  object-fit: contain;
}

.rep-media-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rep-slate-100);
}

.rep-media-badge-item {
  background: var(--rep-slate-50);
  border: 1px solid var(--rep-slate-200);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--rep-navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.rep-media-badge-item svg {
  width: 14px;
  height: 14px;
  fill: var(--rep-emerald);
}

/* Sections */
.rep-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--rep-slate-200);
}

.rep-section.alt {
  background: var(--rep-white);
}

.rep-section.navy {
  background: var(--rep-navy-900);
  color: var(--rep-white);
  border-bottom: none;
}

.rep-heading-box {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.rep-kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rep-gold-dark);
  margin-bottom: 8px;
}

.rep-section.navy .rep-kicker {
  color: var(--rep-gold);
}

.rep-heading-box h2 {
  font-family: var(--rep-font-heading);
  font-size: 30px;
  font-weight: 900;
  color: var(--rep-navy-900);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.rep-section.navy .rep-heading-box h2 {
  color: var(--rep-white);
}

.rep-heading-box p {
  font-size: 16px;
  color: var(--rep-slate-500);
  line-height: 1.6;
}

.rep-section.navy .rep-heading-box p {
  color: var(--rep-slate-400);
}

/* Meter Breakdown Card */
.rep-meter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rep-meter-card {
  background: var(--rep-white);
  border: 1px solid var(--rep-slate-200);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--rep-shadow-sm);
}

.rep-meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.rep-meter-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--rep-navy-900);
}

.rep-meter-val {
  font-weight: 800;
  font-size: 16px;
  color: var(--rep-emerald-dark);
}

.rep-meter-track {
  width: 100%;
  height: 10px;
  background: var(--rep-slate-100);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.rep-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rep-gold) 0%, var(--rep-emerald) 100%);
  border-radius: 6px;
}

.rep-meter-desc {
  font-size: 13.5px;
  color: var(--rep-slate-500);
  line-height: 1.5;
}

/* 90-Day Timeline */
.rep-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rep-timeline-card {
  background: var(--rep-white);
  border: 1px solid var(--rep-slate-200);
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: var(--rep-shadow-sm);
  position: relative;
  border-top: 4px solid var(--rep-gold);
}

.rep-timeline-tag {
  display: inline-block;
  background: var(--rep-gold-light);
  color: var(--rep-gold-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.rep-timeline-card h3 {
  font-family: var(--rep-font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--rep-navy-900);
  margin-bottom: 12px;
}

.rep-timeline-card p {
  font-size: 14.5px;
  color: var(--rep-navy-700);
  line-height: 1.6;
}

/* Scam Alert Box */
.rep-alert-box {
  background: #fff1f2;
  border: 2px solid #fecdd3;
  border-left: 6px solid var(--rep-crimson);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 36px;
}

.rep-alert-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rep-alert-header h3 {
  font-family: var(--rep-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #9f1239;
}

.rep-alert-box p {
  font-size: 15px;
  color: #881337;
  line-height: 1.65;
  margin-bottom: 12px;
}

/* Comparison Table */
.rep-table-wrap {
  width: 100%;
  margin-bottom: 30px;
}

.rep-comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--rep-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--rep-shadow-sm);
  border: 1px solid var(--rep-slate-200);
}

.rep-comp-table th {
  background: var(--rep-navy-900);
  color: var(--rep-white);
  padding: 16px 20px;
  font-family: var(--rep-font-heading);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.rep-comp-table th.rep-th-highlight {
  background: #1e3a8a;
  color: #fef08a;
}

.rep-comp-table td {
  padding: 16px 20px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--rep-slate-200);
  vertical-align: middle;
}

.rep-comp-table tr:last-child td {
  border-bottom: none;
}

.rep-comp-table td.rep-col-feature {
  font-weight: 700;
  color: var(--rep-navy-900);
  width: 34%;
}

.rep-comp-table td.rep-col-official {
  background: #f0fdf4;
  color: #166534;
  font-weight: 700;
  width: 33%;
}

.rep-comp-table td.rep-col-fake {
  background: #fff5f5;
  color: #991b1b;
  width: 33%;
}

/* Pricing Grid */
.rep-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.rep-price-card {
  background: var(--rep-white);
  border: 1px solid var(--rep-slate-200);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: var(--rep-shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rep-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rep-shadow-xl);
}

.rep-price-card.popular {
  border: 2px solid var(--rep-gold);
  background: #ffffff;
  transform: scale(1.03);
  z-index: 2;
  box-shadow: var(--rep-shadow-xl);
}

.rep-price-card.popular:hover {
  transform: scale(1.05);
}

.rep-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--rep-gold) 0%, var(--rep-gold-dark) 100%);
  color: var(--rep-navy-950);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.8px;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--rep-shadow-sm);
}

.rep-pack-title {
  font-family: var(--rep-font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--rep-navy-900);
  margin-top: 10px;
}

.rep-pack-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--rep-slate-500);
  margin-bottom: 16px;
}

.rep-pack-img {
  margin: 0 auto 16px;
  max-height: 180px;
  object-fit: contain;
}

.rep-pack-price {
  margin-bottom: 8px;
}

.rep-pack-price .amount {
  font-family: var(--rep-font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--rep-navy-900);
  line-height: 1;
}

.rep-pack-price .unit {
  font-size: 15px;
  font-weight: 600;
  color: var(--rep-slate-500);
}

.rep-pack-savings {
  display: inline-block;
  background: var(--rep-emerald-light);
  color: var(--rep-emerald-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.rep-pack-total {
  font-size: 14px;
  font-weight: 700;
  color: var(--rep-navy-800);
  margin-bottom: 4px;
}

.rep-pack-shipping {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--rep-emerald-dark);
  margin-bottom: 20px;
}

.rep-pack-shipping.paid {
  color: var(--rep-slate-500);
}

.rep-pack-features {
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--rep-slate-100);
  padding-top: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rep-pack-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rep-navy-700);
}

.rep-pack-features svg {
  width: 16px;
  height: 16px;
  fill: var(--rep-emerald);
  flex-shrink: 0;
}

.rep-btn-order {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--rep-gold) 0%, var(--rep-gold-dark) 100%);
  color: var(--rep-navy-950);
  font-family: var(--rep-font-heading);
  font-size: 16px;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.rep-btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(217, 119, 6, 0.4);
}

/* Reviews Grid */
.rep-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rep-review-card {
  background: var(--rep-white);
  border: 1px solid var(--rep-slate-200);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--rep-shadow-sm);
}

.rep-review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.rep-reviewer-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--rep-navy-900);
}

.rep-reviewer-info span {
  font-size: 12.5px;
  color: var(--rep-slate-500);
}

.rep-review-badge {
  background: var(--rep-emerald-light);
  color: var(--rep-emerald-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rep-review-stars {
  color: var(--rep-gold);
  font-size: 15px;
  margin-bottom: 10px;
}

.rep-review-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--rep-navy-900);
  margin-bottom: 8px;
}

.rep-review-card p {
  font-size: 14.5px;
  color: var(--rep-navy-700);
  line-height: 1.6;
}

/* FAQ Accordion */
.rep-faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rep-faq-item {
  background: var(--rep-white);
  border: 1px solid var(--rep-slate-200);
  border-radius: 10px;
  overflow: hidden;
}

.rep-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--rep-font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--rep-navy-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rep-faq-icon {
  font-size: 20px;
  color: var(--rep-gold-dark);
  transition: transform 0.2s ease;
}

.rep-faq-answer {
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--rep-navy-700);
  line-height: 1.65;
  display: none;
}

.rep-faq-item.active .rep-faq-answer {
  display: block;
}

.rep-faq-item.active .rep-faq-icon {
  transform: rotate(45deg);
}

/* Verifier Box */
.rep-verifier-box {
  background: var(--rep-slate-100);
  border: 1px solid var(--rep-slate-200);
  border-radius: 12px;
  padding: 24px;
  margin-top: 36px;
  text-align: center;
}

.rep-verifier-box h3 {
  font-family: var(--rep-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--rep-navy-900);
  margin-bottom: 8px;
}

.rep-verifier-box p {
  font-size: 14px;
  color: var(--rep-slate-500);
  margin-bottom: 16px;
}

.rep-verifier-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.rep-verifier-input {
  flex: 1;
  min-width: 220px;
  padding: 10px 14px;
  border: 1px solid var(--rep-slate-200);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}

.rep-verifier-btn {
  background: var(--rep-navy-900);
  color: var(--rep-white);
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: var(--rep-font-heading);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.rep-verifier-btn:hover {
  background: var(--rep-gold-dark);
}

.rep-verifier-result {
  margin-top: 12px;
  font-size: 13.5px;
}

/* Editorial Content Page Styles */
.rep-article {
  background: var(--rep-white);
  border: 1px solid var(--rep-slate-200);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--rep-shadow-sm);
  margin: 40px auto;
  max-width: 860px;
}

.rep-article h1 {
  font-family: var(--rep-font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--rep-navy-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.rep-article h2 {
  font-family: var(--rep-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--rep-navy-900);
  margin: 28px 0 12px;
  border-bottom: 2px solid var(--rep-slate-100);
  padding-bottom: 6px;
}

.rep-article h3 {
  font-family: var(--rep-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--rep-navy-800);
  margin: 20px 0 8px;
}

.rep-article p {
  font-size: 15.5px;
  color: var(--rep-navy-700);
  line-height: 1.7;
  margin-bottom: 16px;
}

.rep-article ul, .rep-article ol {
  margin: 0 0 20px 24px;
  color: var(--rep-navy-700);
  font-size: 15.5px;
  line-height: 1.7;
}

.rep-article li {
  margin-bottom: 8px;
}

.rep-breadcrumbs {
  font-size: 13px;
  color: var(--rep-slate-500);
  margin-bottom: 20px;
}

.rep-breadcrumbs a {
  color: var(--rep-gold-dark);
  font-weight: 600;
}

/* Footer */
.rep-footer {
  background: var(--rep-navy-950);
  color: var(--rep-slate-400);
  padding: 50px 0 30px;
  font-size: 13.5px;
  line-height: 1.65;
  border-top: 1px solid var(--rep-navy-800);
}

.rep-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.rep-footer-col h4 {
  font-family: var(--rep-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--rep-white);
  margin-bottom: 14px;
}

.rep-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rep-footer-links a {
  color: var(--rep-slate-400);
  transition: color 0.2s ease;
}

.rep-footer-links a:hover {
  color: var(--rep-gold);
}

.rep-footer-disclaimer {
  border-top: 1px solid var(--rep-navy-800);
  padding-top: 24px;
  font-size: 12px;
  color: var(--rep-slate-500);
  text-align: justify;
}

.rep-footer-copy {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--rep-slate-500);
}

/* Mobile Responsiveness & Mandatory Table to Card Transform */
@media (max-width: 900px) {
  .rep-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .rep-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .rep-price-card.popular {
    transform: none;
  }
  .rep-meter-grid,
  .rep-timeline,
  .rep-reviews-grid,
  .rep-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rep-nav-links {
    display: none;
  }
  .rep-hero h1 {
    font-size: 27px;
  }
  .rep-heading-box h2 {
    font-size: 24px;
  }
  .rep-cta-huge {
    font-size: 16px;
    padding: 15px 18px;
  }
  .rep-article {
    padding: 24px 16px;
    margin: 20px auto;
  }
  
  /* CRITICAL: Responsive Table Transform into Cards (No horizontal scroll) */
  .rep-comp-table, 
  .rep-comp-table thead, 
  .rep-comp-table tbody, 
  .rep-comp-table th, 
  .rep-comp-table td, 
  .rep-comp-table tr {
    display: block;
    width: 100%;
  }
  
  .rep-comp-table thead {
    display: none;
  }
  
  .rep-comp-table tr {
    background: var(--rep-white);
    border: 1px solid var(--rep-slate-200);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--rep-shadow-sm);
  }
  
  .rep-comp-table td {
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid var(--rep-slate-100);
    display: flex;
    flex-direction: column;
    width: 100% !important;
  }
  
  .rep-comp-table td:last-child {
    border-bottom: none;
  }
  
  .rep-comp-table td::before {
    content: attr(data-label);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--rep-slate-500);
    margin-bottom: 4px;
  }
  
  .rep-comp-table td.rep-col-feature {
    font-size: 16px;
    color: var(--rep-navy-900);
    border-bottom: 2px solid var(--rep-slate-200);
    padding-bottom: 8px;
    margin-bottom: 6px;
  }
  
  .rep-comp-table td.rep-col-feature::before {
    display: none;
  }
}
