/* ═══════════════════════════════════════════════════════════
   LOCAL FONTS — Poppins (self-hosted for performance)
   font-display: swap → text shows immediately with fallback
═══════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2'),
       url('../fonts/poppins-400.woff')  format('woff');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-500.woff2') format('woff2'),
       url('../fonts/poppins-500.woff')  format('woff');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2'),
       url('../fonts/poppins-600.woff')  format('woff');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2'),
       url('../fonts/poppins-700.woff')  format('woff');
}

/* ═══════════════════════════════════════════════════════════
   BOOSTARO® OFFICIAL WEBSITE — STYLESHEET
   Brand Colors: #9A1030 (Burgundy), #1C1C1C (Charcoal)
   Brand Font: Poppins, Weight 500
═══════════════════════════════════════════════════════════ */

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

:root {
  /* Brand */
  --brand:           #9A1030;
  --brand-dark:      #7a0c25;
  --brand-light:     #fce8ec;
  --brand-soft:      #fdf3f5;
  --charcoal:        #1C1C1C;
  --charcoal-mid:    #2e2e2e;
  --charcoal-soft:   #4a4a4a;
  /* Neutrals */
  --text-mid:        #444;
  --text-soft:       #6b6b6b;
  --border:          #e6e6e6;
  --border-soft:     #f0f0f0;
  --bg-section:      #fafafa;
  --bg-soft:         #f7f7f7;
  --white:           #ffffff;
  --gold:            #d4a23a;
  /* Shape */
  --radius-sm:       6px;
  --radius:          10px;
  --radius-lg:       16px;
  --radius-xl:       24px;
  /* Shadow */
  --shadow-sm:       0 2px 8px rgba(28,28,28,.06);
  --shadow-md:       0 6px 24px rgba(28,28,28,.10);
  --shadow-lg:       0 12px 40px rgba(154,16,48,.15);
  --shadow-brand:    0 8px 28px rgba(154,16,48,.25);
  /* Layout */
  --max-w:           1180px;
  --max-w-narrow:    920px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-mid); }
strong { font-weight: 600; color: var(--charcoal); }

ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: .35rem; color: var(--text-mid); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 22px;
}
.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--bg-section); }
.section-dark {
  background: var(--charcoal);
  color: rgba(255,255,255,.85);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.75); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  padding: 4px 14px;
  background: var(--brand-light);
  border-radius: 50px;
}

.section-intro {
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── TOP BANNER ───────────────────────────────────────── */
.top-banner {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: .02em;
}
.top-banner span { color: var(--gold); font-weight: 600; }

/* ── NAVIGATION ───────────────────────────────────────── */
nav.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -.02em;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  align-items: center;
  font-size: 14px;
}
.nav-links li { margin: 0; }
.nav-links a {
  color: var(--charcoal-mid);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a.active { color: var(--brand); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.nav-cta {
  background: var(--brand);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 14px;
  transition: all .2s ease;
  box-shadow: 0 2px 8px rgba(154,16,48,.25);
}
.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  color: var(--white) !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '▾';
  font-size: 10px;
  margin-left: 4px;
  opacity: .7;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: 10px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  z-index: 50;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--charcoal-mid);
  font-weight: 500;
}
.dropdown-menu a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .2s;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: var(--shadow-brand);
  text-align: center;
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(154,16,48,.35);
}
.btn-secondary {
  display: inline-block;
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-secondary:hover {
  background: var(--brand);
  color: var(--white);
}
.btn-dark {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-dark:hover {
  background: var(--charcoal-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-large {
  padding: 18px 44px;
  font-size: 1.1rem;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(154,16,48,.08), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, rgba(28,28,28,.04), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fdf3f5 100%);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,16,48,.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid var(--brand-light);
  box-shadow: var(--shadow-sm);
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  color: var(--brand);
  font-style: normal;
  font-weight: 700;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--text-soft);
  flex-wrap: wrap;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.guarantee-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 14px;
}
.guarantee-note::before {
  content: '🛡️';
  font-size: 16px;
}
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image-wrap img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(154,16,48,.18));
  position: relative;
  z-index: 2;
}

/* Trust row */
.hero-trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal-soft);
  font-weight: 500;
}
.trust-icon { font-size: 22px; }

/* ── PAGE HERO (subpages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a0a14 100%);
  color: var(--white);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(154,16,48,.25) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 720px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: .5; }

/* ── CARDS / GRIDS ────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.card-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 10px; }

/* ── INFOBOX ──────────────────────────────────────────── */
.infobox {
  background: var(--brand-soft);
  border-left: 4px solid var(--brand);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
  font-size: 15px;
}
.infobox-warning {
  background: #fff8e1;
  border-left-color: var(--gold);
}
.infobox-dark {
  background: var(--charcoal);
  color: var(--white);
  border-left: 4px solid var(--brand);
}
.infobox-dark p { color: rgba(255,255,255,.9); }

/* ── PRICING (matches uploaded images) ────────────────── */
.pricing-section {
  background: linear-gradient(180deg, #fdf3f5 0%, var(--white) 100%);
  padding: 80px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  text-align: center;
  position: relative;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-brand);
}
.price-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}
.price-bottles {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.price-image {
  margin: 0 auto 20px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-image img {
  max-height: 180px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.1));
}
.price-savings {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.price-per {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.price-per .small { font-size: 1rem; color: var(--charcoal-soft); font-weight: 500; }
.price-was {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.price-was s { color: #b8b8b8; }
.price-was strong { color: var(--charcoal); }
.price-shipping {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 14px 0 18px;
  padding: 6px 14px;
  background: var(--bg-soft);
  border-radius: 50px;
}
.price-cta {
  display: block;
  background: var(--brand);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  margin-top: auto;
  transition: all .2s ease;
}
.price-cta:hover {
  background: var(--brand-dark);
  color: var(--white);
}
.price-card.featured .price-cta {
  background: var(--charcoal);
}
.price-card.featured .price-cta:hover {
  background: var(--charcoal-mid);
  color: var(--white);
}

/* ── BONUS SECTION ────────────────────────────────────── */
.bonus-section {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.bonus-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(154,16,48,.18) 0%, transparent 50%);
  pointer-events: none;
}
.bonus-section h2 { color: var(--white); }
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bonus-image img {
  max-width: 100%;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.4));
}
.bonus-content .label-tag {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bonus-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  line-height: 1.6;
}
.bonus-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}
.bonus-list li strong { color: var(--white); }

/* ── INGREDIENTS LIST ─────────────────────────────────── */
.ingredient-list { list-style: none; margin: 0; padding: 0; }
.ingredient-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
  padding: 22px 26px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  transition: all .2s ease;
}
.ingredient-item:hover {
  box-shadow: var(--shadow-sm);
  border-left-color: var(--brand-dark);
}
.ingredient-name {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.ingredient-desc {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all .2s ease;
  overflow: hidden;
}
.faq-item:hover { border-color: var(--brand-light); }
.faq-item.open { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.faq-q .arrow {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform .25s ease;
}
.faq-item.open .faq-q .arrow {
  transform: rotate(180deg);
  background: var(--brand);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a {
  max-height: 800px;
  padding: 0 24px 22px;
}
.faq-a p { margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ── REVIEWS ─────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 22px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--brand);
  line-height: 1;
  font-weight: 700;
}
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 15px;
}
.review-location {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 2px;
}

/* ── BENEFIT LIST ─────────────────────────────────────── */
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 56px; height: 56px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.benefit-card h3 { margin-bottom: 10px; }
.benefit-card p { font-size: 15px; color: var(--text-mid); margin: 0; }

/* ── COMPARISON TABLE ─────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.compare-table th {
  background: var(--charcoal);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
}
.compare-table th.highlight {
  background: var(--brand);
}
.compare-table td.feature { font-weight: 600; color: var(--charcoal); background: var(--bg-soft); }
.compare-table td.win { color: var(--brand); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }

/* ── GUARANTEE BANNER ─────────────────────────────────── */
.guarantee-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  padding: 56px 0;
}
.guarantee-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 22px;
}
.guarantee-icon {
  flex-shrink: 0;
  width: 110px; height: 110px;
  background: var(--white);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.guarantee-banner h2 { color: var(--white); margin-bottom: 10px; }
.guarantee-banner p { color: rgba(255,255,255,.92); margin: 0; font-size: 1rem; }

/* ── INTERNAL LINKING / RELATED ──────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .2s ease;
}
.related-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.related-card h4 {
  margin-bottom: 8px;
  color: var(--charcoal);
}
.related-card p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.related-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.related-card a:hover { gap: 8px; }

/* ── ARTICLE CONTENT (sub-pages) ──────────────────────── */
.article {
  max-width: 880px;
  margin: 0 auto;
}
.article h2 { margin: 36px 0 16px; }
.article h3 { margin: 28px 0 12px; }
.article p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; color: var(--text-mid); }
.article ul, .article ol { margin: 12px 0 20px 24px; }
.article li { margin-bottom: 10px; line-height: 1.7; font-size: 16px; }
.article img {
  border-radius: var(--radius);
  margin: 24px auto;
  box-shadow: var(--shadow-sm);
}
.article blockquote {
  border-left: 4px solid var(--brand);
  background: var(--brand-soft);
  padding: 20px 28px;
  margin: 24px 0;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  color: var(--charcoal-mid);
  font-style: italic;
}

.toc {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0 32px;
}
.toc h4 {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 12px;
}
.toc ol {
  margin: 0;
  padding-left: 20px;
}
.toc li { margin-bottom: 6px; font-size: 15px; }
.toc li a { color: var(--charcoal); }
.toc li a:hover { color: var(--brand); }

/* ── CONTACT FORM ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(154,16,48,.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-bottom: 14px;
}
.contact-info-card h4 {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.contact-info-card p { margin-bottom: 0; font-size: 15px; }

/* ── SUPPLEMENT FACTS ─────────────────────────────────── */
.supplement-facts {
  background: var(--white);
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  padding: 22px;
}
.sf-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--charcoal);
  border-bottom: 6px solid var(--charcoal);
  padding-bottom: 6px;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.sf-sub { font-size: 13px; color: var(--text-soft); margin-bottom: 12px; }
.sf-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--charcoal);
}
.sf-row.bold { font-weight: 700; }
.sf-prop {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid var(--charcoal);
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
  padding: 64px 0 28px;
  position: relative;
}
footer.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand-block { max-width: 360px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 18px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: all .2s ease;
}
.footer-social a:hover {
  background: var(--brand);
  color: var(--white);
}
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .2s, padding-left .2s;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
}
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}
.footer-legal a:hover { color: var(--white); }
.footer-copy { color: rgba(255,255,255,.4); font-size: 12px; margin-left: auto; }

/* ── SCROLL ANIMATIONS ────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 980px) {
  .grid-2,
  .hero-inner,
  .bonus-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-image-wrap { max-width: 380px; margin: 0 auto; }
  .grid-3,
  .grid-4,
  .related-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand-block { grid-column: 1 / -1; max-width: none; }
  .nav-links {
    position: fixed;
    top: 64px; right: 0;
    width: 280px;
    height: calc(100vh - 64px);
    background: var(--white);
    flex-direction: column;
    padding: 24px 22px;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,.08);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 14px;
    opacity: 1;
    visibility: visible;
    width: 100%;
    min-width: auto;
  }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .guarantee-inner { flex-direction: column; text-align: center; gap: 24px; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-copy { margin-left: 0; }
}

@media (max-width: 540px) {
  .section { padding: 56px 0; }
  .pricing-section { padding: 56px 0; }
  .hero { padding: 56px 0 40px; }
  .page-hero { padding: 56px 0 40px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary { text-align: center; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .compare-table { display: block; overflow-x: auto; }
}

/* ── CONTACT PAGE ADDITIONS ───────────────────────────── */
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 28px; }
.contact-block {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 14px;
}
.contact-block h4 {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-block p { margin-bottom: 0; font-size: 15px; line-height: 1.55; }
.contact-block p small { color: var(--text-muted); font-size: 13px; }
.contact-form-wrap h3 { margin-bottom: 20px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(154,16,48,.1);
}
.form-row textarea { resize: vertical; }
.btn-block { width: 100%; margin-top: 6px; }
.form-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
}
.form-disclaimer a { color: var(--brand); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   v2 UPGRADE — LARGER FONTS, MODERN CONVERSION DESIGN
   Brand: Burgundy #9A1030, Charcoal #1C1C1C
   Loaded after base styles → these win the cascade
═══════════════════════════════════════════════════════════ */

/* ── 1. LARGER, MORE READABLE TYPOGRAPHY ────────────────── */
body { font-size: 17.5px; line-height: 1.75; }

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.65rem); }
h4 { font-size: 1.2rem; }

p   { font-size: 1.0625rem; line-height: 1.75; color: #3a3a3a; margin-bottom: 1.15rem; }
li  { font-size: 1.0625rem; line-height: 1.7;  color: #3a3a3a; margin-bottom: .55rem; }

.section-intro { font-size: 1.18rem; line-height: 1.7; }
.section-label { font-size: 13px; padding: 5px 16px; }

/* ── 2. NAVIGATION — POLISHED FOR LARGER LOGO ───────────── */
.nav-logo img { height: 46px; width: auto; }
.nav-links { font-size: 15px; gap: 30px; }
.nav-cta {
  padding: 12px 26px;
  font-size: 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9A1030 0%, #b3163d 100%);
  box-shadow: 0 6px 20px rgba(154,16,48,.32);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(154,16,48,.42);
  background: linear-gradient(135deg, #7a0c25 0%, #9A1030 100%);
}

/* ── 3. HERO — STRONGER GRADIENT, BIGGER PRODUCT IMAGE ─── */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(154,16,48,.06) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(154,16,48,.04) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #fdf3f5 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(154,16,48,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero h1 em {
  background: linear-gradient(135deg, #9A1030 0%, #b3163d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 700;
}
.hero-sub { font-size: 1.2rem; line-height: 1.7; color: #3a3a3a; max-width: 580px; }
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, rgba(154,16,48,.10) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(0 20px 50px rgba(154,16,48,.18));
}

/* ── 4. CTA BUTTONS — CONVERSION-OPTIMIZED ─────────────── */
.btn-primary,
.price-cta,
.btn-block {
  background: linear-gradient(135deg, #9A1030 0%, #b3163d 100%);
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(154,16,48,.32);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover,
.price-cta:hover,
.btn-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(154,16,48,.42);
  background: linear-gradient(135deg, #7a0c25 0%, #9A1030 100%);
  color: #fff !important;
}
.btn-primary::after,
.price-cta::after {
  content: ' →';
  display: inline-block;
  transition: transform .25s ease;
  margin-left: 4px;
}
.btn-primary:hover::after,
.price-cta:hover::after { transform: translateX(4px); }

.btn-secondary {
  font-size: 1.0rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--brand);
  font-weight: 600;
}
.btn-secondary:hover {
  background: var(--brand);
  color: #fff;
}

/* ── 5. PRICING CARDS — CONVERSION-FOCUSED ─────────────── */
.pricing-section {
  background:
    linear-gradient(180deg, #fdf3f5 0%, #ffffff 60%);
  padding: 80px 0;
}
.price-card {
  background: #fff;
  border: 2px solid #efe2e6;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(28,28,28,.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(154,16,48,.18);
}
.price-card.featured {
  border-color: var(--brand);
  box-shadow: 0 18px 50px rgba(154,16,48,.20);
  transform: scale(1.04);
  position: relative;
  z-index: 2;
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.price-card .price-image img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 14px;
  height: auto;
}
.price-per {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -.02em;
}
.price-savings {
  background: linear-gradient(135deg, #9A1030, #b3163d);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  margin: 8px 0;
  letter-spacing: .04em;
}

/* ── 6. CARDS / FEATURE BLOCKS ─────────────────────────── */
.card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 4px 14px rgba(28,28,28,.04);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(154,16,48,.30);
  box-shadow: 0 14px 34px rgba(28,28,28,.10);
}
.card-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #9A1030 0%, #b3163d 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(154,16,48,.30);
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { font-size: 1rem; color: #555; margin-bottom: 0; }

/* ── 7. PAGE HERO ───────────────────────────────────────── */
.page-hero {
  background:
    linear-gradient(135deg, var(--charcoal) 0%, #2a0a14 100%)
    #fdfbfc;
  padding: 56px 0 56px;
  border-bottom: 1px solid #efe2e6;
}
.page-hero h1 { margin: 12px 0 14px; font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.page-hero p { font-size: 1.18rem; color: #4a4a4a; max-width: 700px; }
.breadcrumb { font-size: 14px; color: #777; }
.breadcrumb a { color: var(--brand); font-weight: 600; }

/* ── 8. ARTICLE CONTENT — READABILITY ──────────────────── */
.article h2 {
  margin-top: 2.6rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 3px solid var(--brand);
  display: inline-block;
}
.article h3 { margin-top: 2rem; margin-bottom: .8rem; color: var(--brand); }
.article p, .article li { font-size: 1.08rem; line-height: 1.8; }
.article ul, .article ol { margin-left: 1.5rem; }
.article ul li::marker { color: var(--brand); }

.toc {
  background: #fdf3f5;
  border-left: 4px solid var(--brand);
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  margin: 0 0 36px;
}
.toc h4 { color: var(--brand); margin-bottom: 12px; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.toc ol { margin: 0; padding-left: 20px; }
.toc li { font-size: 1rem; margin-bottom: 6px; }
.toc a { color: var(--charcoal); font-weight: 500; }
.toc a:hover { color: var(--brand); }

.infobox {
  border-left: 4px solid var(--brand);
  background: #fdf8f9;
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
  font-size: 1.05rem;
}

/* ── 9. COMPARISON / DATA TABLES ───────────────────────── */
.compare-table {
  font-size: 1rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(28,28,28,.06);
  border: 1px solid #ececec;
}
.compare-table thead th {
  background: var(--charcoal);
  color: #fff;
  font-size: 1rem;
  padding: 14px 16px;
}
.compare-table td { padding: 14px 16px; }
.compare-table tbody tr:nth-child(even) { background: #fafafa; }

/* ── 10. CONTACT — UPGRADED ────────────────────────────── */
.contact-block { padding: 22px 26px; font-size: 1.05rem; }
.contact-block h4 { font-size: 13px; }
.form-row input,
.form-row textarea,
.form-row select { font-size: 1rem; padding: 14px 16px; }

/* ── 11. FOOTER POLISH ─────────────────────────────────── */
.site-footer { padding: 60px 0 28px; }
.footer-logo img { height: 50px; width: auto; }
.footer-col h4 { font-size: 1rem; letter-spacing: .04em; }
.footer-col ul li { font-size: 1rem; }
.footer-disclaimer { font-size: .92rem; }

/* ── 12. SCROLL REVEAL ───────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 13. SVG ILLUSTRATIONS ─────────────────────────────── */
.illus {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
}
.illus-band {
  background: linear-gradient(180deg, #ffffff 0%, #fdf3f5 100%);
  padding: 50px 0;
  text-align: center;
  border-radius: 20px;
  margin: 24px 0;
}

/* ── 14. ACCESSIBILITY / FOCUS ─────────────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(154,16,48,.35);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── 15. MOBILE OPTIMIZATIONS ──────────────────────────── */
@media (max-width: 768px) {
  body { font-size: 16.5px; }
  .nav-logo img { height: 38px; }
  .hero { padding: 40px 0 50px; }
  .hero-image-wrap img { max-width: 320px; margin: 24px auto 0; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .btn-primary, .price-cta { padding: 14px 24px; font-size: 1rem; width: 100%; max-width: 360px; }
  .pricing-grid { gap: 24px; }
  .article p, .article li { font-size: 1.05rem; }
}

/* ── 16. CRITICAL — USE OPTIMIZED IMAGE BACKGROUND ─────── */
.hero-image-wrap, .price-image, .ingredients-side {
  background-color: transparent !important;
}

