/* ============================================================
   SLIMLEAF™ — slimleafusa.com — css/style.css
   Theme: Forest Green + Warm Gold + Cream
   Fonts: Playfair Display (headings) + Open Sans (body)
   ============================================================ */

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

:root {
  --forest:        #1A4731;
  --forest-mid:    #1F5C3D;
  --forest-light:  #27764E;
  --gold:          #C9923E;
  --gold-btn:      #D4A044;
  --gold-hover:    #A87228;
  --gold-pale:     #FEF9EC;
  --cream:         #FAF8F3;
  --white:         #FFFFFF;
  --off-white:     #F7F9F6;
  --text:          #1A2E1E;
  --muted:         #4A6355;
  --border:        #A8D5BC;
  --border-soft:   #D8EEE2;
  --radius:        8px;
  --radius-sm:     4px;
  --radius-pill:   50px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', 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(--forest);
  padding: 0 24px;
  height: 70px;
  box-shadow: 0 2px 20px rgba(26,71,49,0.5);
  border-bottom: 3px solid var(--gold-btn);
}

.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: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-btn);
  text-decoration: none;
  letter-spacing: 1px;
  flex-shrink: 0;
}

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

.nav-links a {
  color: #A8D5BC;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--gold-btn); }

.btn-nav-order {
  background: var(--gold-btn) !important;
  color: var(--forest) !important;
  font-weight: 800 !important;
  font-size: 0.87rem !important;
  letter-spacing: 0.5px;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  transition: background 0.2s !important;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif !important;
}

.btn-nav-order:hover { background: var(--gold-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(--gold-btn); display: block; border-radius: 2px; transition: 0.3s; }

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

.mobile-menu.open { display: flex; }
.mobile-menu a { color: #A8D5BC; text-decoration: none; font-size: 1.02rem; font-weight: 600; font-family: 'Open Sans', sans-serif; }
.mobile-menu a:hover { color: var(--gold-btn); }
.mobile-menu .btn-mob-order {
  background: var(--gold-btn); color: var(--forest);
  text-align: center; padding: 13px; border-radius: var(--radius-pill);
  font-weight: 800; margin-top: 6px; font-size: 0.95rem;
  text-transform: uppercase; text-decoration: none;
}

/* ============================================================
   GLOBAL BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold-btn);
  color: var(--forest);
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  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(212,160,68,0.35);
}

.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168,114,40,0.4);
}

.btn-hero { font-size: 1.08rem; padding: 17px 40px; display: block; text-align: center; }
.btn-cta-final { font-size: 1.2rem; padding: 18px 50px; }
.btn-under-img { margin-top: 20px; display: inline-block; }

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

.sec-title-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.sec-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.03rem;
  color: #A8D5BC;
  font-weight: 400;
  margin-top: 8px;
  font-style: italic;
}

/* ============================================================
   HERO — Centered
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--white) 60%);
  padding: 70px 48px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,71,49,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hero-top {
  text-align: center;
  max-width: 780px;
}

.hero-overline {
  display: inline-block;
  background: var(--forest);
  color: var(--gold-btn);
  padding: 7px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}

.hero-top h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--forest);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.12rem;
  line-height: 1.82;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.hero-center {
  display: flex;
  gap: 56px;
  align-items: center;
  max-width: 960px;
  width: 100%;
}

.hero-img-box {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.hero-img-box a img {
  max-width: 360px;
  width: 100%;
  filter: drop-shadow(0 14px 36px rgba(26,71,49,0.18));
  transition: transform 0.4s;
}

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

.hero-cta-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges span {
  background: var(--cream);
  border: 1.5px solid var(--border);
  color: var(--forest);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

.hero-sub-note {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.hero-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.star-score {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.star-count {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-section {
  background: var(--white);
  padding: 70px 48px;
}

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

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

.who-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold-btn);
  padding: 16px 18px;
}

.who-icon {
  color: var(--forest);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--gold-pale);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-card p {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--muted);
  margin: 0;
}

.who-cta {
  margin-top: 8px;
  text-align: center;
}

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

.science-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.science-block {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-soft);
}

.science-block:last-child { border-bottom: none; }

.sci-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  padding-top: 4px;
}

.sci-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sci-content p {
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

.what-is-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

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

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

.pricing-band h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.pricing-band h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-btn);
  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(26,71,49,0.1);
}
.price-img-section a:hover img { transform: scale(1.01); }

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

.ing-grid {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ing-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: box-shadow 0.3s;
}

.ing-item:hover { box-shadow: 0 6px 22px rgba(26,71,49,0.1); }

.ing-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.ing-emoji { font-size: 2rem; flex-shrink: 0; }

.ing-type-badge {
  display: inline-block;
  background: var(--forest);
  color: var(--gold-btn);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  font-family: 'Open Sans', sans-serif;
}

.ing-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.25;
}

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

/* ============================================================
   REVIEWS — 3-col with quote marks
   ============================================================ */
.reviews-section { background: var(--cream); padding: 70px 48px; }

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

.review-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 26px 26px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.review-card:hover {
  box-shadow: 0 8px 28px rgba(26,71,49,0.1);
  transform: translateY(-4px);
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--border-soft);
  line-height: 0.5;
  position: absolute;
  top: 20px;
  left: 20px;
  pointer-events: none;
}

.review-text {
  font-size: 0.98rem;
  line-height: 1.78;
  color: var(--muted);
  font-style: italic;
  position: relative;
  padding-top: 24px;
  margin-bottom: 20px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
}

.reviewer-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold-btn);
  flex-shrink: 0;
}

.review-stars { height: 18px; display: block; margin-bottom: 4px; }

.reviewer-name {
  font-weight: 700;
  color: var(--forest);
  font-size: 0.93rem;
  font-family: 'Playfair Display', serif;
}

.review-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

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

.bonuses-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bonus-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-soft);
}

.bonus-row:last-child { border-bottom: none; }

.bonus-img-col { flex-shrink: 0; }

.bonus-img-col img {
  width: 220px;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--border-soft);
}

.bonus-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.bonus-tag {
  background: var(--forest);
  color: var(--gold-btn);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.bonus-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.bonus-price s { color: var(--muted); font-weight: 400; }

.bonus-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.3;
}

.bonus-content p { font-size: 1rem; line-height: 1.78; color: var(--muted); }

/* ============================================================
   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(26,71,49,0.12)); }

.guarantee-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--forest);
  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 — 4-col grid
   ============================================================ */
.benefits-section { background: var(--cream); padding: 70px 48px; }

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

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--gold-btn);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(26,71,49,0.1);
  transform: translateY(-4px);
}

.bc-icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }

.benefit-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

/* ============================================================
   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(--forest-light); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 26px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  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(--gold-pale); }
.faq-item.open .faq-question { background: var(--gold-pale); }

.faq-arrow { font-size: 1rem; transition: transform 0.3s; color: var(--gold); 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(--cream); 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(26,71,49,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(--gold-btn);
}

.info-block h4 {
  font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700;
  color: var(--forest); margin-bottom: 12px;
}

.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(--gold-btn); font-size: 0.75rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  background: linear-gradient(160deg, var(--cream) 0%, var(--white) 55%);
  padding: 80px 48px; text-align: center;
  border-top: 4px solid var(--gold-btn);
  border-bottom: 4px solid var(--gold-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(26,71,49,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 800;
  color: var(--forest); 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(26,71,49,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: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 800;
  color: var(--forest); 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(--forest-light); font-family: 'Open Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.2px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--forest); padding: 52px 48px 28px; border-top: 3px solid var(--gold-btn); }

.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 700; color: var(--gold-btn); text-align: center; letter-spacing: 1px; margin-bottom: 6px; }
.footer-tagline { font-family: 'Open Sans', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--gold); text-align: center; letter-spacing: 0.5px; font-style: italic; margin-bottom: 28px; }

.footer-cols { max-width: 1100px; margin: 0 auto 28px; display: flex; flex-wrap: wrap; justify-content: center; }
.footer-cols a { color: var(--gold-btn); text-decoration: none; font-size: 0.9rem; font-weight: 600; font-family: 'Open Sans', sans-serif; transition: color 0.2s; padding: 5px 18px; border-right: 1px solid rgba(212,160,68,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(212,160,68,0.12); padding-top: 24px; }
.footer-legal p { font-size: 0.85rem; color: #6B8C6A; line-height: 1.75; margin-bottom: 12px; }
.footer-policy { text-align: center; margin-bottom: 18px; }
.footer-policy a { color: #5A7A58; text-decoration: none; font-size: 0.88rem; margin: 0 10px; transition: color 0.2s; font-family: 'Open Sans', sans-serif; font-weight: 700; }
.footer-policy a:hover { color: var(--gold-btn); }
.footer-copy { text-align: center; font-size: 0.84rem; color: #4A6845; font-family: 'Open Sans', sans-serif; }
.footer-copy a { color: #5A8255; text-decoration: none; }
.footer-copy a:hover { color: var(--gold-btn); }

/* ============================================================
   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-top h1      { font-size: 2.4rem; }
  .what-is-inner    { grid-template-columns: 1fr 350px; }
  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-details-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-center      { flex-direction: column; gap: 32px; }
  .hero-img-box a img { max-width: 280px; }
  .reviews-grid     { grid-template-columns: 1fr; }
  .who-inner        { grid-template-columns: 1fr; }
  .what-is-inner    { grid-template-columns: 1fr; }
  .guarantee-inner  { grid-template-columns: 1fr; text-align: center; }
  .bonus-row        { flex-direction: column; gap: 16px; }
  .bonus-img-col img { width: 100%; max-width: 280px; }
  .science-block    { flex-direction: column; gap: 12px; }
  .sci-num          { width: auto; text-align: left; }
}

@media (max-width: 640px) {
  nav               { padding: 0 16px; }
  .nav-links        { display: none; }
  .hamburger        { display: flex; }
  .hero             { padding: 44px 20px 40px; }
  .hero-top h1      { font-size: 2rem; }
  .sec-title-band   { padding: 40px 20px 34px; }
  .sec-title-band h2 { font-size: 1.6rem; }
  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .who-section, .science-section, .what-is-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; }
  .pricing-details-inner { grid-template-columns: 1fr; }
  .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; }
}