/* ============================================
   GLPro - Shared Stylesheet (main.css)
   Clinical-Botanical design system
   ============================================ */

:root {
  --teal: #14808F;
  --teal-dark: #0E5F6B;
  --teal-light: #E8F4F6;
  --navy: #0F2D43;
  --navy-soft: #1A3F5A;
  --gold: #C8A052;
  --gold-light: #F2E8D0;
  --cream: #FAF7F2;
  --cream-warm: #F5EFE3;
  --text: #1A2A3A;
  --text-soft: #4A5868;
  --text-muted: #7A8898;
  --success: #2D8659;
  --danger: #C8473F;
  --border: #E2DED3;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(15,45,67,0.06);
  --shadow-md: 0 6px 20px rgba(15,45,67,0.08);
  --shadow-lg: 0 14px 40px rgba(15,45,67,0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============ ANNOUNCEMENT BAR ============ */
.announce-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--cream);
  text-align: center;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announce-bar a { color: var(--gold); font-weight: 700; }
.announce-bar a:hover { color: #E8C77C; }

/* ============ HEADER ============ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
}
.logo img { width: 38px; height: 38px; border-radius: 8px; }
.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}
.nav-menu a:hover { color: var(--teal); }
.btn-order-nav {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: all 0.2s;
}
.btn-order-nav:hover { background: var(--teal-dark); transform: translateY(-1px); }

.mobile-toggle { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; color: var(--navy); }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(20,128,143,0.32);
  transition: all 0.2s;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20,128,143,0.42);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #B08838 100%);
  box-shadow: 0 8px 22px rgba(200,160,82,0.35);
}
.btn-gold:hover { box-shadow: 0 12px 28px rgba(200,160,82,0.45); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 70px 0 80px;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(20,128,143,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 95%, rgba(200,160,82,0.08) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(20,128,143,0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(20,128,143,0.18);
}
.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.hero h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 600;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 560px;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 28px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.hero-bullets svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.hero-trust-item span.icon {
  width: 38px; height: 38px;
  background: var(--white);
  border: 2px solid var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 18px;
}
.hero-image {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero-image-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(20,128,143,0.18) 0%, rgba(200,160,82,0.08) 45%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.05); opacity: 1; }
}
.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(15,45,67,0.20));
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
.trust-badge {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.trust-badge .badge-icon {
  width: 46px; height: 46px;
  margin: 0 auto 8px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

/* ============ GENERIC SECTION ============ */
.section { padding: 80px 0; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* ============ AI ANSWER BLOCK ============ */
.ai-block {
  background: linear-gradient(135deg, var(--teal-light) 0%, #F0F8FA 100%);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 22px 28px;
  margin: 28px 0;
  position: relative;
}
.ai-block::before {
  content: 'Quick Answer';
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.ai-block h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
}
.ai-block p { margin: 0; color: var(--text); }

/* ============ WHY CHOOSE ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.why-img img { width: 100%; max-width: 460px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(15,45,67,0.15)); }
.why-points { list-style: none; }
.why-points li {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.why-points .check {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.why-points h3 { margin-bottom: 4px; font-size: 1.15rem; }
.why-points p { color: var(--text-soft); margin: 0; }

/* ============ PROBLEM SECTION ============ */
.problem-section {
  background: linear-gradient(135deg, var(--navy) 0%, #133855 100%);
  color: var(--cream);
  padding: 80px 0;
}
.problem-section h2 { color: var(--white); }
.problem-section .section-head p { color: rgba(250,247,242,0.85); }
.problem-section .ai-block {
  background: rgba(255,255,255,0.08);
  border-left-color: var(--gold);
  color: var(--cream);
}
.problem-section .ai-block::before { background: var(--gold); color: var(--navy); }
.problem-section .ai-block h3 { color: var(--white); }
.problem-section .ai-block p { color: rgba(250,247,242,0.92); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.pain-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 26px 22px;
  transition: all 0.25s;
}
.pain-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
.pain-icon {
  width: 48px; height: 48px;
  background: rgba(200,160,82,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}
.pain-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.pain-card p { color: rgba(250,247,242,0.78); font-size: 14.5px; margin: 0; }

/* ============ WHAT IS ============ */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.what-img img { width: 100%; max-width: 450px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(15,45,67,0.15)); }
.what-text p { color: var(--text-soft); margin-bottom: 16px; line-height: 1.75; }
.what-text p strong { color: var(--navy); font-weight: 700; }

/* ============ HOW IT WORKS ============ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.25s;
}
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(20,128,143,0.3); }
.how-step {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--teal);
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
}
.how-card h3 { margin-top: 8px; font-size: 1.15rem; }
.how-card p { color: var(--text-soft); margin: 0; font-size: 15px; }

/* ============ SVG DIAGRAM SECTION (UNIQUE) ============ */
.diagram-section {
  background: var(--cream-warm);
  padding: 80px 0;
}
.diagram-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.diagram-wrap {
  background: var(--white);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 980px;
  margin: 0 auto;
}
.diagram-wrap svg { width: 100%; height: auto; display: block; }
.diagram-caption {
  text-align: center;
  color: var(--text-soft);
  font-size: 14.5px;
  margin-top: 18px;
  font-style: italic;
}

/* ============ PRICING ============ */
.pricing-section { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 22px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border-radius: 22px;
  padding: 36px 26px 30px;
  text-align: center;
  border: 2px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.best {
  border-color: var(--teal);
  transform: scale(1.05);
  box-shadow: 0 18px 44px rgba(20,128,143,0.18);
  background: linear-gradient(180deg, #FBFDFD 0%, var(--white) 100%);
}
.price-card.best:hover { transform: scale(1.05) translateY(-4px); }
.best-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #B08838 100%);
  color: var(--white);
  padding: 7px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(200,160,82,0.4);
  white-space: nowrap;
}
.price-tier { font-size: 14px; font-weight: 700; color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.price-card h3 { font-size: 1.45rem; margin-bottom: 18px; color: var(--navy); }
.price-img-wrap {
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-card .price-img { width: 220px; height: 220px; object-fit: contain; }
.price-card.best .price-img { width: 240px; height: 240px; object-fit: contain; }
.price-old { color: var(--text-muted); text-decoration: line-through; font-size: 17px; margin-bottom: 2px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin: 4px 0 2px;
}
.price-amount .cents { font-size: 1.4rem; vertical-align: top; }
.price-per { font-size: 14px; color: var(--text-soft); font-weight: 500; margin-bottom: 14px; }
.price-savings {
  display: inline-block;
  background: rgba(45,134,89,0.12);
  color: var(--success);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.price-shipping { font-size: 13.5px; color: var(--text-soft); margin-bottom: 18px; font-weight: 600; }
.price-shipping.free { color: var(--success); }
.price-card .btn-primary { width: 100%; padding: 14px 20px; font-size: 16px; }
.price-card.best .btn-primary { background: linear-gradient(135deg, var(--gold) 0%, #B08838 100%); box-shadow: 0 8px 22px rgba(200,160,82,0.4); }

.bonus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1080px;
  margin: 50px auto 0;
}
.bonus-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.bonus-emblem {
  width: 70px; height: 70px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.bonus-tag { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.bonus-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.bonus-card p { font-size: 14px; color: var(--text-soft); margin: 0; }

/* ============ INGREDIENTS ============ */
.ingredients-section { background: var(--white); }
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ing-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.25s;
}
.ing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ing-icon {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  border: 1px solid var(--border);
}
.ing-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  padding: 4px 10px;
  border-radius: 999px;
}
.ing-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.ing-card p { color: var(--text-soft); font-size: 14.5px; margin: 0; line-height: 1.6; }

/* ============ BENEFITS ============ */
.benefits-section { background: var(--cream-warm); }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(20,128,143,0.3); }
.benefit-icon {
  width: 60px; height: 60px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin: 0 auto 14px;
}
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.benefit-card p { color: var(--text-soft); font-size: 14px; margin: 0; }

/* ============ TIMELINE ============ */
.timeline-section { background: var(--white); }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
  position: relative;
}
.timeline-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 30px 24px;
  border-top: 4px solid var(--teal);
  position: relative;
}
.timeline-card:nth-child(2) { border-top-color: #2A9DAD; }
.timeline-card:nth-child(3) { border-top-color: var(--gold); }
.timeline-card:nth-child(4) { border-top-color: var(--success); }
.timeline-phase { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.timeline-card:nth-child(3) .timeline-phase { color: var(--gold); }
.timeline-card:nth-child(4) .timeline-phase { color: var(--success); }
.timeline-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.timeline-card p { color: var(--text-soft); font-size: 14.5px; margin: 0; }

/* ============ COMPARISON TABLE ============ */
.compare-section { background: var(--cream); }
.compare-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
}
.compare-table th.highlight { background: var(--teal); }
.compare-table td:first-child { font-weight: 600; color: var(--navy); }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: var(--success); font-weight: 700; }
.compare-table .no { color: var(--danger); font-weight: 700; }
.compare-table .neutral { color: var(--text-muted); }

/* ============ REVIEWS ============ */
.reviews-section { background: var(--cream-warm); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--gold); font-size: 17px; margin-bottom: 12px; letter-spacing: 2px; }
.review-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info strong { display: block; font-size: 14.5px; color: var(--navy); margin-bottom: 2px; }
.author-info .verified {
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.author-info .location { font-size: 12px; color: var(--text-muted); }

/* ============ GUARANTEE ============ */
.guarantee-section {
  background: linear-gradient(135deg, var(--navy) 0%, #143C5A 100%);
  color: var(--cream);
  text-align: center;
  padding: 80px 0;
}
.guarantee-section h2 { color: var(--white); margin-bottom: 16px; }
.guarantee-seal {
  width: 180px; height: 180px;
  margin: 0 auto 28px;
  background: conic-gradient(from 0deg, var(--gold), #E8C77C, var(--gold), #B08838, var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 16px 40px rgba(200,160,82,0.4);
}
.guarantee-seal::before {
  content: '';
  position: absolute;
  inset: 8px;
  background: var(--navy);
  border-radius: 50%;
}
.guarantee-seal-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.guarantee-seal-content .big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.guarantee-seal-content .lbl { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; }
.guarantee-text { max-width: 700px; margin: 0 auto 26px; color: rgba(250,247,242,0.92); font-size: 1.05rem; }

/* ============ CONTRAINDICATIONS ============ */
.contra-section { background: var(--white); }
.contra-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFF8F6 0%, #FFEEEA 100%);
  border-left: 4px solid var(--danger);
  border-radius: 14px;
  padding: 36px 40px;
}
.contra-wrap h2 { color: var(--danger); margin-bottom: 18px; }
.contra-list { list-style: none; }
.contra-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.6;
}
.contra-list .x-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--danger);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 1px;
}

/* ============ FAQ ============ */
.faq-section { background: var(--cream); }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(20,128,143,0.3); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 24px 22px;
}
.faq-a p { color: var(--text-soft); margin: 0; line-height: 1.7; font-size: 15px; }

/* ============ MEDICAL REVIEWER ============ */
.medreviewer-section { background: var(--white); }
.medreviewer-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 22px;
  padding: 36px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  border: 1px solid var(--border);
}
.medreviewer-photo img {
  width: 200px; height: 200px;
  border-radius: 18px;
  object-fit: cover;
}
.medreviewer-info .credential {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.medreviewer-info h3 { font-size: 1.5rem; margin-bottom: 4px; }
.medreviewer-info .title { color: var(--text-soft); font-size: 15px; margin-bottom: 12px; font-style: italic; }
.medreviewer-info p { color: var(--text-soft); font-size: 15px; margin: 0; line-height: 1.65; }

/* ============ REFERENCES ============ */
.refs-section { background: var(--cream-warm); }
.refs-list { max-width: 880px; margin: 0 auto; counter-reset: ref; }
.refs-list li {
  list-style: none;
  counter-increment: ref;
  background: var(--white);
  border-radius: 10px;
  padding: 18px 22px 18px 60px;
  margin-bottom: 12px;
  position: relative;
  font-size: 14.5px;
  color: var(--text-soft);
  border: 1px solid var(--border);
  line-height: 1.55;
}
.refs-list li::before {
  content: counter(ref);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--teal);
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-display);
}
.refs-list a { word-break: break-word; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.final-cta h2 { color: var(--white); margin-bottom: 18px; }
.final-cta p { color: rgba(255,255,255,0.92); max-width: 660px; margin: 0 auto 32px; font-size: 1.08rem; }
.final-cta .btn-primary { background: var(--white); color: var(--teal); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.final-cta .btn-primary:hover { background: var(--cream); color: var(--teal-dark); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy);
  color: rgba(250,247,242,0.78);
  padding: 60px 0 30px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--white); }
.footer-brand img { width: 38px; height: 38px; border-radius: 8px; }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(250,247,242,0.72); }
.footer-col a:hover { color: var(--gold); }
.footer-disc {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(250,247,242,0.6);
}
.footer-disc p { margin-bottom: 12px; }
.footer-copy {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(250,247,242,0.55);
}

/* ============ SOCIAL PROOF POPUP ============ */
.social-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px 14px 14px;
  box-shadow: 0 16px 40px rgba(15,45,67,0.18);
  border: 1px solid var(--border);
  display: none;
  align-items: center;
  gap: 14px;
  max-width: 340px;
  z-index: 95;
  animation: slideIn 0.4s ease;
}
.social-popup.show { display: flex; }
@keyframes slideIn {
  from { transform: translateX(-380px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.popup-avatar {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 700;
  font-family: var(--font-display);
}
.popup-text { flex: 1; font-size: 13px; line-height: 1.45; color: var(--text); }
.popup-text strong { color: var(--navy); }
.popup-text .time { color: var(--text-muted); font-size: 11.5px; display: block; margin-top: 3px; }
.popup-close {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 18px;
  padding: 0;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ MOBILE STICKY CTA ============ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  z-index: 90;
  box-shadow: 0 -8px 24px rgba(15,45,67,0.10);
}
.mobile-sticky-cta .btn-primary {
  width: 100%;
  padding: 13px;
  font-size: 16px;
}

/* ============ 404 PAGE ============ */
.error-section {
  padding: 80px 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-content { max-width: 620px; margin: 0 auto; }
.error-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.error-section h1 { margin-bottom: 14px; }
.error-section p { color: var(--text-soft); max-width: 480px; margin: 0 auto 28px; }
.error-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.error-links a {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.error-links a:hover { border-color: var(--teal); color: var(--teal); }

/* ============ LEGAL PAGE STYLES ============ */
.legal-section { padding: 60px 0 80px; background: var(--cream); }
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 50px 56px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.legal-wrap h1 { margin-bottom: 8px; }
.legal-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.legal-wrap h2 { font-size: 1.35rem; margin-top: 30px; margin-bottom: 12px; color: var(--navy); }
.legal-wrap h3 { font-size: 1.1rem; margin-top: 20px; margin-bottom: 8px; color: var(--navy); }
.legal-wrap p { color: var(--text-soft); margin-bottom: 14px; line-height: 1.75; font-size: 15.5px; }
.legal-wrap ul { margin: 0 0 16px 24px; color: var(--text-soft); }
.legal-wrap li { margin-bottom: 8px; line-height: 1.7; font-size: 15.5px; }
.legal-wrap a { color: var(--teal); text-decoration: underline; }

/* ============ CONTACT PAGE ============ */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.contact-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
}
.contact-card .ci-icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin: 0 auto 14px;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--text-soft); margin: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 18px 24px;
    gap: 14px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }

  /* Hero — mobile order: badge → H1 → image → sub → bullets → CTA → trust */
  .hero { padding: 32px 0 50px; }
  .hero::before { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-text { display: contents; }
  .hero-badge { order: 1; align-self: flex-start; margin-bottom: 4px; }
  .hero h1 { order: 2; margin-bottom: 4px; }
  .hero-image { order: 3; min-height: auto; margin: 8px 0; }
  .hero-image-glow { width: 320px; height: 320px; }
  .hero-image img { max-width: 320px; }
  .hero-sub { order: 4; margin-bottom: 10px; }
  .hero-bullets { order: 5; margin-bottom: 18px; }
  .hero-text .btn-primary { order: 6; align-self: flex-start; }
  .hero-trust { order: 7; gap: 16px; margin-top: 18px; }

  .trust-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .trust-strip-grid .trust-badge:nth-child(4),
  .trust-strip-grid .trust-badge:nth-child(5) { display: none; }

  .section { padding: 56px 0; }
  .why-grid, .what-grid { grid-template-columns: 1fr; gap: 36px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card.best { transform: none; order: -1; }
  .price-card.best:hover { transform: translateY(-4px); }
  .bonus-row { grid-template-columns: 1fr; }

  .ing-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .medreviewer-card { grid-template-columns: 1fr; text-align: center; padding: 28px 24px; }
  .medreviewer-photo img { margin: 0 auto; }

  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 600px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .legal-wrap { padding: 32px 26px; }
  .contact-info { grid-template-columns: 1fr; }

  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 70px; }
  .social-popup { left: 10px; right: 10px; max-width: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  body { font-size: 16px; }
  .trust-strip-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-grid .trust-badge:nth-child(3) { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .price-card { padding: 28px 20px 24px; }
  .price-card .price-img, .price-card.best .price-img { width: 200px; height: 200px; }
  .diagram-wrap { padding: 24px 18px; }
  .legal-wrap { padding: 26px 20px; }
  .contra-wrap { padding: 26px 22px; }
  .ai-block { padding: 18px 20px; }
  .guarantee-seal { width: 150px; height: 150px; }
  .guarantee-seal-content .big { font-size: 1.9rem; }
}
