/* JabCompare — Main Stylesheet */
/* Brand: Trust, Clarity, Authority — MoneySuperMarket of Weight Loss Jabs */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0066CC;
  --primary-dark: #004C99;
  --primary-light: #E8F2FF;
  --accent: #00B894;
  --accent-dark: #00A381;
  --danger: #E74C3C;
  --warning: #F39C12;
  --success: #27AE60;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-light: #6B7280;
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-grey: #F1F5F9;
  --border: #E2E8F0;
  --border-dark: #CBD5E1;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: all 0.2s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--text-mid); }
.lead { font-size: 1.2rem; font-weight: 400; color: var(--text-mid); line-height: 1.7; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ===== NAVIGATION ===== */
.nav {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-links a:hover { background: var(--bg-light); color: var(--primary); }
.nav-links a.active { color: var(--primary); background: var(--primary-light); }
.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: white !important; }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
}
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--text-mid);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #0066CC 0%, #004C99 60%, #003380 100%);
  color: white;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,184,148,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.95);
}
.hero h1 { color: white; margin-bottom: 1.25rem; }
.hero .lead { color: rgba(255,255,255,0.88); margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  display: block;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,184,148,0.35);
}
.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  color: white;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-dark {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}
.btn-dark:hover {
  background: #2D2D4E;
  color: white;
  transform: translateY(-1px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ===== PRICE COMPARISON TABLE ===== */
.price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.9rem;
}
.price-table thead {
  background: var(--primary);
  color: white;
}
.price-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.price-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.price-table tbody tr:hover { background: var(--bg-light); }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
}
.price-table .provider-name {
  font-weight: 600;
  color: var(--text-dark);
}
.price-table .provider-trust {
  font-size: 0.8rem;
  color: var(--text-light);
}
.price-table .price-value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}
.price-table .price-best {
  color: var(--success);
}
.badge-best {
  display: inline-block;
  background: var(--success);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
}
.badge-popular {
  display: inline-block;
  background: var(--warning);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
}
.trust-stars { color: #F59E0B; font-size: 0.85rem; }
.btn-buy {
  background: var(--accent);
  color: white;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  display: inline-block;
  transition: var(--transition);
}
.btn-buy:hover {
  background: var(--accent-dark);
  color: white;
  transform: translateY(-1px);
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
  transform: translateY(-2px);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card-icon-blue { background: var(--primary-light); }
.card-icon-green { background: #E8F8F5; }
.card-icon-orange { background: #FEF3E2; }
.card-icon-purple { background: #F3E8FF; }

/* ===== DRUG CARDS ===== */
.drug-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.drug-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.drug-card-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-light), #F0F7FF);
  border-bottom: 1px solid var(--border);
}
.drug-card-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.drug-card-generic {
  font-size: 0.85rem;
  color: var(--text-light);
}
.drug-card-body { padding: 1.5rem; }
.drug-card-price-from {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.drug-card-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.drug-card-price-period { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }
.drug-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.drug-stat {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
}
.drug-stat-value { font-weight: 700; font-size: 1rem; color: var(--text-dark); }
.drug-stat-label { font-size: 0.75rem; color: var(--text-light); }

/* ===== TRUST SECTION ===== */
.trust-bar {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-item-icon { color: var(--success); font-size: 1rem; }

/* ===== DISCLAIMER BANNER ===== */
.disclaimer-banner {
  background: #FFF8E1;
  border: 1px solid #FFE082;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #5D4037;
  margin: 1.5rem 0;
}
.disclaimer-banner-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ===== AFFILIATE DISCLOSURE ===== */
.affiliate-disclosure {
  background: var(--bg-light);
  border-left: 3px solid var(--primary);
  padding: 0.875rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 1rem 0;
}

/* ===== FAQ SECTION ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question.open { background: var(--primary-light); color: var(--primary); }
.faq-icon { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: white;
}
.faq-answer.open {
  padding: 1.25rem 1.5rem;
  max-height: 500px;
}
.faq-answer p { margin-bottom: 0; }

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb-sep { color: var(--border-dark); }

/* ===== LAST UPDATED BADGE ===== */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.35rem 0.875rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}
.last-updated-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
}

/* ===== COMPARISON WIDGET ===== */
.compare-widget {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.compare-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.compare-tab {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text-light);
  transition: var(--transition);
  margin-bottom: -2px;
  border-bottom: 2px solid transparent;
}
.compare-tab:hover { color: var(--primary); }
.compare-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--primary-light);
}

/* ===== BMI CALCULATOR ===== */
.bmi-calculator {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.bmi-result {
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}
.bmi-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.bmi-category {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--bg-white);
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text-dark);
  background: white;
  cursor: pointer;
  transition: var(--transition);
}
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.875rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { }
.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer h4 {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-disclaimer {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-disclaimer a { color: rgba(255,255,255,0.7); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: white;
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner p { color: rgba(255,255,255,0.85); font-size: 0.875rem; margin: 0; }
.cookie-banner a { color: var(--accent); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--primary-light);
  border: 1px solid rgba(0,102,204,0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box.green {
  background: #E8F8F5;
  border-color: rgba(0,184,148,0.2);
}
.highlight-box.orange {
  background: #FEF3E2;
  border-color: rgba(243,156,18,0.2);
}

/* ===== COMPARISON VS SECTION ===== */
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-light);
  padding: 1rem;
}
.comparison-col {
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 2rem;
}
.comparison-col.winner {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,184,148,0.1);
}
.winner-badge {
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* ===== STAT BOXES ===== */
.stat-box {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.stat-box-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-box-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== MEDICAL REVIEWER ===== */
.medical-reviewer {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}
.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.reviewer-info h5 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.reviewer-info p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 0; }
  .compare-widget { padding: 1.25rem; }
  .bmi-calculator { padding: 1.5rem; }
  .cookie-banner { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .grid-4 { grid-template-columns: 1fr; }
  .trust-items { gap: 1rem; }
}

/* ===== UTILITY CLASSES ===== */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-light); }
.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.bg-light { background: var(--bg-light); }
.rounded { border-radius: var(--radius-md); }
.shadow { box-shadow: var(--shadow-md); }
