/* ===== GLPro Styles - Medical Professional Theme ===== */
:root {
  --primary: #1a6b3c;
  --primary-dark: #0f4826;
  --primary-light: #2d9e5f;
  --accent: #f59e0b;
  --accent2: #10b981;
  --dark: #0d1f14;
  --text: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --bg-light: #f0faf5;
  --bg-card: #ffffff;
  --border: #d1fae5;
  --shadow: 0 4px 24px rgba(26,107,60,0.10);
  --shadow-lg: 0 12px 48px rgba(26,107,60,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --font-h: 'Montserrat', sans-serif;
  --font-b: 'Open Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITY ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.accent { color: var(--primary); }
.section-title { font-family: var(--font-h); font-size: clamp(24px, 4vw, 38px); font-weight: 800; text-align: center; margin-bottom: 12px; color: var(--dark); line-height: 1.2; }
.section-sub { text-align: center; color: var(--text-light); font-size: clamp(15px, 2vw, 18px); margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); font-family: var(--font-h); font-weight: 700;
  font-size: clamp(15px, 2vw, 18px); padding: 16px 32px;
  border-radius: 50px; border: none; cursor: pointer;
  transition: all var(--transition); min-height: 52px;
  box-shadow: 0 6px 24px rgba(26,107,60,0.35);
  text-align: center; gap: 8px;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(26,107,60,0.45); }
.btn-primary:active { transform: scale(0.98); }
.pulse-btn { animation: pulseShadow 2.5s infinite; }
@keyframes pulseShadow { 0%,100%{box-shadow:0 6px 24px rgba(26,107,60,0.35)} 50%{box-shadow:0 6px 40px rgba(26,107,60,0.6),0 0 0 8px rgba(26,107,60,0.1)} }
.bounce-btn { animation: bounceBtn 3s infinite; }
@keyframes bounceBtn { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ===== NOTIF BAR ===== */
.notif-bar { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; text-align: center; padding: 10px 20px; font-family: var(--font-h); font-weight: 600; font-size: 14px; position: relative; z-index: 1001; }
.notif-link { color: var(--accent); margin-left: 8px; font-weight: 700; }

/* ===== NAVBAR ===== */
.navbar { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; max-width: 1200px; margin: 0 auto; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--font-h); font-weight: 600; font-size: 14px; color: var(--text); transition: color var(--transition); white-space: nowrap; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white) !important; padding: 10px 22px; border-radius: 50px; font-size: 14px; box-shadow: 0 4px 16px rgba(26,107,60,0.3); }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(26,107,60,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.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: 90vh; position: relative; display: flex; align-items: center; overflow: hidden; background: linear-gradient(145deg, #f0faf5 0%, #e6f7ef 40%, #d1fae5 100%); }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(26,107,60,0.08) 0%, transparent 60%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 20px 60px; position: relative; z-index: 1; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-bottle-glow { position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(26,107,60,0.15) 0%, transparent 70%); border-radius: 50%; animation: glowPulse 3s ease-in-out infinite; }
@keyframes glowPulse { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.2);opacity:1} }
.hero-bottle { max-height: 480px; width: auto; object-fit: contain; animation: floatBottle 4s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(26,107,60,0.2)); position: relative; z-index: 2; }
@keyframes floatBottle { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-18px) rotate(2deg)} }
.hero-badge { position: absolute; background: var(--white); border-radius: 50px; padding: 8px 16px; font-family: var(--font-h); font-weight: 700; font-size: 13px; box-shadow: var(--shadow-lg); z-index: 3; }
.hero-badge-1 { top: 10%; left: 0; color: var(--primary); animation: badgeBob 3s ease-in-out infinite; }
.hero-badge-2 { bottom: 15%; right: 0; color: var(--primary); animation: badgeBob 3s ease-in-out infinite 1.5s; }
@keyframes badgeBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-tag { display: inline-flex; align-items: center; background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: var(--primary-dark); font-family: var(--font-h); font-weight: 700; font-size: 13px; padding: 8px 18px; border-radius: 50px; margin-bottom: 20px; }
.hero-h1 { font-family: var(--font-h); font-size: clamp(28px, 4vw, 52px); font-weight: 900; line-height: 1.1; margin-bottom: 24px; color: var(--dark); }
.hero-desc { font-size: clamp(15px, 1.8vw, 17px); color: var(--text); margin-bottom: 16px; line-height: 1.8; }
.hero-stats { display: flex; gap: 24px; margin: 28px 0; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-n { display: block; font-family: var(--font-h); font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; color: var(--primary); }
.stat-l { font-size: 12px; color: var(--text-light); font-weight: 600; }
.hero-btn { font-size: clamp(16px, 2vw, 20px); padding: 18px 40px; margin-bottom: 16px; }
.hero-sub { font-size: 13px; color: var(--text-light); }

/* ===== WHY SECTION ===== */
.why-section { padding: 80px 0; background: var(--white); }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.badge-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all var(--transition); animation-delay: var(--delay, 0s); }
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); background: var(--white); }
.badge-icon { font-size: 48px; margin-bottom: 16px; }
.badge-card h3 { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.badge-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== WHAT SECTION ===== */
.what-section { padding: 80px 0; background: var(--bg-light); }
.what-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.what-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.what-content h2 { font-family: var(--font-h); font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin-bottom: 20px; color: var(--dark); }
.what-content p { font-size: 16px; margin-bottom: 16px; line-height: 1.8; color: var(--text); }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 80px 0; background: var(--white); }
.accordion-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.accordion-btn { width: 100%; background: var(--bg-light); border: none; padding: 18px 24px; text-align: left; font-family: var(--font-h); font-weight: 700; font-size: clamp(15px, 2vw, 17px); color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 56px; transition: background var(--transition); }
.accordion-btn::after { content: '+'; font-size: 22px; font-weight: 700; color: var(--primary); flex-shrink: 0; transition: transform var(--transition); }
.accordion-item.active .accordion-btn { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: var(--primary-dark); }
.accordion-item.active .accordion-btn::after { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.accordion-item.active .accordion-body { max-height: 400px; }
.accordion-body p { padding: 20px 24px; font-size: 15px; line-height: 1.8; color: var(--text); border-top: 1px solid var(--border); }

/* ===== REVIEWS ===== */
.reviews-section { padding: 80px 0; background: var(--bg-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--transition); animation-delay: var(--delay, 0s); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); flex-shrink: 0; }
.review-header strong { font-family: var(--font-h); font-size: 15px; color: var(--dark); display: block; }
.review-header span { font-size: 12px; color: var(--text-light); }
.stars { font-size: 14px; margin-top: 2px; }
.review-card p { font-size: 14px; line-height: 1.8; color: var(--text); }

/* ===== PRICING ===== */
.pricing-section { padding: 80px 0; background: linear-gradient(180deg, #0d1f14 0%, #1a3d25 100%); }
.pricing-section .section-title { color: var(--white); }
.pricing-section .section-sub { color: rgba(255,255,255,0.7); }
.pricing-section-2 { background: linear-gradient(180deg, #0f4826 0%, #0d1f14 100%); }
.countdown-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; color: rgba(255,255,255,0.85); font-family: var(--font-h); font-weight: 600; }
.countdown { display: flex; align-items: center; gap: 8px; }
.cd-box { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 12px 18px; text-align: center; min-width: 64px; }
.cd-box span { display: block; font-family: var(--font-h); font-size: clamp(24px, 4vw, 36px); font-weight: 900; color: var(--accent); line-height: 1; }
.cd-box small { color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 600; letter-spacing: 1px; }
.cd-sep { font-size: 28px; font-weight: 900; color: var(--accent); margin-top: -4px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: center; margin-bottom: 32px; }
.price-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px 20px; text-align: center; color: var(--white); transition: all var(--transition); position: relative; animation-delay: var(--delay, 0s); }
.price-card.popular { background: rgba(255,255,255,0.12); border: 2px solid var(--accent); transform: scale(1.05); }
.popular-badge { background: var(--accent); color: var(--dark); font-family: var(--font-h); font-size: 12px; font-weight: 800; padding: 6px 16px; border-radius: 50px; margin-bottom: 12px; display: inline-block; }
.price-label { font-family: var(--font-h); font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--accent); margin-bottom: 6px; }
.price-qty { font-family: var(--font-h); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.price-supply { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.price-card img { width: 140px; height: 140px; object-fit: contain; margin: 0 auto 20px; }
.price-amount { font-family: var(--font-h); font-size: 28px; font-weight: 900; margin-bottom: 6px; }
.price-amount del { color: rgba(255,255,255,0.4); font-size: 18px; margin-right: 8px; }
.price-per { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.badge-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.free-badge { background: var(--accent2); color: #fff; font-family: var(--font-h); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.price-btn { width: 100%; margin-bottom: 12px; }
.price-secure { font-size: 12px; color: rgba(255,255,255,0.5); }
.stars-row { text-align: center; color: rgba(255,255,255,0.85); font-family: var(--font-h); font-size: 15px; }

/* ===== BONUS ===== */
.bonus-section { padding: 80px 0; background: var(--bg-light); }
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 800px; margin: 0 auto; }
.bonus-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; text-align: center; box-shadow: var(--shadow); border: 2px solid var(--border); transition: all var(--transition); }
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bonus-num { background: var(--primary); color: #fff; font-family: var(--font-h); font-size: 12px; font-weight: 800; padding: 4px 14px; border-radius: 50px; display: inline-block; margin-bottom: 16px; letter-spacing: 1px; }
.bonus-img-wrap { margin-bottom: 20px; }
.bonus-img-placeholder { background: var(--bg-light); border-radius: var(--radius-sm); padding: 32px; font-size: 40px; color: var(--primary); line-height: 1.5; font-size: 32px; }
.bonus-card h3 { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.bonus-card p { font-size: 14px; color: var(--text-light); line-height: 1.8; }

/* ===== INGREDIENTS ===== */
.ingredients-section { padding: 80px 0; background: var(--white); }
.ing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.ing-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px; transition: all var(--transition); animation-delay: var(--delay, 0s); }
.ing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--white); }
.ing-icon { font-size: 32px; margin-bottom: 12px; }
.ing-card h3 { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.ing-card p { font-size: 14px; color: var(--text); line-height: 1.8; }

/* ===== SCIENCE ===== */
.science-section { padding: 80px 0; background: var(--bg-light); }
.science-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; }
.science-card { background: var(--white); border-radius: var(--radius-sm); padding: 28px; border-left: 4px solid var(--primary); box-shadow: var(--shadow); transition: all var(--transition); }
.science-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.science-card h3 { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.science-card p { font-size: 14px; color: var(--text); line-height: 1.8; }
.science-disclaimer { font-size: 12px; color: var(--text-light); text-align: center; border-top: 1px solid var(--border); padding-top: 20px; }

/* ===== GUARANTEE ===== */
.guarantee-section { padding: 80px 0; background: var(--white); }
.guarantee-inner { display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: center; }
.guarantee-image img { max-width: 260px; }
.guarantee-content h2 { font-family: var(--font-h); font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.guarantee-content > p { font-size: 16px; color: var(--text); margin-bottom: 24px; line-height: 1.8; }
.guarantee-point { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.gp-icon { font-size: 28px; flex-shrink: 0; }
.guarantee-point h4 { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.guarantee-point p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.guarantee-content .btn-primary { margin-top: 12px; }

/* ===== BENEFITS ===== */
.benefits-section { padding: 80px 0; background: linear-gradient(145deg, #f0faf5, #e6f7ef); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.benefit-item { display: flex; gap: 16px; background: var(--white); border-radius: var(--radius-sm); padding: 20px; box-shadow: var(--shadow); transition: all var(--transition); animation-delay: var(--delay, 0s); }
.benefit-item:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.benefit-check { font-size: 22px; flex-shrink: 0; }
.benefit-item strong { font-family: var(--font-h); font-size: 15px; font-weight: 700; color: var(--dark); display: block; margin-bottom: 4px; }
.benefit-item p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; background: var(--white); }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-btn { width: 100%; background: var(--bg-light); border: none; padding: 18px 24px; text-align: left; font-family: var(--font-h); font-weight: 700; font-size: clamp(14px, 2vw, 16px); color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 56px; transition: background var(--transition); }
.faq-btn::after { content: '+'; font-size: 22px; font-weight: 700; color: var(--primary); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.active .faq-btn { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: var(--primary-dark); }
.faq-item.active .faq-btn::after { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-body { max-height: 300px; }
.faq-body p { padding: 20px 24px; font-size: 15px; line-height: 1.8; color: var(--text); border-top: 1px solid var(--border); }

/* ===== FINAL CTA ===== */
.final-cta-section { padding: 100px 0; background: var(--dark); position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(26,107,60,0.3) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.1) 0%, transparent 50%); pointer-events: none; }
.final-cta-inner { display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.final-bottle { max-width: 280px; animation: floatBottle 4s ease-in-out infinite; filter: drop-shadow(0 20px 60px rgba(26,107,60,0.4)); }
.final-cta-content { color: var(--white); }
.final-ribbon { background: linear-gradient(135deg, var(--accent), #ef4444); color: #fff; font-family: var(--font-h); font-size: 13px; font-weight: 800; padding: 8px 20px; border-radius: 50px; display: inline-block; margin-bottom: 20px; letter-spacing: 1px; }
.final-cta-content h2 { font-family: var(--font-h); font-size: clamp(26px, 4vw, 42px); font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.final-cta-content p { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 28px; }
.final-price { margin-bottom: 28px; }
.old-price { display: block; font-size: 18px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.new-price { display: block; font-family: var(--font-h); font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; color: var(--accent); }
.final-btn { font-size: clamp(16px, 2.5vw, 20px); padding: 20px 44px; margin-bottom: 20px; }
.final-guarantees { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: #0d1f14; color: rgba(255,255,255,0.8); padding-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 20px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { font-size: 22px; transition: transform var(--transition); display: block; }
.social-icons a:hover { transform: scale(1.2); }
.footer-links h4, .footer-legal-col h4 { font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links h4 { display: block; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); padding: 4px 0; }
.footer-links a:hover { color: var(--accent2); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.legal-link { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.legal-link:hover { color: var(--accent2); }
.link-separator { color: rgba(255,255,255,0.25); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-disclaimer p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 8px; }
.footer-legal-bar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-legal-bar a { color: rgba(255,255,255,0.75); font-family: var(--font-h); font-size: 13px; font-weight: 600; transition: color var(--transition); }
.footer-legal-bar a:hover { color: var(--accent2); }
.footer-legal-bar span { color: rgba(255,255,255,0.25); }
.footer-copy { text-align: center; }
.footer-copy a { color: var(--accent2); }

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

/* ===== PURCHASE NOTIFICATION ===== */
.purchase-notif { position: fixed; bottom: 20px; left: 20px; background: var(--white); border-radius: var(--radius-sm); padding: 14px 16px; box-shadow: var(--shadow-lg); z-index: 950; max-width: 280px; opacity: 0; transform: translateX(-120%); transition: all var(--transition); border-left: 4px solid var(--primary); }
.purchase-notif.show { opacity: 1; transform: translateX(0); }
.notif-content { display: flex; align-items: center; gap: 12px; }
.notif-avatar { font-size: 28px; flex-shrink: 0; }
.notif-content strong { font-family: var(--font-h); font-size: 13px; color: var(--dark); display: block; }
.notif-content p { font-size: 12px; color: var(--text-light); }
.notif-close { position: absolute; top: 8px; right: 8px; background: none; border: none; cursor: pointer; font-size: 12px; color: var(--text-light); padding: 4px; }

/* ===== POPUP ===== */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.popup-overlay.show { display: flex; }
.popup-modal { background: var(--white); border-radius: var(--radius); padding: 40px 32px; max-width: 420px; width: 100%; text-align: center; position: relative; animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes popIn { from{transform:scale(0.7);opacity:0} to{transform:scale(1);opacity:1} }
.popup-close { position: absolute; top: 12px; right: 12px; background: var(--bg-light); border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 14px; color: var(--text); }
.popup-emoji { font-size: 48px; margin-bottom: 12px; }
.popup-modal h3 { font-family: var(--font-h); font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.popup-modal p { font-size: 15px; color: var(--text); margin-bottom: 24px; line-height: 1.7; }
.popup-btn { width: 100%; margin-bottom: 12px; }
.popup-skip { display: block; font-size: 13px; color: var(--primary); font-weight: 600; cursor: pointer; }

/* ===== ANIMATIONS ===== */
[data-anim] { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--delay, 0s); }
[data-anim="slide-up"] { transform: translateY(40px); }
[data-anim="fade-left"] { transform: translateX(-40px); }
[data-anim="fade-right"] { transform: translateX(40px); }
[data-anim="zoom-in"] { transform: scale(0.85); }
[data-anim].animated { opacity: 1; transform: none; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-inner { gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 999; transform: translateX(100%); transition: transform var(--transition); }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { font-size: 18px; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px 40px; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-height: 300px; }
  .hero-stats { justify-content: center; }
  .hero-btn { width: 100%; }
  .hero-badge-1 { left: 10%; top: 5%; }
  .hero-badge-2 { right: 10%; bottom: 5%; }
  .what-inner { grid-template-columns: 1fr; gap: 32px; }
  .what-image { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card.popular { transform: none; }
  .bonus-grid { grid-template-columns: 1fr; }
  .science-grid { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .guarantee-image { display: flex; justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .final-cta-image { display: flex; justify-content: center; order: -1; }
  .final-bottle { max-width: 200px; }
  .final-guarantees { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .social-icons { justify-content: center; }
  .footer-legal-links { justify-content: center; }
  .purchase-notif { left: 10px; right: 10px; max-width: none; }
}
@media (max-width: 576px) {
  .badges-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 26px; }
  .hero-badge { display: none; }
  .what-section, .how-section, .reviews-section, .bonus-section, .ingredients-section, .science-section, .guarantee-section, .benefits-section, .faq-section { padding: 56px 0; }
  .why-section, .final-cta-section { padding: 56px 0; }
  .pricing-section { padding: 60px 0; }
  .cd-box span { font-size: 28px; }
  .ing-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
