/* ============================================================
   SLIMLEAF™ — goslimleaf.com — css/style.css
   Theme: Deep Indigo + Lime Green + Amber Gold
   Fonts: Space Grotesk (headings) + Mulish (body)
   ============================================================ */

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

:root {
  --indigo:        #1E1B4B;
  --indigo-mid:    #312E81;
  --indigo-light:  #4338CA;
  --lime:          #65A30D;
  --lime-light:    #84CC16;
  --lime-pale:     #F7FEE7;
  --amber:         #D97706;
  --amber-btn:     #F59E0B;
  --amber-hover:   #B45309;
  --amber-pale:    #FFFBEB;
  --white:         #FFFFFF;
  --off-white:     #FAFAF7;
  --text:          #1A1A2E;
  --muted:         #52525B;
  --border:        #D9F99D;
  --border-soft:   #ECFCCB;
  --radius:        10px;
  --radius-sm:     6px;
  --radius-pill:   50px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--indigo);
  padding: 0 24px;
  height: 70px;
  box-shadow: 0 2px 20px rgba(30,27,75,0.55);
  border-bottom: 3px solid var(--lime-light);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lime-light);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: #A5B4FC;
  text-decoration: none;
  font-family: 'Mulish', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--lime-light); }

.btn-nav-order {
  background: var(--amber-btn) !important;
  color: var(--indigo) !important;
  font-weight: 900 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.8px;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  transition: background 0.2s !important;
  text-transform: uppercase;
}

.btn-nav-order:hover {
  background: var(--amber-hover) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 25px;
  height: 2.5px;
  background: var(--lime-light);
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--indigo);
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  padding: 22px 30px;
  gap: 16px;
  z-index: 999;
  border-top: 1px solid var(--indigo-mid);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: #A5B4FC;
  text-decoration: none;
  font-size: 1.04rem;
  font-weight: 700;
  font-family: 'Mulish', sans-serif;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--lime-light); }

.mobile-menu .btn-mob-order {
  background: var(--amber-btn);
  color: var(--indigo);
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  margin-top: 6px;
  font-size: 0.95rem;
  text-transform: uppercase;
  text-decoration: none;
}

/* ============================================================
   GLOBAL BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--amber-btn);
  color: var(--indigo);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(245,158,11,0.35);
}

.btn-primary:hover {
  background: var(--amber-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(180,83,9,0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--indigo);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2.5px solid var(--indigo-light);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  background: var(--indigo);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta-final {
  font-size: 1.2rem;
  padding: 18px 50px;
}

/* ============================================================
   SECTION TITLE BANDS
   ============================================================ */
.sec-title-band {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-mid) 100%);
  padding: 52px 40px 44px;
  text-align: center;
}

.sec-title-band h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.sec-subtitle {
  font-family: 'Mulish', sans-serif;
  font-size: 1.05rem;
  color: var(--lime-light);
  font-weight: 600;
  margin-top: 8px;
  font-style: italic;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(150deg, var(--lime-pale) 0%, var(--white) 55%);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(101,163,13,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-kicker {
  display: inline-block;
  background: var(--lime-pale);
  color: var(--lime);
  border: 1.5px solid var(--border);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--indigo);
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-promise-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.hero-promise-bar span {
  background: var(--indigo);
  color: var(--lime-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.3px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.hero-trust-row span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.hero-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-img-wrap a img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 14px 36px rgba(30,27,75,0.2));
  transition: transform 0.4s ease;
}

.hero-img-wrap a:hover img { transform: scale(1.04); }

.hero-rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rating-stars {
  font-size: 1.4rem;
  color: var(--amber-btn);
  letter-spacing: 3px;
}

.rating-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--indigo);
  border-top: 3px solid var(--lime-light);
  border-bottom: 3px solid var(--lime-light);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 24px;
  flex: 1;
  text-align: center;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lime-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #A5B4FC;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(132,204,22,0.2);
  flex-shrink: 0;
}

/* ============================================================
   ROOT CAUSE
   ============================================================ */
.root-cause-section {
  background: var(--white);
  padding: 70px 48px;
}

.root-cause-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.root-cause-text p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
}

.root-cause-text p:last-child {
  color: var(--indigo);
  font-weight: 700;
  font-size: 1.1rem;
}

.root-cause-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rc-card {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--amber-btn);
  padding: 20px 20px;
}

.rc-card.rc-solution {
  border-left-color: var(--lime-light);
  background: var(--lime-pale);
}

.rc-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }

.rc-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.rc-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.rc-arrow {
  text-align: center;
  font-size: 1.6rem;
  color: var(--amber-btn);
  padding: 6px 0;
  font-weight: 700;
}

/* ============================================================
   WHAT IS SECTION
   ============================================================ */
.what-is-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.what-is-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 64px;
}

.what-is-img {
  display: flex;
  justify-content: center;
}

.what-is-img img {
  max-width: 100%;
  filter: drop-shadow(0 10px 28px rgba(30,27,75,0.14));
}

.what-is-text p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ============================================================
   PRICING BAND
   ============================================================ */
.pricing-band {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-mid) 100%);
  padding: 48px 40px 18px;
  text-align: center;
}

.pricing-band h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-band h4 {
  font-family: 'Mulish', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--lime-light);
  margin-bottom: 0;
  font-style: italic;
}

/* ============================================================
   PRICING IMAGE
   ============================================================ */
.price-img-section {
  background: var(--white);
  padding: 48px;
  text-align: center;
}

.price-img-section a { display: inline-block; }

.price-img-section a img {
  max-width: 960px;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  transition: transform 0.3s;
  box-shadow: 0 4px 24px rgba(30,27,75,0.1);
}

.price-img-section a:hover img { transform: scale(1.01); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-works-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.how-works-inner { max-width: 1160px; margin: 0 auto; }

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.mechanism-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  border-top: 4px solid var(--lime-light);
  padding: 28px 22px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.mechanism-card:hover {
  box-shadow: 0 8px 28px rgba(101,163,13,0.14);
  transform: translateY(-4px);
}

.mech-num {
  position: absolute;
  top: -1px;
  right: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(101,163,13,0.12);
  line-height: 1;
}

.mech-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 14px;
  position: relative;
}

.mechanism-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
}

.mechanism-card p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--muted);
  position: relative;
}

/* ============================================================
   INGREDIENTS
   ============================================================ */
.ingredients-section {
  background: var(--white);
  padding: 70px 48px;
}

.ingredients-wrap {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ing-card {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 30px;
  border-left: 5px solid var(--indigo-light);
  transition: box-shadow 0.3s;
}

.ing-card:hover { box-shadow: 0 6px 24px rgba(67,56,202,0.1); }

.ing-badge {
  display: inline-block;
  background: var(--indigo);
  color: var(--lime-light);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.ing-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 4px;
}

.ing-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  display: block;
}

.ing-card p {
  font-size: 1.02rem;
  line-height: 1.82;
  color: var(--muted);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.reviews-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  border-top: 4px solid var(--amber-btn);
  padding: 30px 24px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.review-card:hover {
  box-shadow: 0 8px 28px rgba(245,158,11,0.12);
  transform: translateY(-4px);
}

.reviewer-photo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  display: block;
  border: 3px solid var(--amber-btn);
}

.review-stars { height: 22px; margin: 0 auto 12px; display: block; }

.review-badge {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-family: 'Space Grotesk', sans-serif;
}

.review-text {
  font-size: 0.99rem;
  line-height: 1.78;
  color: var(--muted);
  font-style: italic;
}

.reviewer-name {
  margin-top: 16px;
  font-weight: 800;
  color: var(--indigo);
  font-size: 0.93rem;
  font-family: 'Space Grotesk', sans-serif;
}

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses-section {
  background: var(--white);
  padding: 70px 48px;
}

.bonuses-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.bonus-card {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
}

.bonus-card:hover {
  box-shadow: 0 8px 28px rgba(30,27,75,0.1);
  transform: translateY(-4px);
}

.bonus-img-wrap {
  background: var(--lime-pale);
  padding: 20px;
  text-align: center;
}

.bonus-img-wrap img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.bonus-label {
  background: var(--indigo);
  color: var(--lime-light);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 16px;
}

.bonus-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--indigo);
  padding: 16px 20px 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.bonus-card p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--muted);
  padding: 0 20px 22px;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.guarantee-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 64px;
}

.guarantee-img-col { display: flex; justify-content: center; }

.guarantee-inner img {
  max-width: 100%;
  filter: drop-shadow(0 6px 20px rgba(30,27,75,0.12));
}

.guarantee-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 16px;
  line-height: 1.25;
}

.guarantee-text p {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section {
  background: var(--white);
  padding: 70px 48px;
}

.benefits-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.benefit-item:hover {
  box-shadow: 0 6px 20px rgba(101,163,13,0.1);
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  min-width: 44px;
  text-align: center;
  margin-top: 2px;
}

.benefit-body strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--indigo);
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.benefit-body p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   FAQs
   ============================================================ */
.faq-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--lime-light); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--indigo);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
  line-height: 1.4;
}

.faq-question:hover { background: var(--lime-pale); }
.faq-item.open .faq-question { background: var(--lime-pale); color: var(--lime); }

.faq-arrow {
  font-size: 1rem;
  transition: transform 0.3s;
  color: var(--amber-btn);
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 16px 26px 22px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  border-top: 1px solid var(--border-soft);
  background: var(--white);
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow  { transform: rotate(180deg); }

/* ============================================================
   HOW TO ORDER
   ============================================================ */
.order-how-section {
  background: var(--white);
  padding: 70px 48px;
}

.order-how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.order-how-inner p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
}

.order-img-wrap {
  text-align: center;
  margin-top: 36px;
}

.order-img-wrap a img {
  max-width: 960px;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  transition: transform 0.3s;
  box-shadow: 0 4px 24px rgba(30,27,75,0.1);
}

.order-img-wrap a:hover img { transform: scale(1.01); }

/* ============================================================
   PRICING DETAILS
   ============================================================ */
.pricing-details {
  background: var(--off-white);
  padding: 56px 48px;
}

.pricing-details-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-block {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 26px;
  border-top: 3px solid var(--lime-light);
}

.info-block h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.info-block p, .info-block li {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
}

.info-block ul { list-style: none; padding: 0; }
.info-block ul li { padding: 5px 0; }
.info-block ul li::before { content: "✦ "; color: var(--amber-btn); font-size: 0.75rem; font-weight: 900; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  background: linear-gradient(160deg, var(--lime-pale) 0%, var(--white) 55%);
  padding: 80px 48px;
  text-align: center;
  border-top: 4px solid var(--amber-btn);
  border-bottom: 4px solid var(--amber-btn);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(101,163,13,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 10px;
  line-height: 1.18;
  position: relative;
}

.cta-subhead {
  font-size: 1.1rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 36px;
  display: block;
}

.cta-product-img {
  max-width: 380px;
  margin: 0 auto 28px;
}

.cta-product-img a img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(30,27,75,0.18));
  transition: transform 0.4s;
}

.cta-product-img a:hover img { transform: scale(1.04); }

.cta-regular-price {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 6px;
}

.cta-current-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--indigo);
  display: block;
  margin-bottom: 24px;
}

.cta-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-bottom: 32px;
}

.cta-perks span {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--lime);
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--indigo);
  padding: 52px 48px 28px;
  border-top: 3px solid var(--lime-light);
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--lime-light);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-tagline {
  font-family: 'Mulish', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--lime);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 28px;
}

.footer-cols {
  max-width: 1100px;
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.footer-cols a {
  color: var(--lime-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Mulish', sans-serif;
  transition: color 0.2s;
  padding: 5px 18px;
  border-right: 1px solid rgba(132,204,22,0.2);
  white-space: nowrap;
}

.footer-cols a:last-child { border-right: none; }
.footer-cols a:hover { color: var(--white); }

.footer-legal {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(132,204,22,0.12);
  padding-top: 24px;
}

.footer-legal p {
  font-size: 0.85rem;
  color: #6B7DB3;
  line-height: 1.75;
  margin-bottom: 12px;
}

.footer-policy {
  text-align: center;
  margin-bottom: 18px;
}

.footer-policy a {
  color: #4D6A96;
  text-decoration: none;
  font-size: 0.88rem;
  margin: 0 10px;
  transition: color 0.2s;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
}

.footer-policy a:hover { color: var(--lime-light); }

.footer-copy {
  text-align: center;
  font-size: 0.84rem;
  color: #3D5285;
  font-family: 'Mulish', sans-serif;
}

.footer-copy a { color: #4D6AAA; text-decoration: none; }
.footer-copy a:hover { color: var(--lime-light); }

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .hero-content h1     { font-size: 2.3rem; }
  .what-is-inner       { grid-template-columns: 340px 1fr; }
  .mechanism-grid      { grid-template-columns: repeat(2, 1fr); }
  .pricing-details-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid        { grid-template-columns: 1fr 1fr; }
  .what-is-inner       { grid-template-columns: 1fr; }
  .guarantee-inner     { grid-template-columns: 1fr; text-align: center; }
  .root-cause-inner    { grid-template-columns: 1fr; gap: 40px; }
  .bonuses-grid        { grid-template-columns: 1fr 1fr; }
  .stats-inner         { flex-wrap: wrap; }
  .stat-item           { width: 33%; }
  .stat-divider        { display: none; }
}

@media (max-width: 640px) {
  nav                  { padding: 0 16px; }
  .nav-links           { display: none; }
  .hamburger           { display: flex; }
  .hero                { padding: 44px 20px; }
  .hero-content h1     { font-size: 2rem; }
  .hero-promise-bar    { gap: 6px; }
  .sec-title-band      { padding: 40px 20px 34px; }
  .sec-title-band h2   { font-size: 1.6rem; }
  .reviews-grid        { grid-template-columns: 1fr; }
  .mechanism-grid      { grid-template-columns: 1fr; }
  .bonuses-grid        { grid-template-columns: 1fr; }
  .pricing-details-inner { grid-template-columns: 1fr; }
  .stat-item           { width: 50%; }
  .root-cause-section,
  .what-is-section,
  .how-works-section,
  .ingredients-section,
  .reviews-section,
  .bonuses-section,
  .guarantee-section,
  .benefits-section,
  .faq-section,
  .order-how-section   { padding: 44px 20px; }
  .price-img-section,
  .pricing-details     { padding: 28px 20px; }
  .cta-final           { padding: 56px 20px; }
  .cta-final h2        { font-size: 1.8rem; }
  .cta-current-price   { font-size: 2.2rem; }
  .cta-perks           { flex-direction: column; align-items: center; gap: 8px; }
  footer               { padding: 36px 20px 22px; }
  .footer-cols a       { border-right: none; padding: 4px 10px; }
}