/* ===========================
   FLORANEW STYLES.CSS
   Design: Premium Luxury Green
   =========================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1a6b3a;
  --primary-dark: #0f4526;
  --primary-light: #2d9e58;
  --accent: #f5a623;
  --accent-dark: #d4891a;
  --gold: #D4AF37;
  --text-dark: #1a1a2e;
  --text-body: #374151;
  --text-muted: #6b7280;
  --bg-white: #ffffff;
  --bg-alt: #f0f9f4;
  --bg-dark: #0f2318;
  --border: #d1fae5;
  --shadow-sm: 0 2px 8px rgba(26,107,58,0.12);
  --shadow-md: 0 8px 30px rgba(26,107,58,0.18);
  --shadow-lg: 0 20px 60px rgba(26,107,58,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ===== 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: var(--font-body); color: var(--text-body); background: var(--bg-white); line-height: 1.7; overflow-x: hidden; }
* { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
input, select, textarea { font-size: 16px; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 60px 0; }
.alt-bg { background: var(--bg-alt); }
.mt-20 { margin-top: 20px; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.2; color: var(--text-dark); }
p { font-family: var(--font-body); line-height: 1.75; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 28px; margin-bottom: 12px; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; border-radius: 50px;
  cursor: pointer; transition: var(--transition); border: none;
  min-height: 48px; padding: 14px 32px; text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 6px 24px rgba(26,107,58,0.35);
  font-size: 17px;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 10px 36px rgba(26,107,58,0.5); }
.btn-primary:active { transform: scale(0.98); }
.btn-nav { font-size: 14px; padding: 10px 24px; background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(245,166,35,0.4); }
.btn-nav:hover { transform: scale(1.05); background: var(--accent-dark); }
.btn-hero { font-size: 19px; padding: 18px 40px; margin-top: 24px; width: 100%; max-width: 480px; }
.btn-full { width: 100%; }
.btn-xl { font-size: 21px; padding: 20px 50px; }
.btn-sub { font-size: 12px; font-weight: 500; opacity: 0.85; margin-top: 4px; font-family: var(--font-body); }

/* Pulse animation for final CTA */
.btn-pulse { animation: pulse-btn 2s infinite; }
@keyframes pulse-btn {
  0%,100% { box-shadow: 0 6px 24px rgba(26,107,58,0.35); }
  50% { box-shadow: 0 12px 48px rgba(26,107,58,0.65), 0 0 0 10px rgba(26,107,58,0.1); }
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, #1a6b3a, #2dd4bf);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--text-dark);
}
.nav-logo img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.nav-logo strong { color: var(--primary); }
.nav-links { display: none; gap: 32px; }
.nav-link {
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  color: var(--text-dark); transition: var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--primary); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  min-width: 44px; min-height: 44px; justify-content: center; align-items: center;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text-dark);
  transition: var(--transition); display: block;
}
.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 */
.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  background: #fff; padding: 0;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { max-height: 400px; padding: 16px 20px 20px; }
.mobile-link {
  display: block; padding: 14px 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  color: var(--text-dark); border-radius: var(--radius-sm);
  transition: var(--transition); min-height: 48px;
}
.mobile-link:hover { background: var(--bg-alt); color: var(--primary); }
.mobile-cta { margin-top: 8px; text-align: center; }

/* ===========================
   HERO
   =========================== */
.hero {
  background: linear-gradient(135deg, #0f2318 0%, #1a6b3a 50%, #0d3d22 100%);
  position: relative; overflow: hidden; padding: 60px 0 70px;
  min-height: 90vh; display: flex; align-items: center;
}
.hero-bg-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-container {
  display: flex; flex-direction: column; align-items: center;
  gap: 40px; position: relative; z-index: 1;
}
.hero-image {
  position: relative; display: flex; justify-content: center; align-items: center;
  width: 100%; max-width: 340px;
}
.hero-glow {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,158,88,0.4) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.15);opacity:1} }
.product-hero-img {
  width: 260px; max-width: 100%;
  animation: float-product 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  position: relative; z-index: 2;
}
@keyframes float-product {
  0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-18px) rotate(2deg)}
}
.hero-badge {
  position: absolute; bottom: 10px; right: -10px;
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 6px 14px; border-radius: 20px;
  box-shadow: 0 4px 16px rgba(245,166,35,0.5);
  animation: badge-bounce 2s ease-in-out infinite;
}
@keyframes badge-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.hero-content { color: #fff; text-align: center; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px; padding: 8px 20px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 20px; color: #a7f3d0;
}
.hero-h1 {
  font-family: var(--font-head); font-weight: 900;
  font-size: 28px; line-height: 1.15; color: #fff; margin-bottom: 20px;
}
.hero-h1 .gradient-text {
  background: linear-gradient(135deg, #6ee7b7, #34d399);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 16px; line-height: 1.75; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin: 24px 0; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 900; color: #6ee7b7; }
.stat span { font-size: 13px; color: rgba(255,255,255,0.7); }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }
.hero-disclaimer { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 12px; }

/* Animated particles */
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(110,231,183,0.15);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.why-card {
  background: #fff; border-radius: var(--radius-xl); padding: 32px 28px;
  text-align: center; border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.why-card:hover { transform: translateY(-6px) rotate(1deg); box-shadow: var(--shadow-lg); }
.why-card img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; }
.why-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--primary-dark); }
.why-card p { font-size: 15px; color: var(--text-body); }

/* ===========================
   SPLIT LAYOUT
   =========================== */
.split-layout {
  display: flex; flex-direction: column; gap: 40px; align-items: center;
}
.split-image img { border-radius: var(--radius-xl); width: 100%; }
.split-content { display: flex; flex-direction: column; gap: 16px; }
.split-content p { font-size: 16px; }
.rounded-img { box-shadow: var(--shadow-md); }
.guarantee-img { max-width: 300px; margin: 0 auto; }

/* ===========================
   HOW IT WORKS - ACCORDION
   =========================== */
.accordion-list { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: #fff; border-radius: var(--radius); border: 1.5px solid var(--border);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.accordion-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; font-family: var(--font-head); font-weight: 700; font-size: 16px;
  color: var(--text-dark); background: none; border: none; cursor: pointer;
  min-height: 60px; text-align: left; gap: 12px; transition: var(--transition);
}
.accordion-header:hover { background: var(--bg-alt); color: var(--primary); }
.accordion-header[aria-expanded="true"] { color: var(--primary); background: #ecfdf5; }
.acc-icon {
  font-size: 22px; font-weight: 400; flex-shrink: 0;
  color: var(--primary); transition: transform 0.3s;
}
.accordion-header[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.accordion-body p { font-size: 15px; line-height: 1.75; }
.accordion-item.active .accordion-body { max-height: 400px; padding: 0 24px 20px; }

/* ===========================
   REVIEWS
   =========================== */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.review-card {
  background: #fff; border-radius: var(--radius-xl); padding: 28px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); }
.review-top strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.review-top span { font-size: 13px; color: var(--text-muted); }
.stars { color: #f59e0b; font-size: 16px; margin-top: 2px; }
.review-card p { font-size: 15px; line-height: 1.75; }
.review-stars-img { text-align: center; margin-top: 40px; }
.review-stars-img img { max-width: 180px; margin: 0 auto 8px; }
.review-stars-img p { font-size: 16px; color: var(--text-muted); }

/* ===========================
   PRICING
   =========================== */
.countdown-wrap {
  text-align: center; margin-bottom: 40px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl); padding: 24px;
  color: #fff;
}
.countdown-label { font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.countdown { display: flex; align-items: center; justify-content: center; gap: 8px; }
.countdown-block {
  background: rgba(0,0,0,0.3); border-radius: 12px;
  padding: 12px 20px; text-align: center; min-width: 80px;
}
.countdown-block span { display: block; font-family: var(--font-head); font-size: 40px; font-weight: 900; color: #6ee7b7; line-height: 1; }
.countdown-block small { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.7); }
.countdown-sep { font-size: 36px; font-weight: 900; color: var(--accent); }

.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 980px; margin: 0 auto;
}
.price-card {
  background: #fff; border-radius: var(--radius-xl); padding: 32px 24px;
  text-align: center; border: 2px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition); position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.popular {
  border-color: var(--primary); background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  transform: scale(1.02);
}
.price-card.popular:hover { transform: scale(1.02) translateY(-6px); }
.popular-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 6px 20px; border-radius: 20px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245,166,35,0.45);
}
.price-label { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 2px; color: var(--primary); margin-bottom: 6px; }
.price-bottles { font-family: var(--font-head); font-weight: 900; font-size: 22px; margin-bottom: 4px; }
.price-supply { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.price-card img { max-height: 150px; margin: 0 auto 20px; object-fit: contain; }
.price-amount { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 4px; }
.price-old { font-size: 20px; color: var(--text-muted); text-decoration: line-through; }
.price-now { font-family: var(--font-head); font-weight: 900; font-size: 38px; color: var(--primary); }
.price-per { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.price-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 16px; }
.badge-free, .badge-ship {
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  padding: 5px 12px; border-radius: 20px;
}
.badge-free { background: #fef3c7; color: #92400e; }
.badge-ship { background: #dcfce7; color: #166534; }
.payment-logos { max-height: 30px; margin: 12px auto 0; object-fit: contain; }
.pricing-footer { text-align: center; margin-top: 32px; }
.pricing-footer img { max-width: 160px; margin: 0 auto; }

/* ===========================
   BONUSES
   =========================== */
.bonus-grid { display: flex; flex-direction: column; gap: 32px; }
.bonus-card {
  background: #fff; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border); transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bonus-card img { width: 100%; max-height: 220px; object-fit: cover; }
.bonus-content { padding: 24px; }
.bonus-tag {
  font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 1px;
  color: #fff; background: var(--primary); display: inline-block;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 12px;
}
.bonus-content h3 { font-size: 20px; margin-bottom: 10px; color: var(--primary-dark); }
.bonus-content p { font-size: 15px; margin-bottom: 8px; }
.bonus-value { font-family: var(--font-head); font-weight: 600; color: var(--primary); font-size: 15px !important; }

/* ===========================
   INGREDIENTS
   =========================== */
.ingredients-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.ingredient-card {
  background: #fff; border-radius: var(--radius); padding: 24px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition); display: flex; flex-direction: column; gap: 8px;
}
.ingredient-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ing-icon { font-size: 32px; }
.ingredient-card h3 { font-size: 17px; color: var(--primary-dark); margin: 0; }
.ingredient-card p { font-size: 14px; color: var(--text-body); }

/* ===========================
   SCIENCE
   =========================== */
.science-list { display: flex; flex-direction: column; gap: 20px; }
.science-item {
  background: #fff; border-radius: var(--radius); padding: 24px;
  border-left: 5px solid var(--primary); box-shadow: var(--shadow-sm);
}
.science-item h3 { font-size: 17px; margin-bottom: 10px; color: var(--primary-dark); }
.science-item p { font-size: 15px; line-height: 1.75; }
.science-disclaimer { font-size: 13px; color: var(--text-muted); margin-top: 32px; font-style: italic; text-align: center; padding: 16px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border); }

/* ===========================
   GUARANTEE
   =========================== */
.reverse { flex-direction: column-reverse; }
.guarantee-point {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border-radius: var(--radius); padding: 20px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}
.g-icon { font-size: 28px; flex-shrink: 0; }
.guarantee-point h4 { font-size: 16px; margin-bottom: 6px; color: var(--primary-dark); }
.guarantee-point p { font-size: 14px; }

/* ===========================
   BENEFITS
   =========================== */
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border-radius: var(--radius); padding: 20px 24px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--transition);
}
.benefit-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.benefit-check { font-size: 24px; flex-shrink: 0; }
.benefit-item h4 { font-size: 16px; margin-bottom: 6px; color: var(--primary-dark); }
.benefit-item p { font-size: 14px; }

/* ===========================
   FAQ
   =========================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; font-family: var(--font-head); font-weight: 700; font-size: 16px;
  color: var(--text-dark); background: none; border: none; cursor: pointer;
  min-height: 60px; text-align: left; gap: 12px; transition: var(--transition);
}
.faq-question:hover { background: var(--bg-alt); color: var(--primary); }
.faq-question[aria-expanded="true"] { color: var(--primary); background: #ecfdf5; }
.faq-icon { font-size: 22px; flex-shrink: 0; color: var(--primary); transition: transform 0.3s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
.faq-answer p { font-size: 15px; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ===========================
   FINAL CTA
   =========================== */
.final-cta {
  background: linear-gradient(135deg, #0f2318 0%, #1a6b3a 60%, #0d3d22 100%);
  position: relative; overflow: hidden; text-align: center;
}
.final-cta-bg {
  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='%236ee7b7' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta-img {
  max-width: 280px; margin: 0 auto 32px;
  animation: float-product 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.final-cta h2 { font-size: 32px; color: #fff; margin-bottom: 8px; }
.final-cta h3 { font-size: 22px; color: #6ee7b7; margin-bottom: 24px; }
.final-price { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 24px; }
.old-price { font-size: 17px; color: rgba(255,255,255,0.6); }
.new-price { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: var(--accent); }
.final-desc { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 32px; line-height: 1.75; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-top { display: flex; flex-direction: column; gap: 40px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; max-width: 320px; }
.footer-logo { color: #fff; }
.footer-logo strong { color: #6ee7b7; }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.social-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border-radius: 8px; padding: 8px 14px;
  font-size: 13px; font-weight: 600; transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: #fff; }
.footer-links-col h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links-col a, .footer-legal-links a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.65);
  padding: 6px 0; transition: var(--transition);
}
.footer-links-col a:hover, .footer-legal-links a:hover { color: #6ee7b7; }
.footer-legal-links { display: flex; flex-direction: column; gap: 2px; }
.footer-bottom {
  margin-top: 40px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1); text-align: center;
}
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 16px; }
.copyright { font-size: 13px; color: rgba(255,255,255,0.6); }
.copyright a { color: #6ee7b7; }

/* ===========================
   PURCHASE POPUP
   =========================== */
.purchase-popup {
  position: fixed; bottom: -100px; left: 20px; z-index: 9999;
  background: #fff; border-radius: var(--radius); padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  border-left: 4px solid var(--primary);
  max-width: 300px; width: calc(100% - 40px);
  transition: bottom 0.5s cubic-bezier(0.4,0,0.2,1);
}
.purchase-popup.show { bottom: 20px; }
.popup-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; font-size: 16px; cursor: pointer;
  color: var(--text-muted); min-width: 28px; min-height: 28px;
}
.popup-content { display: flex; align-items: center; gap: 12px; }
.popup-avatar { font-size: 28px; }
.popup-text { display: flex; flex-direction: column; }
.popup-text strong { font-family: var(--font-head); font-size: 14px; color: var(--text-dark); }
.popup-text span { font-size: 13px; color: var(--text-body); }
.popup-text small { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ===========================
   EXIT INTENT POPUP
   =========================== */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.7); display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.exit-popup-overlay.show { display: flex; }
.exit-popup {
  background: #fff; border-radius: var(--radius-xl); padding: 40px 32px;
  max-width: 480px; width: 100%; text-align: center; position: relative;
  animation: popup-in 0.4s cubic-bezier(0.4,0,0.2,1);
}
@keyframes popup-in { from{transform:scale(0.8);opacity:0} to{transform:scale(1);opacity:1} }
.exit-popup-close {
  position: absolute; top: 16px; right: 16px;
  background: #f3f4f6; border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.exit-popup-emoji { font-size: 48px; margin-bottom: 12px; }
.exit-popup h3 { font-size: 24px; margin-bottom: 12px; color: var(--text-dark); }
.exit-popup p { font-size: 16px; color: var(--text-body); margin-bottom: 20px; }
.exit-price { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--primary); margin-bottom: 24px; }
.exit-price span { color: var(--accent); }
.exit-cta { display: block; text-align: center; font-size: 18px; margin-bottom: 12px; }
.exit-dismiss { display: block; font-size: 13px; color: var(--text-muted); text-decoration: underline; cursor: pointer; }

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed; bottom: 90px; right: 20px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff;
  border: none; font-size: 20px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,107,58,0.4);
  display: none; align-items: center; justify-content: center;
  transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ===========================
   AOS ANIMATIONS
   =========================== */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s 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].aos-animate { opacity: 1; transform: none; }

/* ===========================
   RESPONSIVE — TABLET 576px+
   =========================== */
@media (min-width: 576px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   RESPONSIVE — TABLET 768px+
   =========================== */
@media (min-width: 768px) {
  .section-pad { padding: 80px 0; }
  .section-header h2 { font-size: 34px; }
  .hero-container { flex-direction: row; gap: 60px; align-items: center; }
  .hero-image { max-width: 420px; flex-shrink: 0; }
  .hero-content { text-align: left; }
  .hero-h1 { font-size: 38px; }
  .hero-stats { justify-content: flex-start; }
  .hero-disclaimer { text-align: left; }
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .split-layout { flex-direction: row; gap: 60px; }
  .split-layout.reverse { flex-direction: row-reverse; }
  .split-image, .split-content { flex: 1; }
  .bonus-grid { flex-direction: row; }
  .bonus-card { flex: 1; }
  .footer-top { flex-direction: row; gap: 40px; }
  .footer-brand { flex: 2; }
  .footer-links-col { flex: 1; }
  .footer-legal-links { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .purchase-popup { max-width: 320px; bottom: 30px; }
}

/* ===========================
   RESPONSIVE — DESKTOP 1024px+
   =========================== */
@media (min-width: 1024px) {
  .section-header h2 { font-size: 40px; }
  .hero-h1 { font-size: 46px; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta h2 { font-size: 42px; }
  .final-cta h3 { font-size: 28px; }
  .product-hero-img { width: 340px; }
}

/* ===========================
   REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-aos] { opacity: 1; transform: none; }
}
