/* =============================================
   ZANARI CBD GUMMIES - PREMIUM LANDING PAGE CSS
   Design: Medical Luxury x Modern Organic
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --green-dark: #0a3d2b;
  --green-main: #16a34a;
  --green-light: #22c55e;
  --green-pale: #dcfce7;
  --gold: #ca8a04;
  --gold-light: #fbbf24;
  --white: #ffffff;
  --off-white: #f8faf9;
  --gray-100: #f1f5f4;
  --gray-200: #e2ebe6;
  --gray-600: #4b7264;
  --gray-800: #1e3a2f;
  --text-primary: #0f2419;
  --text-secondary: #3d6b54;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 20px rgba(22,163,74,0.12);
  --shadow-lg: 0 8px 40px rgba(22,163,74,0.18);
  --shadow-card: 0 2px 16px rgba(10,61,43,0.08);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--green-main), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(24px, 4vw, 38px);
  margin-bottom: 12px;
}
.section-header p {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-tag.white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.strike { text-decoration: line-through; color: #9ca3af; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 14px 28px;
  min-height: 52px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }
.btn:active { transform: scale(0.98); }

/* =============================================
   PURCHASE NOTIFICATION
============================================= */
.purchase-notif {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 2px solid var(--green-light);
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: bottom 0.4s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  max-width: calc(100% - 32px);
}
.purchase-notif.show { bottom: 20px; }
.notif-inner { display: flex; align-items: center; gap: 10px; }
.notif-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green-light);
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
#notifText { font-size: 14px; font-weight: 500; }
.notif-close {
  background: none; border: none; font-size: 18px;
  color: #9ca3af; cursor: pointer; padding: 0 4px;
  line-height: 1;
}

/* =============================================
   EXIT POPUP
============================================= */
.exit-popup-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup-overlay.active { display: flex; animation: fadeInOverlay 0.3s ease; }
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.exit-popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: slideUpPop 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
@keyframes slideUpPop { from { transform: translateY(40px); opacity:0; } to { transform: translateY(0); opacity:1; } }
.exit-popup-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--gray-100); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 16px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: background var(--transition);
}
.exit-popup-close:hover { background: var(--gray-200); }
.exit-popup-badge {
  background: linear-gradient(135deg, var(--green-main), var(--gold));
  color: white; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; padding: 6px 16px;
  border-radius: 99px; display: inline-block;
  margin-bottom: 16px;
}
.exit-popup-box img { width: 140px; margin: 12px auto; }
.exit-popup-box h3 { font-size: 24px; margin-bottom: 8px; color: var(--green-dark); }
.exit-popup-box p { color: var(--text-secondary); font-size: 15px; margin-bottom: 12px; }
.exit-popup-price { font-size: 22px; margin-bottom: 20px; color: var(--text-primary); }
.exit-popup-price .strike { font-size: 17px; }
.exit-popup-btn {
  display: block; background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: white; font-size: 16px; font-weight: 700;
  padding: 14px 24px; border-radius: var(--radius);
  margin-bottom: 12px; transition: transform var(--transition), box-shadow var(--transition);
}
.exit-popup-btn:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.exit-popup-guarantee { font-size: 13px; color: var(--text-secondary); }

/* =============================================
   SCROLL TO TOP
============================================= */
.scroll-top-btn {
  position: fixed; bottom: 24px; right: 20px;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: white; font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999; border: none;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { transform: translateY(-4px) scale(1.05); }

/* =============================================
   NAVIGATION
============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22,163,74,0.1);
  transition: box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(10,61,43,0.12); }
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--green-dark); flex-shrink: 0;
}
.nav-logo img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text-secondary);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--green-main); }
.btn-nav {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: white; padding: 10px 22px;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  flex-shrink: 0; min-height: 44px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-nav:hover { transform: scale(1.04); box-shadow: var(--shadow); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none;
  cursor: pointer; border-radius: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--green-dark); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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); }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); padding: 0 20px;
  border-top: 1px solid var(--gray-200);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
}
.mobile-menu.open { max-height: 320px; padding: 16px 20px; }
.mobile-menu a {
  padding: 14px 0; font-size: 16px; font-weight: 500;
  color: var(--text-secondary); border-bottom: 1px solid var(--gray-200);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.btn-nav-mobile {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: white; text-align: center; padding: 14px;
  border-radius: var(--radius); font-weight: 600; margin-top: 12px;
  display: block; min-height: 52px;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0a3d2b 0%, #0f5c3e 40%, #16a34a 100%);
  position: relative; overflow: hidden;
  padding: 120px 20px 80px;
  display: flex; align-items: center;
}
.hero-bg-anim { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: var(--gold); top: -100px; right: -100px; animation-delay: 0s; }
.orb2 { width: 350px; height: 350px; background: var(--green-light); bottom: -80px; left: -60px; animation-delay: 3s; }
.orb3 { width: 250px; height: 250px; background: #fef3c7; top: 40%; left: 30%; animation-delay: 5s; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-20px) scale(1.08); }
}
.hero-container {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-image-col { display: flex; justify-content: center; align-items: center; }
.hero-img-wrapper { position: relative; display: inline-flex; }
.hero-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,0.25), transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.hero-product-img {
  width: clamp(280px, 35vw, 420px);
  height: auto; position: relative; z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.floating {
  animation: floatUpDown 4s ease-in-out infinite;
}
.floating-slow { animation: floatUpDown 6s ease-in-out infinite; }
@keyframes floatUpDown {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-badge-float {
  position: absolute; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px); color: white;
  font-size: 12px; font-weight: 700; padding: 6px 14px;
  border-radius: 99px; border: 1px solid rgba(255,255,255,0.3);
  white-space: nowrap; z-index: 2;
}
.badge-top { top: 10%; left: -20px; animation: badgeFloat 3s ease-in-out infinite; }
.badge-bottom { bottom: 15%; right: -20px; animation: badgeFloat 3s ease-in-out infinite 1.5s; }
@keyframes badgeFloat {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
.hero-tag {
  background: rgba(251,191,36,0.2); color: var(--gold-light);
  font-size: 13px; font-weight: 600; padding: 8px 16px;
  border-radius: 99px; border: 1px solid rgba(251,191,36,0.3);
  display: inline-block; margin-bottom: 20px;
  animation: tagPop 0.6s cubic-bezier(.4,0,.2,1) 0.2s both;
}
@keyframes tagPop { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform: translateY(0); } }
.hero-content-col h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  color: white; line-height: 1.15; margin-bottom: 20px;
  animation: heroH1 0.8s cubic-bezier(.4,0,.2,1) 0.3s both;
}
@keyframes heroH1 { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
.hero-desc {
  color: rgba(255,255,255,0.82); font-size: clamp(15px, 1.8vw, 17px);
  margin-bottom: 14px; line-height: 1.75;
  animation: heroText 0.8s cubic-bezier(.4,0,.2,1) 0.5s both;
}
@keyframes heroText { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform: translateY(0); } }
.hero-features {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
  animation: heroFeatures 0.8s cubic-bezier(.4,0,.2,1) 0.6s both;
}
@keyframes heroFeatures { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform: translateY(0); } }
.hero-features span {
  background: rgba(255,255,255,0.1); color: white;
  padding: 7px 14px; border-radius: 99px; font-size: 13px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-hero {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green-dark); font-size: 17px; font-weight: 700;
  padding: 18px 36px; border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(202,138,4,0.4);
  animation: heroBtn 0.8s cubic-bezier(.4,0,.2,1) 0.7s both;
  width: 100%;
}
@keyframes heroBtn { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform: translateY(0); } }
.btn-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(202,138,4,0.5);
}
.hero-sub-text {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px; flex-wrap: wrap;
  animation: heroBtn 0.8s cubic-bezier(.4,0,.2,1) 0.9s both;
}
.hero-sub-text span { color: rgba(255,255,255,0.75); font-size: 13px; }
.hero-cta-group { width: 100%; }

/* =============================================
   WHY CHOOSE
============================================= */
.why-choose {
  background: var(--off-white);
  padding: 80px 20px;
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.badge-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), rotate var(--transition);
  border: 1px solid var(--gray-200);
}
.badge-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.badge-icon {
  width: 80px; height: 80px;
  background: var(--green-pale);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 20px;
  padding: 12px;
}
.badge-icon img { width: 56px; height: 56px; object-fit: contain; }
.badge-card h3 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 12px; color: var(--green-dark);
}
.badge-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* =============================================
   WHAT IS
============================================= */
.what-is {
  background: var(--white);
  padding: 80px 20px;
}
.what-is-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.img-frame {
  background: linear-gradient(135deg, var(--green-pale), #fef9ee);
  border-radius: var(--radius-lg);
  padding: 30px; display: flex; justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-card);
}
.img-frame img { width: 100%; max-width: 400px; }
.what-is-content h2 { font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 20px; }
.what-is-content p { margin-bottom: 16px; color: var(--text-secondary); line-height: 1.8; }
.btn-secondary {
  background: transparent;
  color: var(--green-main);
  border: 2px solid var(--green-main);
  padding: 13px 28px;
  border-radius: var(--radius); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: var(--green-main); color: white;
  transform: scale(1.03);
}

/* =============================================
   HOW IT WORKS
============================================= */
.how-works {
  background: linear-gradient(160deg, var(--green-dark) 0%, #1a5c3f 100%);
  padding: 80px 20px;
}
.how-works .section-header.light { margin-bottom: 40px; }
.accordion-list { max-width: 800px; margin: 0 auto; }
.accordion-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: background var(--transition);
}
.accordion-item.active { background: rgba(255,255,255,0.12); }
.accordion-header {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px; cursor: pointer;
  text-align: left; min-height: 66px;
  transition: background var(--transition);
}
.accordion-header:hover { background: rgba(255,255,255,0.06); }
.acc-icon { font-size: 22px; flex-shrink: 0; }
.acc-title { font-size: 16px; font-weight: 600; color: white; flex: 1; }
.acc-arrow {
  color: rgba(255,255,255,0.6); font-size: 14px;
  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(.4,0,.2,1), padding 0.3s;
  padding: 0 24px;
}
.accordion-body.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.accordion-body p { color: rgba(255,255,255,0.8); line-height: 1.75; font-size: 15px; }

/* =============================================
   REVIEWS
============================================= */
.reviews { background: var(--off-white); padding: 80px 20px; }
.overall-rating {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 14px;
}
.overall-rating span { font-size: 15px; font-weight: 600; color: var(--text-secondary); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-card.featured { border-color: var(--green-light); border-width: 2px; }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-header img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.review-header h4 { font-size: 16px; margin-bottom: 2px; }
.review-header p { font-size: 13px; color: var(--text-secondary); }
.stars { font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-style: italic; }

/* =============================================
   PRICING
============================================= */
.pricing {
  background: linear-gradient(160deg, var(--green-dark) 0%, #0f2d1e 100%);
  padding: 80px 20px;
}
.pricing-second { background: linear-gradient(160deg, #0f2d1e 0%, var(--green-dark) 100%); }
.countdown-wrapper {
  display: flex; flex-direction: column;
  align-items: center; margin-bottom: 40px;
}
.countdown-label { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.countdown-timer { display: flex; align-items: center; gap: 8px; }
.time-block {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 10px 20px;
  text-align: center; min-width: 80px;
}
.time-block span { display: block; font-size: 38px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.time-block small { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 2px; margin-top: 4px; display: block; }
.time-sep { font-size: 36px; font-weight: 700; color: var(--gold-light); line-height: 1; animation: sepBlink 1s infinite; }
@keyframes sepBlink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.price-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 28px 22px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.price-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.3); }
.price-card.popular {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-light);
  border-width: 2px;
  transform: scale(1.02);
}
.price-card.popular:hover { transform: scale(1.02) translateY(-8px); }
.price-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 10px;
}
.popular-label { color: var(--gold-light) !important; }
.popular-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 10px; }
.pop-badge {
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 99px; letter-spacing: 0.5px;
}
.pop-badge.green { background: rgba(34,197,94,0.2); color: var(--green-light); }
.pop-badge.gold { background: rgba(251,191,36,0.2); color: var(--gold-light); }
.price-card h3 { color: white; font-size: 22px; margin-bottom: 4px; }
.supply { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 16px; }
.price-card img:not(.payment-logos) {
  width: clamp(100px, 15vw, 150px);
  margin: 0 auto 16px; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}
.price-display {
  display: flex; align-items: baseline; justify-content: center;
  gap: 8px; margin-bottom: 6px; flex-wrap: wrap;
}
.old-price { font-size: 17px; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.new-price { font-size: 36px; font-weight: 700; color: var(--gold-light); }
.per-bottle { font-size: 14px; color: rgba(255,255,255,0.6); }
.price-per { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.btn-price {
  background: linear-gradient(135deg, var(--green-light), var(--green-main));
  color: white; font-weight: 700; padding: 14px 20px;
  border-radius: var(--radius); width: 100%; font-size: 15px;
  margin-bottom: 14px; min-height: 52px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-price:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(34,197,94,0.35); }
.btn-price-popular {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green-dark); font-weight: 700; padding: 14px 20px;
  border-radius: var(--radius); width: 100%; font-size: 15px;
  margin-bottom: 14px; min-height: 52px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-price-popular:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(251,191,36,0.4); }
.payment-logos { width: 100%; max-width: 180px; margin: 0 auto; opacity: 0.8; }
.rating-row {
  display: flex; justify-content: center;
  margin-top: 36px; opacity: 0.9;
}

/* =============================================
   BONUSES
============================================= */
.bonuses { background: var(--white); padding: 80px 20px; }
.bonus-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; max-width: 800px; margin: 0 auto;
}
.bonus-card {
  background: linear-gradient(135deg, var(--green-pale), #fef9ee);
  border: 2px solid var(--green-light);
  border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bonus-number {
  background: var(--green-main); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  padding: 5px 14px; border-radius: 99px;
  display: inline-block; margin-bottom: 16px;
}
.bonus-card img { width: 160px; margin: 0 auto 18px; }
.bonus-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--green-dark); }
.bonus-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 14px; }
.bonus-value {
  background: var(--green-main); color: white;
  font-size: 14px; font-weight: 700; padding: 8px 18px;
  border-radius: 99px; display: inline-block;
}

/* =============================================
   INGREDIENTS
============================================= */
.ingredients {
  background: linear-gradient(160deg, var(--green-dark) 0%, #143d29 100%);
  padding: 80px 20px;
}
.ingredients-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ingredient-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 24px;
  transition: transform var(--transition), background var(--transition);
}
.ingredient-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(34,197,94,0.4);
}
.ing-icon { font-size: 28px; margin-bottom: 12px; }
.ingredient-card h3 { font-size: 16px; color: var(--gold-light); margin-bottom: 10px; }
.ingredient-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* =============================================
   SCIENCE
============================================= */
.science { background: var(--off-white); padding: 80px 20px; }
.science-accordion { max-width: 850px; margin: 0 auto; }
.sci-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); margin-bottom: 12px;
  overflow: hidden;
}
.sci-header {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--text-primary);
  min-height: 64px; gap: 16px;
  transition: background var(--transition);
}
.sci-header:hover { background: var(--green-pale); }
.sci-arrow { font-size: 20px; font-weight: 400; color: var(--green-main); flex-shrink: 0; transition: transform 0.3s; }
.sci-item.open .sci-arrow { transform: rotate(45deg); }
.sci-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
  padding: 0 24px;
}
.sci-body.open { max-height: 400px; padding: 0 24px 20px; }
.sci-body p { color: var(--text-secondary); line-height: 1.75; font-size: 15px; margin-bottom: 10px; }
.sci-body cite { font-size: 13px; color: var(--green-main); font-style: italic; }

/* =============================================
   GUARANTEE
============================================= */
.guarantee { background: var(--white); padding: 80px 20px; }
.guarantee-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px; align-items: center;
}
.guarantee-image {
  display: flex; justify-content: center; align-items: center;
}
.guarantee-image img { max-width: 300px; filter: drop-shadow(0 8px 24px rgba(22,163,74,0.2)); }
.guarantee-content h2 { font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 28px; }
.guarantee-points { display: flex; flex-direction: column; gap: 24px; margin-bottom: 28px; }
.gp { display: flex; gap: 18px; align-items: flex-start; }
.gp-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.gp h4 { font-size: 17px; margin-bottom: 8px; color: var(--green-dark); }
.gp p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* =============================================
   BENEFITS
============================================= */
.benefits {
  background: linear-gradient(160deg, var(--green-dark) 0%, #112b1c 100%);
  padding: 80px 20px;
}
.benefits-list {
  display: flex; flex-direction: column;
  gap: 20px; max-width: 820px; margin: 0 auto;
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 24px;
  transition: background var(--transition), transform var(--transition);
}
.benefit-item:hover { background: rgba(255,255,255,0.11); transform: translateX(6px); }
.benefit-check {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green-main));
  color: white; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-item h3 { font-size: 17px; color: white; margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* =============================================
   FAQ
============================================= */
.faq { background: var(--off-white); padding: 80px 20px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--text-primary);
  min-height: 64px; gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--green-pale); color: var(--green-dark); }
.faq-arrow { font-size: 22px; font-weight: 400; color: var(--green-main); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
  padding: 0 24px;
}
.faq-answer.open { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-secondary); line-height: 1.75; font-size: 15px; }

/* =============================================
   FINAL CTA
============================================= */
.final-cta {
  background: linear-gradient(140deg, #0a3d2b 0%, #1a5c3f 50%, #16a34a 100%);
  padding: 100px 20px;
  position: relative; overflow: hidden;
}
.final-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-fc1 { width: 400px; height: 400px; background: var(--gold-light); top: -100px; right: -80px; filter: blur(100px); opacity: 0.12; animation: orbFloat 7s ease-in-out infinite; }
.orb-fc2 { width: 300px; height: 300px; background: var(--green-light); bottom: -80px; left: -60px; filter: blur(80px); opacity: 0.2; animation: orbFloat 9s ease-in-out infinite 2s; }
.final-cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.final-cta-image { display: flex; justify-content: center; }
.final-img-glow {
  position: absolute; inset: -30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,0.3), transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.final-cta-image { position: relative; }
.final-cta-image img { max-width: 340px; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4)); }
.urgent-tag {
  background: rgba(251,191,36,0.2); color: var(--gold-light);
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 99px;
  border: 1px solid rgba(251,191,36,0.3);
  display: inline-block; margin-bottom: 16px;
  animation: pulse-dot 2s infinite;
}
.final-cta-content h2 { font-size: clamp(32px, 4vw, 50px); color: white; margin-bottom: 8px; }
.final-cta-content h3 { font-size: clamp(20px, 2.5vw, 28px); color: var(--gold-light); margin-bottom: 28px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.final-price-box {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 20px 24px;
  margin-bottom: 28px;
}
.final-old { color: rgba(255,255,255,0.6); font-size: 17px; margin-bottom: 6px; }
.strike-large { text-decoration: line-through; font-size: 22px; }
.final-new { color: var(--gold-light); font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.final-save {
  background: var(--green-light); color: var(--green-dark);
  font-size: 13px; font-weight: 700; padding: 6px 14px;
  border-radius: 99px; display: inline-block;
}
.btn-final {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green-dark); font-size: 18px; font-weight: 700;
  padding: 18px 36px; border-radius: var(--radius);
  width: 100%; justify-content: center; margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(202,138,4,0.45);
  animation: glow-btn 2.5s ease-in-out infinite;
}
@keyframes glow-btn {
  0%,100% { box-shadow: 0 8px 32px rgba(202,138,4,0.45); }
  50% { box-shadow: 0 8px 48px rgba(202,138,4,0.65); }
}
.btn-final:hover { transform: translateY(-4px) scale(1.02); }
.final-assurances {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px;
}
.final-assurances span { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; }
.final-cards { max-width: 200px; opacity: 0.8; }

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--gray-800);
  padding: 48px 20px 24px;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 20px;
}
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: white;
}
.footer-brand img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--green-main); color: white; transform: translateY(-2px); }
.footer-legal-links {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 8px;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-link { color: rgba(255,255,255,0.6); font-size: 14px; transition: color var(--transition); }
.legal-link:hover { color: var(--green-light); }
.link-separator { color: rgba(255,255,255,0.25); font-size: 14px; }
.footer-disclaimer {
  margin: 20px 0;
  padding: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
}
.footer-disclaimer p {
  font-size: 12px; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-bottom: 10px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-copy {
  text-align: center; margin-top: 20px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-copy a { color: var(--green-light); transition: color var(--transition); }
.footer-copy a:hover { color: var(--white); }

/* =============================================
   AOS ANIMATIONS (Intersection Observer)
============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="slide-up"] { transform: translateY(40px); }
[data-aos].animated {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* =============================================
   MEDIA QUERIES - MOBILE FIRST
============================================= */

/* Tablet - 768px and below */
@media (max-width: 991px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .what-is-grid { grid-template-columns: 1fr; }
  .what-is-image { order: -1; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .price-card.popular { order: -1; grid-column: span 2; max-width: 360px; margin: 0 auto; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-image { order: -1; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta-image { order: -1; }
  .final-assurances { justify-content: center; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-col { order: -1; }
  .bonus-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* Mobile - 768px and below */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-product-img { width: clamp(220px, 70vw, 320px); }
  .badge-top { left: -10px; }
  .badge-bottom { right: -10px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { grid-column: span 1; max-width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: 1fr; gap: 16px; }
  .what-is-grid { gap: 30px; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .hero-container { gap: 30px; }
  .time-block { min-width: 70px; }
  .time-block span { font-size: 32px; }
}

/* Small phones - 480px */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .why-choose, .what-is, .reviews, .bonuses,
  .science, .guarantee, .faq,
  .how-works, .pricing, .benefits,
  .ingredients, .final-cta { padding: 60px 16px; }
  h1 { font-size: 26px !important; }
  .hero-features { gap: 8px; }
  .hero-features span { font-size: 12px; padding: 6px 10px; }
  .final-cta-content h2 { font-size: 28px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .accordion-header { padding: 16px 18px; }
  .faq-question { padding: 16px 18px; font-size: 15px; }
  .price-card { padding: 22px 16px; }
  .hero-badge-float { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
