/* ===== CSS 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%; }
* { -webkit-tap-highlight-color: transparent; }
body { font-family: 'DM Sans', sans-serif; background: #F0F4FF; color: #1a1a2e; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1E40AF;
  --primary-dark: #1e3a8a;
  --secondary: #3B82F6;
  --accent: #06B6D4;
  --gold: #F59E0B;
  --white: #ffffff;
  --light: #F0F4FF;
  --dark: #0f172a;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: 0 10px 40px rgba(30,64,175,0.15);
  --shadow-hover: 0 20px 60px rgba(30,64,175,0.25);
  --gradient: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #06B6D4 100%);
  --gradient-gold: linear-gradient(135deg, #F59E0B, #EF4444);
  --radius: 16px;
  --radius-sm: 8px;
}

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

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--gradient-gold); color: white; font-weight: 700; font-size: 1.1rem;
  padding: 16px 32px; border-radius: var(--radius); min-height: 56px;
  transition: all 0.3s ease; cursor: pointer; border: none; text-align: center;
  box-shadow: 0 6px 20px rgba(245,158,11,0.4); width: 100%; max-width: 420px;
}
.cta-btn:hover { transform: scale(1.05); box-shadow: 0 12px 30px rgba(245,158,11,0.6); }
.cta-btn:active { transform: scale(0.98); }
.btn-sub { font-size: 0.72rem; font-weight: 400; opacity: 0.9; margin-top: 3px; }
.cta-secondary { background: var(--gradient); box-shadow: 0 6px 20px rgba(30,64,175,0.4); }
.cta-secondary:hover { box-shadow: 0 12px 30px rgba(30,64,175,0.6); }
.cta-final { font-size: 1.2rem; padding: 20px 40px; max-width: 500px; }
.cta-hero { font-size: 1.15rem; padding: 18px 36px; }

/* ===== PULSE ANIMATION ===== */
@keyframes pulse { 0%,100%{box-shadow:0 6px 20px rgba(245,158,11,0.4),0 0 0 0 rgba(245,158,11,0.3)} 50%{box-shadow:0 6px 20px rgba(245,158,11,0.4),0 0 0 15px rgba(245,158,11,0)} }
.pulse-btn { animation: pulse 2.5s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.bounce-btn { animation: bounce 2s ease-in-out infinite; }
.bounce-btn:hover { animation: none; transform: scale(1.05); }

/* ===== SECTION TITLES ===== */
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(24px,4vw,40px); font-weight: 900; text-align: center; margin-bottom: 12px; color: var(--dark); }
.section-sub { text-align: center; color: var(--text-light); max-width: 650px; margin: 0 auto 48px; font-size: 1.05rem; }
.highlight { color: var(--secondary); }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 2px solid transparent; transition: all 0.3s ease; }
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text); font-weight: 500; transition: color 0.3s; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--gradient); color: white !important; padding: 10px 24px; border-radius: 50px; font-weight: 700 !important; min-height: 44px; display: flex !important; align-items: center !important; }
.nav-cta:hover { box-shadow: 0 6px 20px rgba(30,64,175,0.4); transform: translateY(-2px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border-radius: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero { min-height: 100vh; padding: 100px 20px 60px; background: linear-gradient(135deg, #0f172a 0%, #1E40AF 50%, #0891b2 100%); position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; opacity: 0.15; animation: particleFloat linear infinite; }
@keyframes particleFloat { 0%{transform:translateY(100vh) scale(0)} 100%{transform:translateY(-100px) scale(1)} }
.hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-image { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-glow { position: absolute; width: 350px; height: 350px; background: radial-gradient(circle, rgba(6,182,212,0.4) 0%, transparent 70%); border-radius: 50%; animation: glow 3s ease-in-out infinite alternate; }
@keyframes glow { from{transform:scale(0.9);opacity:0.5} to{transform:scale(1.1);opacity:1} }
.product-hero-img { width: 340px; max-width: 100%; position: relative; z-index: 2; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); }
@keyframes floating { 0%,100%{transform:translateY(0) rotate(0deg)} 33%{transform:translateY(-18px) rotate(1deg)} 66%{transform:translateY(-8px) rotate(-1deg)} }
.floating { animation: floating 4s ease-in-out infinite; }
.hero-badge { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: white; padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.25); white-space: nowrap; }
.hero-content { color: white; }
.hero-tag { display: inline-block; background: rgba(255,255,255,0.15); color: white; padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2); }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4.5vw, 52px); font-weight: 900; line-height: 1.15; margin-bottom: 24px; }
.hero-content p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 16px; line-height: 1.8; }
.hero-stats { display: flex; gap: 24px; margin: 28px 0; flex-wrap: wrap; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.stat span { font-size: 0.8rem; opacity: 0.8; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.hero-trust img { max-height: 30px; opacity: 0.8; }
.hero-trust span { font-size: 0.85rem; opacity: 0.8; }

/* ===== WHY CHOOSE US ===== */
.why-choose { padding: 80px 0; background: white; }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.badge-card { background: linear-gradient(135deg, #F0F4FF, #ffffff); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all 0.4s ease; }
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-hover); border-color: var(--secondary); }
.badge-card img { width: 80px; height: 80px; margin: 0 auto 20px; object-fit: contain; }
.badge-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.badge-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== WHAT IS ===== */
.what-is { padding: 80px 0; background: var(--light); }
.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-is-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; margin-bottom: 24px; color: var(--dark); }
.what-is-content p { font-size: 1rem; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.what-is-content .cta-btn { margin-top: 8px; }
.what-is-image img { border-radius: var(--radius); box-shadow: var(--shadow); max-width: 380px; margin: 0 auto; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; background: white; }
.accordion-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.accordion-item { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s ease; }
.accordion-item.active { border-color: var(--secondary); box-shadow: 0 4px 20px rgba(59,130,246,0.15); }
.accordion-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; text-align: left; font-size: 1rem; font-weight: 600; color: var(--dark); min-height: 60px; gap: 16px; }
.accordion-header:hover { background: rgba(59,130,246,0.05); }
.acc-icon { width: 24px; height: 24px; stroke: var(--secondary); fill: none; stroke-width: 2.5; flex-shrink: 0; transition: transform 0.3s; }
.accordion-item.active .acc-icon { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.accordion-body.open { max-height: 300px; padding: 0 24px 20px; }
.accordion-body p { color: var(--text); line-height: 1.8; font-size: 0.95rem; }

/* ===== REVIEWS ===== */
.reviews { padding: 80px 0; background: var(--light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid var(--border); transition: all 0.3s ease; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.reviewer { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.reviewer img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary); }
.reviewer strong { display: block; font-weight: 700; }
.reviewer span { font-size: 0.85rem; color: var(--text-light); }
.stars { color: #F59E0B; font-size: 1.1rem; }
.review-card p { font-size: 0.95rem; color: var(--text); line-height: 1.7; }
.stars-img { text-align: center; margin-top: 40px; }
.stars-img img { max-width: 220px; margin: 0 auto; }

/* ===== PRICING ===== */
.pricing { padding: 80px 0; background: white; }
.pricing-2 { background: var(--light); }
.countdown-box { display: flex; align-items: center; justify-content: center; gap: 20px; background: linear-gradient(135deg, #1E40AF, #06B6D4); color: white; padding: 20px 40px; border-radius: var(--radius); margin-bottom: 48px; flex-wrap: wrap; font-weight: 600; }
.timer { display: flex; align-items: center; gap: 8px; }
.time-block { background: rgba(255,255,255,0.2); border-radius: var(--radius-sm); padding: 12px 20px; text-align: center; min-width: 70px; }
.time-block span { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.time-block small { font-size: 0.7rem; opacity: 0.8; font-weight: 600; letter-spacing: 1px; }
.colon { font-size: 2rem; font-weight: 900; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.price-card { background: var(--light); border: 2px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: all 0.3s ease; position: relative; }
.price-card.popular { background: linear-gradient(135deg, #1E40AF, #0891b2); color: white; border-color: transparent; box-shadow: 0 20px 60px rgba(30,64,175,0.4); transform: scale(1.04); }
.price-card.popular h3, .price-card.popular .supply, .price-card.popular .per-bottle { color: white; }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: white; font-size: 0.8rem; font-weight: 700; padding: 5px 18px; border-radius: 50px; white-space: nowrap; }
.price-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; color: var(--secondary); margin-bottom: 8px; }
.price-card.popular .price-label { color: rgba(255,255,255,0.7); }
.price-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; margin-bottom: 4px; }
.supply { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; }
.price-card img { max-width: 140px; margin: 0 auto 20px; }
.price-amount { font-size: 1.8rem; margin-bottom: 8px; }
.price-amount del { font-size: 1rem; opacity: 0.5; margin-right: 8px; }
.price-amount strong { color: var(--gold); }
.per-bottle { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; font-weight: 600; }
.free-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 16px; }
.free-badges span { background: rgba(16,185,129,0.15); color: #059669; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; border: 1px solid rgba(16,185,129,0.3); }
.price-card.popular .free-badges span { background: rgba(255,255,255,0.2); color: white; border-color: rgba(255,255,255,0.3); }
.price-cta { margin: 0 auto; max-width: 100%; flex-direction: row; }
.payment-img { max-width: 160px; margin: 12px auto 0; opacity: 0.7; }

/* ===== BONUS ===== */
.bonus-section { padding: 80px 0; background: var(--dark); color: white; }
.bonus-section .section-title { color: white; }
.bonus-section .section-sub { color: rgba(255,255,255,0.7); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bonus-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: all 0.3s ease; }
.bonus-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.bonus-num { display: inline-block; background: var(--gradient-gold); color: white; font-size: 0.8rem; font-weight: 700; padding: 5px 16px; border-radius: 50px; margin-bottom: 20px; letter-spacing: 1px; }
.bonus-card img { max-width: 200px; margin: 0 auto 24px; border-radius: var(--radius-sm); }
.bonus-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.bonus-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.bonus-value { margin-top: 16px; font-size: 1rem; }
.bonus-value del { opacity: 0.5; margin-right: 8px; }
.bonus-value strong { color: var(--gold); font-size: 1.1rem; }

/* ===== INGREDIENTS ===== */
.ingredients { padding: 80px 0; background: white; }
.ingredients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ingredient-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: all 0.3s ease; }
.ingredient-card:hover { border-color: var(--secondary); box-shadow: 0 6px 24px rgba(59,130,246,0.15); transform: translateY(-3px); }
.ingredient-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.ingredient-card p { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 12px; }
.ingredient-benefit { font-size: 0.8rem; font-weight: 600; color: #059669; background: rgba(16,185,129,0.1); padding: 6px 12px; border-radius: var(--radius-sm); }

/* ===== SCIENCE ===== */
.science { padding: 80px 0; background: var(--light); }
.science-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.science-card { background: white; border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--secondary); box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.science-icon { font-size: 2rem; margin-bottom: 16px; }
.science-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.5; }
.science-card p { font-size: 0.9rem; color: var(--text); line-height: 1.8; }

/* ===== GUARANTEE ===== */
.guarantee { padding: 80px 0; background: white; }
.guarantee-grid { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }
.guarantee-image img { max-width: 280px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }
.guarantee-point { display: flex; gap: 20px; margin-bottom: 28px; }
.g-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.guarantee-point h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.guarantee-point p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }
.guarantee-content .cta-btn { margin-top: 12px; }

/* ===== BENEFITS ===== */
.benefits { padding: 80px 0; background: linear-gradient(135deg, #0f172a, #1E40AF); color: white; }
.benefits .section-title { color: white; }
.benefits .section-sub { color: rgba(255,255,255,0.7); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.benefit-item { display: flex; gap: 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px; transition: all 0.3s ease; }
.benefit-item:hover { background: rgba(255,255,255,0.14); transform: translateX(6px); }
.benefit-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.benefit-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.benefit-item p { font-size: 0.88rem; opacity: 0.8; line-height: 1.7; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--light); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: white; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.faq-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; text-align: left; font-size: 1rem; font-weight: 600; color: var(--dark); min-height: 60px; gap: 16px; transition: background 0.2s; }
.faq-header:hover { background: var(--light); }
.faq-icon { width: 22px; height: 22px; stroke: var(--secondary); fill: none; stroke-width: 2.5; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body.open { max-height: 200px; }
.faq-body p { padding: 0 24px 20px; color: var(--text); line-height: 1.8; font-size: 0.95rem; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 100px 0; background: linear-gradient(135deg, #0f172a 0%, #1E40AF 60%, #0891b2 100%); color: white; position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(6,182,212,0.2) 0%, transparent 70%); }
.final-cta-content { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.final-img img { max-width: 320px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); }
.final-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin-bottom: 8px; }
.final-text h3 { font-size: clamp(18px, 2.5vw, 26px); opacity: 0.9; margin-bottom: 24px; font-weight: 600; }
.final-price { margin-bottom: 24px; }
.final-price del { display: block; opacity: 0.5; font-size: 1rem; }
.final-price strong { display: block; font-size: 2rem; color: var(--gold); font-weight: 900; }
.final-text p { font-size: 1rem; opacity: 0.9; margin-bottom: 28px; }
.trust-row { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; font-size: 0.9rem; opacity: 0.85; }

/* ===== FOOTER ===== */
.footer { background: #0f172a; color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: white; }
.footer-col p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: white; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-legal-links { display: flex; flex-direction: column; gap: 10px; }
.footer-legal-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--accent); }
.footer-legal-links span { opacity: 0.3; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: all 0.3s; }
.social-links a svg { width: 18px; height: 18px; }
.social-links a:hover { background: var(--secondary); transform: translateY(-3px); }
.footer-disclaimer { padding: 24px 0; text-align: center; }
.footer-disclaimer p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 900px; margin: 0 auto 12px; }
.copyright { font-size: 0.8rem !important; }

/* ===== SCROLL TO TOP ===== */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: var(--gradient); color: white; border-radius: 50%; font-size: 1.2rem; font-weight: 700; box-shadow: 0 8px 20px rgba(30,64,175,0.4); transition: all 0.3s; z-index: 999; display: none; align-items: center; justify-content: center; }
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(30,64,175,0.6); }

/* ===== PURCHASE POPUP ===== */
.purchase-popup { position: fixed; bottom: 24px; left: 24px; background: white; border-radius: var(--radius); padding: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; z-index: 9998; transform: translateX(-200%); transition: transform 0.5s ease; max-width: 300px; border-left: 4px solid #10B981; }
.purchase-popup.show { transform: translateX(0); }
.purchase-popup img { width: 50px; height: 50px; object-fit: contain; border-radius: var(--radius-sm); }
.popup-text { flex: 1; font-size: 0.85rem; }
.popup-text strong { display: block; font-weight: 700; }
.popup-close { width: 24px; height: 24px; background: var(--border); border-radius: 50%; font-size: 1rem; line-height: 1; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ===== EXIT POPUP ===== */
.exit-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.exit-popup-overlay.show { display: flex; }
.exit-popup { background: white; border-radius: var(--radius); padding: 32px; max-width: 600px; width: 100%; position: relative; }
.exit-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; background: var(--border); border-radius: 50%; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
.exit-close a { color: var(--text); font-size: 1.2rem; font-weight: 700; }
.exit-popup-inner { display: flex; gap: 24px; align-items: center; }
.exit-popup-inner img { max-width: 140px; }
.exit-popup-inner h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 8px; color: var(--dark); }
.exit-popup-inner p { font-size: 0.95rem; color: var(--text); margin-bottom: 12px; }
.exit-popup-inner del { color: var(--text-light); font-size: 0.9rem; display: block; margin-bottom: 12px; }
.exit-cta { max-width: 100%; margin-bottom: 12px; flex-direction: row; }
.exit-skip { display: block; text-align: center; font-size: 0.85rem; color: var(--text-light); padding: 8px; }

/* ===== 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.85); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0) translateX(0) scale(1); }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1023px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .science-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 73px; left: 0; right: 0; background: white; padding: 20px; gap: 16px; border-bottom: 2px solid var(--border); box-shadow: var(--shadow); transform: translateY(-20px); opacity: 0; transition: all 0.3s ease; pointer-events: none; }
  .nav-links.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { border-radius: var(--radius-sm); width: 100%; justify-content: center; }

  .hero { padding: 90px 20px 50px; min-height: auto; }
  .hero-container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-image { order: -1; }
  .product-hero-img { width: 220px; }
  .hero-glow { width: 200px; height: 200px; }
  .hero-stats { justify-content: center; }
  .hero-trust { justify-content: center; }
  .cta-btn { font-size: 1rem; padding: 16px 24px; }
  .cta-hero, .cta-final { font-size: 1rem; }

  .badges-grid { grid-template-columns: 1fr; }
  .what-is-grid { grid-template-columns: 1fr; }
  .what-is-image { order: -1; }
  .what-is-image img { max-width: 280px; }
  
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  
  .bonus-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  
  .guarantee-grid { grid-template-columns: 1fr; text-align: center; }
  .guarantee-image img { max-width: 200px; margin: 0 auto; }
  .guarantee-point { flex-direction: column; align-items: center; text-align: center; }
  
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item { flex-direction: column; text-align: center; }
  
  .final-cta-content { grid-template-columns: 1fr; text-align: center; }
  .final-img img { max-width: 220px; margin: 0 auto; }
  .trust-row { justify-content: center; }
  
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .social-links { justify-content: center; }
  .footer-legal-links { align-items: center; }
  
  .countdown-box { flex-direction: column; padding: 20px; text-align: center; }
  .exit-popup-inner { flex-direction: column; text-align: center; }
  .exit-popup-inner img { max-width: 100px; margin: 0 auto; }
  .purchase-popup { left: 12px; right: 12px; max-width: none; bottom: 12px; }
}

@media (min-width: 576px) and (max-width: 767px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid .price-card:last-child { grid-column: span 2; max-width: 340px; margin: 0 auto; }
}

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