/* === LEANZENE STYLES === */
/* Design: Bold & Energetic with Premium Feel */
/* Colors: Deep Green, Gold Accent, Clean White */

:root {
  --primary: #0f7a4e;
  --primary-dark: #085c39;
  --primary-light: #14a36a;
  --accent: #f0a500;
  --accent-dark: #c8870a;
  --danger: #e53e3e;
  --bg: #f7faf8;
  --card-bg: #ffffff;
  --text: #1a2e25;
  --text-muted: #4a6357;
  --border: #d4e8dc;
  --shadow: 0 8px 32px rgba(15,122,78,0.12);
  --shadow-lg: 0 20px 60px rgba(15,122,78,0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SECTION TITLES */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-title.left-align { text-align: left; }
.highlight { color: var(--primary); }
.section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 40px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(15,122,78,0.35);
  min-height: 48px;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(15,122,78,0.5); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease calc(var(--delay, 0s)), transform 0.6s ease calc(var(--delay, 0s)); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: translate(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left, .fade-right { opacity: 1; transform: none; transition: none; }
}

/* === PURCHASE POPUP === */
.purchase-popup {
  position: fixed;
  bottom: -100px;
  left: 16px;
  z-index: 9999;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 12px 16px;
  max-width: 300px;
  display: flex;
  align-items: center;
  transition: bottom 0.5s cubic-bezier(0.4,0,0.2,1);
  border-left: 4px solid var(--primary);
}
.purchase-popup.show { bottom: 20px; }
.purchase-popup-inner { display: flex; align-items: center; gap: 12px; width: 100%; }
.popup-img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.popup-text { font-size: 13px; line-height: 1.4; flex: 1; }
.popup-close { background: none; border: none; cursor: pointer; color: #999; font-size: 18px; padding: 4px; }

/* === EXIT POPUP === */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup-overlay.active { display: flex; }
.exit-popup-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  border-top: 6px solid var(--accent);
}
.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f0a500;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.exit-popup-close:hover { background: var(--accent-dark); }
.exit-badge {
  background: #fff3cd;
  color: #856404;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}
.exit-popup-title { font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.exit-countdown {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--danger);
  margin: 16px 0;
  letter-spacing: 4px;
}
.exit-cta-btn {
  display: block;
  background: linear-gradient(135deg, var(--accent), #e08800);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 50px;
  margin: 16px 0 8px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(240,165,0,0.4);
}
.exit-cta-btn:hover { transform: scale(1.03); }
.exit-small { font-size: 13px; color: #888; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 18px 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(15,122,78,0.12);
  padding: 10px 0;
  backdrop-filter: blur(12px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: 2px;
}
.navbar.scrolled .logo-text { color: var(--primary); }
.navbar:not(.scrolled) .logo-text { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  color: var(--text);
}
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.nav-link:hover { background: rgba(15,122,78,0.1); color: var(--primary); }
.nav-cta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(15,122,78,0.35);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(15,122,78,0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 16px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 1050;
  }
  .nav-links.open { right: 0; }
  .nav-link { color: var(--text) !important; font-size: 18px; padding: 12px 0; width: 100%; }
  .nav-cta { width: 100%; justify-content: center; font-size: 16px; }
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a3d25 0%, #0f7a4e 50%, #14a36a 100%);
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.hero-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,165,0,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-product-img {
  width: 380px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  animation: float-product 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
}
@keyframes float-product {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.hero-badge-float {
  position: absolute;
  top: 20px;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(240,165,0,0.5);
  animation: badge-bounce 2s ease-in-out infinite;
  z-index: 3;
}
.hero-stars-float {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 3;
}
@keyframes badge-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-highlight {
  color: var(--accent);
  position: relative;
}
.hero-desc {
  color: rgba(255,255,255,0.88);
  font-size: clamp(15px, 1.6vw, 17px);
  margin-bottom: 16px;
  line-height: 1.8;
}
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-bullets span {
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #e08800);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 20px);
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(240,165,0,0.5);
  transition: var(--transition);
  min-height: 60px;
  display: flex;
  align-items: center;
  width: fit-content;
  animation: hero-cta-pulse 2.5s ease-in-out infinite;
}
@keyframes hero-cta-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(240,165,0,0.5); }
  50% { box-shadow: 0 12px 48px rgba(240,165,0,0.8); transform: scale(1.02); }
}
.hero-cta-btn:hover { transform: scale(1.06) !important; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.hero-trust span {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .hero { padding: 90px 0 50px; }
  .hero-container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-img-wrapper { order: -1; }
  .hero-product-img { width: 260px; }
  .hero-glow { width: 260px; height: 260px; }
  .hero-cta-btn { width: 100%; justify-content: center; }
  .hero-bullets { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-badge-float { right: 50%; transform: translateX(80px); }
}

/* === WHY US === */
.why-us {
  padding: 80px 0;
  background: #fff;
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.badge-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.badge-icon-wrap { width: 80px; height: 80px; margin: 0 auto 16px; }
.badge-icon { width: 100%; height: 100%; object-fit: contain; }
.badge-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 991px) { .badges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .badges-grid { grid-template-columns: 1fr; } }

/* === WHAT IS === */
.what-is {
  padding: 80px 0;
  background: var(--bg);
}
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-is-img-wrap { position: relative; }
.what-is-img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(15,122,78,0.2);
}
.what-is-badge {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(240,165,0,0.4);
}
.what-is-content { padding-left: 20px; }
.what-is-content p { margin-bottom: 16px; font-size: 16px; color: var(--text-muted); }
.what-is-content .btn-primary { margin-top: 16px; }

@media (max-width: 767px) {
  .what-is-grid { grid-template-columns: 1fr; gap: 40px; }
  .what-is-content { padding-left: 0; }
}

/* === HOW IT WORKS === */
.how-works {
  padding: 80px 0;
  background: #fff;
}

/* === ACCORDION === */
.accordion-list, .faq-list, .science-accordion { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
  min-height: 60px;
}
.accordion-header:hover { background: rgba(15,122,78,0.04); }
.accordion-item.active .accordion-header { background: rgba(15,122,78,0.06); color: var(--primary); }
.acc-icon { font-size: 20px; flex-shrink: 0; }
.acc-arrow { margin-left: auto; font-size: 12px; transition: transform 0.3s; flex-shrink: 0; }
.accordion-item.active .acc-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 24px;
}
.accordion-body p { font-size: 15px; color: var(--text-muted); line-height: 1.8; padding: 16px 0; }
.accordion-item.active .accordion-body { max-height: 500px; padding: 0 24px; }

/* === REVIEWS === */
.reviews {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0faf5 0%, #e8f5ee 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.reviewer-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); flex-shrink: 0; }
.reviewer-name { font-family: var(--font-heading); font-weight: 700; font-size: 15px; }
.reviewer-loc { font-size: 13px; color: var(--text-muted); }
.review-stars { font-size: 16px; margin-top: 2px; }
.review-text { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

@media (max-width: 991px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .reviews-grid { grid-template-columns: 1fr; } }

/* === PRICING === */
.pricing {
  padding: 80px 0;
  background: #fff;
}
.countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.countdown-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--danger);
}
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.time-block {
  background: linear-gradient(135deg, #0a3d25, var(--primary));
  color: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  min-width: 80px;
}
.time-block span {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 900;
  line-height: 1;
}
.time-block small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-top: 4px;
}
.time-sep {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--danger);
  animation: blink 1s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.price-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.price-card.popular {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f0faf5, #e0f5ea);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(240,165,0,0.4);
}
.price-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.price-bottles {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}
.price-supply {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.price-img {
  width: 140px;
  max-width: 100%;
  margin: 0 auto 20px;
  object-fit: contain;
}
.price-per {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}
.price-per small { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.price-total {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.price-total strong { color: var(--primary); }
.bonus-flags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.bonus-flags span {
  background: #e8f5ee;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-block;
}
.price-btn {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(15,122,78,0.35);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.price-btn:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(15,122,78,0.5); }
.glow-btn {
  background: linear-gradient(135deg, var(--accent), #e08800);
  box-shadow: 0 4px 20px rgba(240,165,0,0.4);
  animation: hero-cta-pulse 2.5s ease-in-out infinite;
}
.payment-logos {
  width: 100%;
  max-width: 200px;
  margin: 12px auto 0;
  opacity: 0.7;
}
.five-star-wrap {
  text-align: center;
  margin-top: 40px;
}
.five-star-wrap img { max-width: 220px; margin: 0 auto; }

@media (max-width: 991px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } .price-card.popular { transform: none; } }
@media (min-width: 576px) and (max-width: 991px) { .pricing-grid { grid-template-columns: 1fr; } }

/* === BONUS === */
.bonus-sec {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a3d25, #0f7a4e);
}
.bonus-sec .section-title { color: #fff; }
.bonus-sec .section-title .highlight { color: var(--accent); }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.bonus-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.bonus-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.bonus-img { width: 160px; max-width: 100%; margin: 0 auto 20px; object-fit: contain; }
.bonus-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.bonus-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.bonus-card p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; }

@media (max-width: 575px) { .bonus-grid { grid-template-columns: 1fr; } }

/* === INGREDIENTS === */
.ingredients-sec {
  padding: 80px 0;
  background: var(--bg);
}
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  position: relative;
  transition: var(--transition);
}
.ing-card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); }
.ing-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: rgba(15,122,78,0.12);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
}
.ing-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.ing-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 991px) { .ing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .ing-grid { grid-template-columns: 1fr; } }

/* === SCIENCE === */
.science-sec {
  padding: 80px 0;
  background: #fff;
}

/* === GUARANTEE === */
.guarantee-sec {
  padding: 80px 0;
  background: var(--bg);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.guarantee-img { max-width: 260px; width: 100%; }
.guarantee-point {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}
.g-icon {
  font-size: 28px;
  width: 52px;
  height: 52px;
  background: rgba(15,122,78,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guarantee-point h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--text);
}
.guarantee-point p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 767px) {
  .guarantee-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .guarantee-img { margin: 0 auto; }
  .guarantee-point { flex-direction: column; align-items: center; text-align: center; }
}

/* === BENEFITS === */
.benefits-sec {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0faf5, #e0f5ea);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.benefit-item:hover { box-shadow: var(--shadow); border-color: var(--primary-light); }
.benefit-icon {
  font-size: 28px;
  width: 52px;
  height: 52px;
  background: rgba(15,122,78,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-item h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.benefit-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 575px) { .benefits-grid { grid-template-columns: 1fr; } }

/* === FAQ === */
.faq-sec {
  padding: 80px 0;
  background: #fff;
}

/* === FINAL CTA === */
.final-cta-sec {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a3d25 0%, #0f7a4e 60%, #1a8c5a 100%);
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Crect x='0' y='0' width='40' height='40'/%3E%3Crect x='40' y='40' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.final-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.final-img-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(240,165,0,0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.final-cta-img-col { position: relative; }
.final-product-img {
  width: 320px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.35));
  animation: float-product 4s ease-in-out infinite;
}
.final-urgency {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffd700;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.final-h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 24px;
}
.final-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.final-old-price { font-size: 18px; color: rgba(255,255,255,0.6); }
.final-new-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
}
.final-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.final-benefits li { color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 500; }
.final-cta-btn {
  display: block;
  background: linear-gradient(135deg, var(--accent), #e08800);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 20px);
  padding: 20px 40px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(240,165,0,0.5);
  min-height: 60px;
}
.pulse-btn { animation: hero-cta-pulse 2.5s ease-in-out infinite; }
.final-cta-btn:hover { transform: scale(1.04) !important; }
.final-secure { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 14px; }

@media (max-width: 767px) {
  .final-cta-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .final-product-img { width: 240px; margin: 0 auto; }
  .final-cta-btn { width: 100%; }
  .final-benefits { align-items: flex-start; text-align: left; }
}

/* === FOOTER === */
.site-footer {
  background: #0a3d25;
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { width: 48px; margin-bottom: 10px; }
.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}
.footer-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover { background: var(--primary-light); transform: translateY(-2px); }
.footer-links-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--accent); }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.legal-link { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.legal-link:hover { color: var(--accent); }
.link-separator { color: rgba(255,255,255,0.3); }
.footer-disclaimer {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-disclaimer p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 8px; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--accent); }

@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { text-align: center; }
  .footer-desc { margin: 0 auto; }
  .footer-social { justify-content: center; }
  .footer-links-col { text-align: center; }
  .footer-legal-links { justify-content: center; }
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(15,122,78,0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--primary-dark); transform: scale(1.1); }

/* === PARTICLES (hero) === */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: particle-float linear infinite;
  pointer-events: none;
}
@keyframes particle-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
