/* ================================================
   GLUCOTIDE – Custom Stylesheet
   Domain  : glucotied.com
   Font    : Jost (Google Fonts)
   Framework: Bootstrap 5.3.3
   Updated : 2026
================================================ */

/* ── CSS Variables (Brand Colors) ─────────────
   !! CHANGE brand colors here to update site-wide !! */
:root {
  --main-color:   #1a6b3a;   /* Deep forest green – primary brand */
  --main-dark:    #134f2c;   /* Darker green – hover states */
  --accent-color: #f97316;   /* Orange – CTA buttons & highlights */
  --accent-hover: #ea6b0a;   /* Darker orange – CTA hover */
  --bg-light:     #f0fdf4;   /* Light green – alternate sections */
  --bg-white:     #ffffff;
  --text-dark:    #1c1c1c;
  --text-muted:   #555555;
  --border-light: #d1fae5;
  --star-gold:    #f59e0b;   /* Star ratings */
  --green-check:  #16a34a;   /* Checkmarks */
  --timer-red:    #dc2626;   /* Countdown */
}

/* ── Base Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  width: 100%;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--main-color); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Jost', sans-serif; font-weight: 700; line-height: 1.3; }

/* ── Shared Section Title Bar ──────────────────── */
.section-title-bar {
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 20px 16px;
  margin: 0 0 32px 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--bg-white);
  border-bottom: 2px solid var(--border-light);
  padding: 12px 0;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link {
  font-size: 28px;
  font-weight: 800;
  color: var(--main-color);
  letter-spacing: -0.5px;
  text-decoration: none;
}

/* Desktop nav wrap */
.nav-wrap { display: flex; align-items: center; gap: 24px; }

/* Nav links */
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { color: var(--main-color); background: var(--bg-light); }

/* Order button */
.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: var(--accent-color);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 9px 20px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
}
.order-btn:hover { background: var(--accent-hover); transform: translateY(-2px); color: #000; }

/* Hamburger button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
}
.hamburger-btn span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--main-color);
  border-radius: 3px;
}

/* ════════════════════════════════════════════════
   MOBILE SIDEBAR
════════════════════════════════════════════════ */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100%;
  background-color: var(--main-color);
  color: #fff;
  padding: 70px 22px 40px;
  transition: right 0.3s ease;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
}
.mobile-sidebar.open { right: 0; }

.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav a {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 11px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.15); }

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 20px;
  cursor: pointer;
}

.sidebar-order-btn {
  font-size: 17px;
  justify-content: center;
  padding: 14px 20px;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 250;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

/* ════════════════════════════════════════════════
   PAGE H1
════════════════════════════════════════════════ */
.page-h1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background-color: var(--main-color);
  text-align: center;
  margin: 0;
  padding: 12px 20px;
}

/* ════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════ */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 20px 44px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-img-wrap {
  flex: 1 1 280px;
  max-width: 460px;
  display: flex;
  justify-content: center;
}
.hero-img-wrap img { width: 100%; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12)); }

.hero-content { flex: 2 1 300px; max-width: 680px; }

.hero-title    { font-size: 32px; color: var(--main-color); margin-bottom: 10px; }
.hero-subtitle { font-size: 19px; font-weight: 600; font-style: italic; margin-bottom: 14px; }
.hero-desc     { font-size: 17px; margin-bottom: 18px; line-height: 1.75; }

/* Hero bullet list */
.hero-benefits-list { list-style: none; padding: 0; margin: 0 0 22px; }
.hero-benefits-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
}
.hero-benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--main-color);
  font-weight: 700;
}

/* CTA Buttons */
.hero-cta-wrap { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-color);
  color: #000;
  font-weight: 700;
  font-size: 17px;
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}
.cta-btn:hover { background: var(--accent-hover); transform: translateY(-2px); color: #000; }

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
}
.secondary-btn:hover { background: var(--main-dark); transform: translateY(-2px); color: #fff; }

/* Countdown timer */
.hero-timer-wrap {
  display: inline-block;
  background: #fff8e1;
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 12px 22px;
}
.timer-label { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.countdown-box {
  font-size: 44px;
  font-weight: 800;
  color: var(--timer-red);
  letter-spacing: 3px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.timer-colon { font-size: 44px; }

/* ════════════════════════════════════════════════
   TRUST BADGES / WHY CHOOSE
════════════════════════════════════════════════ */
.badges-section { background: var(--bg-white); padding-bottom: 44px; }

.badges-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 220px;
  text-align: center;
  background: var(--bg-light);
  padding: 22px 14px;
  border-radius: 14px;
  transition: transform 0.28s, box-shadow 0.28s;
  border: 1px solid var(--border-light);
}
.badge-item:hover { transform: translateY(-5px); box-shadow: 0 10px 26px rgba(0,0,0,0.09); }
.badge-item img { width: 110px; height: 110px; object-fit: contain; margin-bottom: 12px; }
.badge-name { font-size: 16px; font-weight: 700; color: var(--main-color); margin-bottom: 8px; text-transform: uppercase; }
.badge-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ════════════════════════════════════════════════
   PRICING SECTIONS (All Three Share These Styles)
════════════════════════════════════════════════ */
.pricing-section {
  background-color: var(--bg-light);
  padding-bottom: 50px;
  text-align: center;
}
.pricing-section-alt   { background-color: #ecfdf5; }
.pricing-section-final { background-color: #f7fdf9; }

/* Arrow pointer from header */
.pricing-arrow-top {
  width: 0; height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-top: 45px solid var(--main-color);
  margin: 0 auto;
}

.pricing-main-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--main-color);
  padding: 28px 20px 8px;
  margin: 0;
  line-height: 1.3;
}
.pricing-step-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 6px 20px 12px;
}
.pricing-note-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; font-style: italic; }
.pricing-footnote  { font-size: 14px; color: var(--text-muted); font-style: italic; padding-top: 16px; }

/* Timer display in pricing sections */
.pricing-timer-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff8e1;
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  padding: 8px 24px;
  margin: 0 auto 28px;
}
.pricing-timer-text    { font-weight: 600; font-size: 14px; }
.pricing-timer-display {
  font-size: 28px;
  font-weight: 800;
  color: var(--timer-red);
  font-variant-numeric: tabular-nums;
}

/* Cards container */
.pricing-cards-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding: 0 20px;
  align-items: flex-start;
}

/* Individual card */
.price-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  width: 300px;
  position: relative;
  text-align: center;
  border: 3px solid var(--border-light);
  overflow: visible;
  transition: transform 0.28s, box-shadow 0.28s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.13); }

/* Best value card highlight */
.best-value-card {
  border: 3px solid var(--main-color);
  transform: scale(1.04);
  background: #f0fff4;
  z-index: 2;
}
.best-value-card:hover { transform: scale(1.04) translateY(-6px); }

/* Ribbon badge */
.ribbon-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-color);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 20px;
  border-radius: 30px;
  white-space: nowrap;
  letter-spacing: 0.6px;
  z-index: 10;
}
.popular-ribbon { background: var(--accent-color); color: #000; }

/* Card header bars */
.price-card-header {
  padding: 16px 10px;
  color: #fff;
  border-radius: 14px 14px 0 0;
}
.basic-header    { background: #4b7c6b; }
.best-header     { background: var(--main-color); }
.popular-header  { background: #4a6580; }

.card-offer-label { display: block; font-size: 13px; font-weight: 500; opacity: 0.88; }
.card-bottles     { display: block; font-size: 22px; font-weight: 700; }
.card-supply      { display: block; font-size: 13px; opacity: 0.82; }

/* Card body */
.price-card-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-card-body > img {
  height: 190px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.10));
}

/* Price display */
.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 14px;
}
.dollar-sign    { font-size: 26px; font-weight: 700; }
.price-num      { font-size: 68px; font-weight: 800; line-height: 1; }
.per-bottle-txt { font-size: 14px; color: var(--text-muted); }

/* Feature list */
.price-features { list-style: none; padding: 0; margin: 0 0 16px; text-align: left; width: 100%; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
}
.price-features li:last-child { border-bottom: none; }
.price-features .fa-check         { color: var(--green-check); }
.price-features .fa-star          { color: var(--star-gold); }
.price-features .fa-shield-halved { color: var(--main-color); }

/* Buy buttons */
.buy-btn {
  display: block;
  width: 100%;
  background: var(--accent-color);
  color: #000;
  font-weight: 800;
  font-size: 20px;
  padding: 14px 10px;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}
.buy-btn:hover { background: var(--accent-hover); transform: translateY(-2px); color: #000; }
.buy-btn-best {
  background: var(--main-color);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,107,58,0.35);
}
.buy-btn-best:hover { background: var(--main-dark); color: #fff; }

/* Total + shipping */
.price-total { font-size: 15px; color: var(--text-muted); margin-bottom: 4px; }
.price-total s { color: #aaa; margin-right: 4px; }
.price-total strong { color: var(--text-dark); font-size: 18px; }

.shipping-note { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.free-ship { color: var(--green-check); font-weight: 700; }

/* Credit cards image */
.cards-img { width: 170px; margin: 6px auto 0; }

/* ════════════════════════════════════════════════
   TRUST BADGE IMAGE BAND
════════════════════════════════════════════════ */
.trust-band {
  background: var(--bg-white);
  padding: 30px 20px;
  text-align: center;
}
.trust-band img { max-width: 640px; margin: 0 auto; }

/* ════════════════════════════════════════════════
   WHAT IS GLUCOTIDE (Info Section)
════════════════════════════════════════════════ */
.info-section { background: var(--bg-white); padding-bottom: 44px; }
.info-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.info-img-col { flex: 0 0 auto; max-width: 360px; }
.info-img-col img { border-radius: 14px; box-shadow: 0 6px 22px rgba(0,0,0,0.10); width: 100%; }
.info-text-col { flex: 1; min-width: 280px; }
.info-text-col p { font-size: 17px; color: var(--text-dark); margin-bottom: 16px; line-height: 1.8; }

/* ════════════════════════════════════════════════
   HOW DOES IT WORK (3 Steps)
════════════════════════════════════════════════ */
.works-section { background: var(--bg-light); padding-bottom: 44px; }
.works-content { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.works-intro { font-size: 17px; font-weight: 500; margin-bottom: 28px; line-height: 1.8; }

.works-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  margin-bottom: 20px;
  border-left: 5px solid var(--main-color);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.step-num-circle {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--main-color);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body { flex: 1; }
.step-head { font-size: 20px; font-weight: 700; color: var(--main-color); margin-bottom: 10px; }
.step-para { font-size: 16px; color: var(--text-dark); line-height: 1.78; }
.works-cta-wrap { text-align: center; margin-top: 10px; }

/* ════════════════════════════════════════════════
   BENEFITS SECTION
════════════════════════════════════════════════ */
.benefits-section { background: var(--bg-white); padding-bottom: 44px; }
.benefits-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.benefits-intro { font-size: 17px; margin-bottom: 28px; line-height: 1.8; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-light);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--border-light);
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.benefit-icon { font-size: 28px; color: var(--main-color); flex-shrink: 0; margin-top: 2px; }
.benefit-card h3 { font-size: 17px; color: var(--main-color); margin-bottom: 6px; }
.benefit-card p  { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════════════════════════
   INGREDIENTS SECTION
════════════════════════════════════════════════ */
.ingredients-section { background: var(--bg-light); padding-bottom: 44px; }
.ingredients-intro-text {
  max-width: 880px;
  margin: -10px auto 28px;
  padding: 0 20px;
  font-size: 17px;
  text-align: center;
  line-height: 1.8;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ingredient-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  border: 1px solid var(--border-light);
  transition: transform 0.25s;
}
.ingredient-card:hover { transform: translateY(-4px); }
.ingredient-img-col { flex-shrink: 0; }
.ingredient-img-col img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 10px;
}
.ingredient-name { font-size: 20px; font-weight: 700; color: var(--main-color); margin-bottom: 8px; }
.ingredient-text-col p { font-size: 15px; color: var(--text-dark); line-height: 1.68; }

/* Synergy sub-section */
.synergy-section { max-width: 1100px; margin: 40px auto 0; padding: 0 20px; text-align: center; }
.synergy-title { font-size: 21px; font-weight: 700; margin-bottom: 24px; }
.synergy-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.synergy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 170px;
  gap: 10px;
}
.synergy-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--bg-white);
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.synergy-item p { font-size: 14px; text-align: center; line-height: 1.4; }

/* ════════════════════════════════════════════════
   REVIEWS SECTION
════════════════════════════════════════════════ */
.reviews-section { background: var(--bg-white); padding-bottom: 44px; }
.reviews-subtitle { text-align: center; font-size: 19px; font-weight: 600; font-style: italic; margin: -16px 0 28px; }
.reviews-wrap { display: flex; flex-direction: column; gap: 22px; max-width: 960px; margin: 0 auto; padding: 0 20px; }

.review-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.review-top { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.reviewer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--border-light);
}
.reviewer-details { flex: 1; }
.verified-tag {
  color: var(--green-check);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.reviewer-name { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.star-row { display: flex; gap: 3px; }
.star-row i { color: var(--star-gold); font-size: 18px; }
.review-body { font-size: 16px; color: var(--text-muted); line-height: 1.75; font-weight: 500; }

/* ════════════════════════════════════════════════
   6 FREE BONUSES
════════════════════════════════════════════════ */
.bonuses-section { background: var(--bg-light); padding-bottom: 44px; }
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.bonus-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  border: 2px dashed var(--border-light);
  transition: transform 0.25s, box-shadow 0.25s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.10); }

.bonus-num-label {
  background: var(--main-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 30px;
  letter-spacing: 1px;
}
.bonus-card > img { width: 150px; height: auto; object-fit: contain; border-radius: 8px; }
.bonus-title { font-size: 18px; font-weight: 700; color: var(--main-color); margin: 0; }
.bonus-value { font-size: 14px; color: var(--text-muted); }
.bonus-value s { text-decoration: line-through; }
.bonus-desc  { font-size: 14px; color: var(--text-dark); line-height: 1.6; }
.instant-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-color);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════════════
   SPECIAL OFFER CTA
════════════════════════════════════════════════ */
.special-offer-section {
  background: var(--main-color);
  color: #fff;
  padding: 44px 20px;
  text-align: center;
}
.special-offer-heading {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.special-offer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto 30px;
}
.special-offer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.12);
  padding: 14px 20px;
  border-radius: 12px;
  min-width: 240px;
  text-align: left;
}
.special-offer-item i  { color: var(--accent-color); flex-shrink: 0; }
.special-offer-item p  { font-size: 15px; margin: 0; }
.special-cta-btn { font-size: 20px; padding: 16px 36px; }

/* ════════════════════════════════════════════════
   60-DAY GUARANTEE
════════════════════════════════════════════════ */
.guarantee-section { background: var(--bg-white); padding-bottom: 44px; }
.guarantee-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.guarantee-badge-col { flex-shrink: 0; text-align: center; }
.guarantee-badge-col img { width: 210px; height: auto; }
.guarantee-text-col { flex: 1; min-width: 280px; }
.guarantee-subhead { font-size: 22px; color: var(--main-color); margin-bottom: 14px; }
.guarantee-text-col p { font-size: 16px; margin-bottom: 14px; line-height: 1.8; }
.guarantee-email { color: var(--main-color); font-weight: 600; text-decoration: underline; }

/* ════════════════════════════════════════════════
   IS IT SAFE?
════════════════════════════════════════════════ */
.safe-section { background: var(--bg-light); padding-bottom: 44px; }
.safe-content { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.cert-logo-row { text-align: center; margin-bottom: 30px; }
.cert-logo-row img { max-width: 560px; margin: 0 auto; border-radius: 8px; }

.quality-steps-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.quality-step {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  max-width: 300px;
  flex: 1 1 200px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.q-step-num {
  width: 50px;
  height: 50px;
  background: var(--main-color);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.q-step-title { font-size: 16px; color: var(--main-color); margin-bottom: 8px; }
.q-step-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.q-step-arrow { font-size: 28px; color: var(--main-color); font-weight: 700; align-self: center; }

.safe-text-block p { font-size: 16px; margin-bottom: 14px; line-height: 1.8; }

/* ════════════════════════════════════════════════
   PAYMENT SECURITY
════════════════════════════════════════════════ */
.payment-section { background: var(--bg-white); padding-bottom: 44px; }
.payment-content { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.payment-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.payment-icons-row .fa-lock           { color: var(--main-color); }
.payment-icons-row .fa-cc-visa        { color: #1a1f71; }
.payment-icons-row .fa-cc-mastercard  { color: #eb001b; }
.payment-icons-row .fa-cc-amex        { color: #007bc1; }
.payment-icons-row .fa-shield-halved  { color: var(--green-check); }
.payment-content p { font-size: 16px; margin-bottom: 16px; line-height: 1.8; }

/* ════════════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════════════ */
.faq-section { background: var(--bg-light); padding-bottom: 44px; }
.faq-list { list-style: none; padding: 0 20px; margin: 0 auto 36px; max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--border-light); }

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 18px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Jost', sans-serif;
  gap: 10px;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--main-color); }
.faq-icon { font-size: 22px; font-weight: 700; color: var(--main-color); flex-shrink: 0; }

.faq-answer { padding: 0 8px 18px; }
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.faq-answer a { color: var(--main-color); font-weight: 600; }

/* FAQ CTA banner */
.faq-cta-banner {
  background: var(--main-color);
  border-radius: 16px;
  padding: 30px 26px;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.faq-banner-img img { width: 240px; margin: 0 auto; filter: drop-shadow(0 4px 14px rgba(0,0,0,0.22)); }
.faq-banner-text { flex: 1; min-width: 230px; }
.faq-banner-text h3 { font-size: 24px; color: #fff; margin-bottom: 16px; line-height: 1.3; }
.faq-order-btn { font-size: 17px; padding: 13px 26px; }

/* ════════════════════════════════════════════════
   SCIENTIFIC REFERENCES
════════════════════════════════════════════════ */
.references-section { background: var(--bg-white); padding-bottom: 44px; text-align: center; }
.references-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 700px;
  margin: -16px auto 24px;
  padding: 0 20px;
}
.references-imgs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
}
.references-imgs-wrap img {
  max-width: 820px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  background-color: #1c1c1c;
  color: #ccc;
  padding: 40px 20px 24px;
}
.footer-disclaimer { max-width: 1000px; margin: 0 auto 28px; }
.footer-disclaimer p { font-size: 12px; line-height: 1.65; margin-bottom: 10px; color: #999; }

.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #333;
  padding-top: 22px;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; font-size: 13px; }
.footer-links a { color: #bbb; text-decoration: underline; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-color); }
.fsep { color: #555; }

.footer-ftc, .footer-gdpr {
  background: #262626;
  border-radius: 8px;
  padding: 14px 18px;
  max-width: 920px;
  width: 100%;
}
.footer-ftc p, .footer-gdpr p { font-size: 12px; color: #999; margin: 0; line-height: 1.6; text-align: center; }
.footer-gdpr a { color: #bbb; text-decoration: underline; }

.footer-copy { font-size: 13px; color: #777; text-align: center; }

/* ════════════════════════════════════════════════
   RESPONSIVE – TABLET ≤ 1024px
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .header-container { padding: 0 16px; }
  .hero-section { gap: 26px; padding: 26px 16px 36px; }
  .ingredients-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .best-value-card { transform: none; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE – MOBILE ≤ 768px
════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .hamburger-btn { display: flex; }
  .nav-wrap { display: none; }

  /* Base font */
  body { font-size: 16px; }

  /* H1 */
  .page-h1 { font-size: 17px; }

  /* Section title */
  .section-title-bar { font-size: 20px; padding: 16px 12px; }

  /* Hero */
  .hero-section { flex-direction: column; gap: 16px; padding: 20px 14px 30px; }
  .hero-img-wrap { max-width: 320px; }
  .hero-title    { font-size: 24px; }
  .hero-subtitle { font-size: 16px; }
  .hero-desc     { font-size: 15px; }
  .hero-cta-wrap { flex-direction: column; align-items: stretch; }
  .cta-btn, .secondary-btn { font-size: 15px; padding: 13px 20px; justify-content: center; }
  .countdown-box { font-size: 34px; }

  /* Badges */
  .badges-grid { flex-direction: column; align-items: center; }
  .badge-item { max-width: 100%; width: 100%; }

  /* Pricing */
  .pricing-main-title { font-size: 20px; }
  .pricing-step-label { font-size: 15px; }
  .pricing-cards-wrap { flex-direction: column; align-items: center; }
  .price-card { width: 92%; max-width: 340px; }
  .best-value-card { transform: none; }

  /* Info */
  .info-content { flex-direction: column; }
  .info-img-col { max-width: 100%; }
  .info-text-col p { font-size: 15px; text-align: justify; }

  /* Works */
  .works-step { flex-direction: column; }
  .step-head { font-size: 17px; }
  .step-para { font-size: 14px; text-align: justify; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-intro { font-size: 15px; }

  /* Ingredients */
  .ingredients-grid { grid-template-columns: 1fr; }
  .ingredient-card { flex-direction: column; align-items: center; text-align: center; }
  .ingredients-intro-text { font-size: 15px; }

  /* Synergy */
  .synergy-grid { gap: 14px; }

  /* Reviews */
  .review-top { flex-direction: column; text-align: center; }
  .reviewer-avatar { margin: 0 auto; }
  .verified-tag { justify-content: center; }
  .star-row { justify-content: center; }
  .review-body { font-size: 14px; text-align: justify; }

  /* Bonuses */
  .bonuses-grid { grid-template-columns: 1fr; }

  /* Special Offer */
  .special-offer-heading { font-size: 26px; }
  .special-offer-item { min-width: 100%; }
  .special-cta-btn { font-size: 16px; padding: 14px 24px; }

  /* Guarantee */
  .guarantee-wrap { flex-direction: column; align-items: center; text-align: center; }
  .guarantee-badge-col img { width: 160px; }
  .guarantee-text-col p { font-size: 15px; text-align: justify; }

  /* Safe */
  .quality-steps-row { flex-direction: column; align-items: center; }
  .q-step-arrow { display: none; }
  .quality-step { max-width: 100%; }
  .safe-text-block p { font-size: 14px; text-align: justify; }

  /* Payment */
  .payment-content p { font-size: 14px; text-align: justify; }

  /* FAQ */
  .faq-trigger { font-size: 15px; }
  .faq-cta-banner { flex-direction: column; align-items: center; text-align: center; }
  .faq-banner-text h3 { font-size: 20px; }

  /* Footer */
  .site-footer { padding: 28px 12px 18px; }
  .footer-disclaimer p { font-size: 11px; }
  .footer-links { gap: 4px 2px; }

  /* Pricing arrow smaller */
  .pricing-arrow-top {
    border-left-width: 46px;
    border-right-width: 46px;
    border-top-width: 34px;
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVE – SMALL PHONES ≤ 480px
════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .logo-link { font-size: 22px; }
  .hero-title { font-size: 20px; }
  .price-num { font-size: 56px; }
  .buy-btn { font-size: 18px; }
  .special-offer-heading { font-size: 22px; }
  .section-title-bar { font-size: 18px; }
  .faq-trigger { font-size: 14px; }
  .countdown-box { font-size: 30px; }
  .pricing-timer-display { font-size: 24px; }
}
