/* ===========================
   BOOSTER XT - styles.css
   Design: Bold & Premium Dark
=========================== */

:root {
  --primary: #c8102e;
  --primary-dark: #9b0c23;
  --accent: #f5a623;
  --accent2: #e8552a;
  --dark: #0a0a0f;
  --dark2: #12121a;
  --dark3: #1a1a26;
  --card-bg: #16161f;
  --text: #f0f0f5;
  --text-muted: #9a9ab0;
  --border: rgba(255,255,255,0.08);
  --gradient: linear-gradient(135deg, #c8102e, #f5a623);
  --gradient2: linear-gradient(135deg, #e8552a, #c8102e);
  --shadow: 0 20px 60px rgba(200,16,46,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --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%; }
* { -webkit-tap-highlight-color: transparent; }
body { font-family: var(--font-body); background: var(--dark); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
input, select, textarea { font-size: 16px; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(26px, 5vw, 52px); }
h2 { font-size: clamp(22px, 4vw, 40px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }

/* ---- UTILITIES ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-title { font-family: var(--font-head); font-weight: 900; text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 17px; margin-bottom: 48px; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: 16px; cursor: pointer; border: none; transition: all 0.3s ease; min-height: 52px; text-decoration: none; white-space: nowrap; }
.btn-nav { background: var(--gradient); color: #fff; padding: 10px 22px; font-size: 14px; }
.btn-nav:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(200,16,46,0.5); }
.btn-hero { background: var(--gradient); color: #fff; font-size: 18px; padding: 18px 40px; box-shadow: var(--shadow); }
.btn-hero:hover { transform: scale(1.05); box-shadow: 0 30px 80px rgba(200,16,46,0.45); }
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover { transform: scale(1.05); box-shadow: var(--shadow); }
.btn-price { background: var(--gradient); color: #fff; width: 100%; font-size: 15px; }
.btn-price:hover { transform: scale(1.05); box-shadow: var(--shadow); }
.btn-price--popular { font-size: 16px; }
.btn-final { background: linear-gradient(135deg, #f5a623, #c8102e); color: #fff; font-size: 18px; padding: 20px 42px; box-shadow: 0 20px 60px rgba(245,166,35,0.35); }
.btn-final:hover { transform: scale(1.05); box-shadow: 0 30px 80px rgba(245,166,35,0.5); }
@media (max-width: 575px) {
  .btn-hero, .btn-final { width: 100%; font-size: 16px; padding: 16px 24px; }
}

/* ---- FADE-UP ANIMATION ---- */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   NAVIGATION
=========================== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,10,15,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: all 0.3s ease; }
.navbar.scrolled { background: rgba(10,10,15,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 38px; height: 38px; object-fit: contain; border-radius: 8px; }
.logo-text { font-family: var(--font-head); font-weight: 900; font-size: 22px; letter-spacing: -0.5px; }
.logo-accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--text-muted); transition: color 0.3s; }
.nav-links a:hover { color: var(--text); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; display: block; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark2); padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); animation: slideDown 0.3s ease; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 15px; color: var(--text); }
  .btn-nav { width: 100%; justify-content: center; }
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ===========================
   HERO SECTION
=========================== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 0 60px; position: relative; overflow: hidden; background: var(--dark); }
.hero-bg-anim { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; animation: orbFloat 8s ease-in-out infinite; }
.hero-orb-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--accent); bottom: 0; left: -50px; animation-delay: 3s; }
.hero-orb-3 { width: 200px; height: 200px; background: var(--accent2); top: 50%; right: 30%; animation-delay: 6s; }
@keyframes orbFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-img-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(200,16,46,0.3), transparent); border-radius: 50%; animation: pulseGlow 3s ease-in-out infinite; }
@keyframes pulseGlow { 0%,100%{transform:scale(1);opacity:0.6;} 50%{transform:scale(1.2);opacity:1;} }
.hero-bottle { max-width: 380px; width: 100%; position: relative; z-index: 2; animation: bottleFloat 4s ease-in-out infinite; filter: drop-shadow(0 30px 60px rgba(200,16,46,0.4)); }
@keyframes bottleFloat { 0%,100%{transform:translateY(0) rotate(-2deg);} 50%{transform:translateY(-20px) rotate(2deg);} }
.hero-badge-float { position: absolute; background: var(--gradient); color: #fff; padding: 8px 16px; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: 13px; z-index: 3; animation: badgeFloat 3s ease-in-out infinite; box-shadow: 0 8px 24px rgba(200,16,46,0.4); }
.hero-badge-float { top: 10%; right: -10px; }
.hero-badge-float--2 { top: auto; bottom: 10%; left: -10px; animation-delay: 1.5s; background: linear-gradient(135deg,#1a1a26,#2a2a3a); border: 1px solid var(--border); }
@keyframes badgeFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.hero-content { display: flex; flex-direction: column; gap: 20px; }
.hero-tag { display: inline-block; background: rgba(200,16,46,0.15); border: 1px solid rgba(200,16,46,0.3); color: var(--accent); padding: 8px 18px; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: 13px; width: fit-content; }
.hero-h1 { font-family: var(--font-head); font-weight: 900; font-size: clamp(28px, 4vw, 52px); line-height: 1.15; }
.hero-desc { color: rgba(240,240,245,0.85); line-height: 1.75; font-size: 16px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; font-family: var(--font-head); font-weight: 600; color: var(--text-muted); }
.hero-trust span { display: flex; align-items: center; gap: 5px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { order: -1; }
  .hero-bottle { max-width: 260px; }
  .hero-badge-float { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 90px 0 50px; }
  .hero-bottle { max-width: 220px; }
  .hero-trust { flex-direction: column; gap: 8px; }
}

/* ===========================
   WHY CHOOSE US
=========================== */
.why-choose { padding: 100px 0; background: var(--dark2); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.why-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: 0 20px 60px rgba(200,16,46,0.3); }
.why-icon-wrap { width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 50%; background: rgba(200,16,46,0.1); display: flex; align-items: center; justify-content: center; }
.why-icon { width: 50px; height: 50px; object-fit: contain; margin: 0 auto; }
.why-icon-ph { font-size: 36px; }
.why-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 15px; margin-bottom: 12px; letter-spacing: 0.5px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }

/* ===========================
   WHAT IS
=========================== */
.what-is { padding: 100px 0; background: var(--dark); }
.what-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-img img { border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.5); width: 100%; }
.what-content h2 { margin-bottom: 24px; }
.what-content p { color: rgba(240,240,245,0.85); margin-bottom: 16px; line-height: 1.8; }
.what-content .btn-primary { margin-top: 16px; }
@media (max-width: 767px) {
  .what-inner { grid-template-columns: 1fr; }
  .what-img { order: -1; }
}

/* ===========================
   HOW IT WORKS
=========================== */
.how-it-works { padding: 100px 0; background: var(--dark2); }
.accordion-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.accordion-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; color: var(--text); font-family: var(--font-head); font-weight: 700; font-size: 16px; cursor: pointer; min-height: 60px; text-align: left; gap: 12px; transition: background 0.3s; }
.accordion-btn:hover { background: rgba(200,16,46,0.08); }
.accordion-btn.active { color: var(--accent); }
.acc-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s ease; }
.accordion-btn.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; }
.accordion-body p { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.8; font-size: 15px; }

/* ===========================
   REVIEWS
=========================== */
.reviews { padding: 100px 0; background: var(--dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(200,16,46,0.2); }
.review-top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.reviewer-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); flex-shrink: 0; }
.reviewer-ph { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 18px; flex-shrink: 0; }
.review-top strong { font-family: var(--font-head); font-weight: 700; font-size: 16px; display: block; }
.review-top span { font-size: 13px; color: var(--text-muted); }
.stars { font-size: 14px; margin-top: 2px; }
.review-card p { font-size: 15px; color: rgba(240,240,245,0.85); line-height: 1.8; }
@media (max-width: 767px) { .reviews-grid { grid-template-columns: 1fr; } }
@media (min-width: 576px) and (max-width: 767px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===========================
   PRICING
=========================== */
.pricing { padding: 100px 0; background: var(--dark2); }
.pricing-2 { background: var(--dark); }
.countdown-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.countdown-label { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--accent); }
.countdown-timer { display: flex; align-items: center; gap: 8px; background: var(--dark3); border: 1px solid rgba(245,166,35,0.3); border-radius: var(--radius-sm); padding: 12px 24px; }
.time-block { display: flex; flex-direction: column; align-items: center; min-width: 50px; }
.time-block span { font-family: var(--font-head); font-weight: 900; font-size: 40px; color: var(--accent); line-height: 1; }
.time-block small { font-size: 10px; font-family: var(--font-head); font-weight: 700; color: var(--text-muted); letter-spacing: 1px; }
.time-sep { font-family: var(--font-head); font-weight: 900; font-size: 36px; color: var(--accent); margin-bottom: 14px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.price-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; display: flex; flex-direction: column; align-items: center; gap: 14px; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.price-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(200,16,46,0.25); }
.price-card--popular { border-color: var(--accent); box-shadow: 0 0 40px rgba(245,166,35,0.2); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #fff; padding: 5px 18px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; font-size: 12px; white-space: nowrap; }
.price-label { font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: 2px; color: var(--text-muted); }
.price-qty { font-family: var(--font-head); font-weight: 900; font-size: 22px; }
.price-days { font-size: 14px; color: var(--text-muted); }
.price-img { max-width: 140px; object-fit: contain; }
.price-amount { display: flex; align-items: center; gap: 12px; }
.price-old { font-size: 18px; color: var(--text-muted); text-decoration: line-through; }
.price-new { font-family: var(--font-head); font-weight: 900; font-size: 36px; color: var(--primary); }
.price-per { font-size: 13px; color: var(--text-muted); font-family: var(--font-head); font-weight: 600; }
.price-badges { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.badge-free { background: rgba(200,16,46,0.12); border: 1px solid rgba(200,16,46,0.3); color: var(--accent); padding: 5px 12px; border-radius: 6px; font-family: var(--font-head); font-weight: 700; font-size: 12px; text-align: center; }
.payment-icons { max-width: 180px; opacity: 0.7; }
.rating-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--text-muted); }
.stars-img { max-width: 120px; }
.star-ph { font-size: 22px; }
@media (max-width: 767px) { .pricing-grid { grid-template-columns: 1fr; } }
@media (min-width: 576px) and (max-width: 767px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .time-block span { font-size: 32px; }
  .countdown-wrap { gap: 10px; }
}

/* ===========================
   BONUS
=========================== */
.bonus { padding: 100px 0; background: var(--dark); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bonus-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
.bonus-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(245,166,35,0.15); }
.bonus-card img { width: 100%; height: 220px; object-fit: cover; }
.bonus-info { padding: 28px; flex: 1; }
.bonus-num { font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: 2px; color: var(--accent); margin-bottom: 8px; }
.bonus-info h3 { margin-bottom: 12px; font-size: 20px; }
.bonus-info p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.bonus-val { font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.val-old { color: var(--text-muted); text-decoration: line-through; }
.val-free { color: #10b981; font-size: 17px; }
@media (max-width: 767px) { .bonus-grid { grid-template-columns: 1fr; } }

/* ===========================
   INGREDIENTS
=========================== */
.ingredients { padding: 100px 0; background: var(--dark2); }
.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ing-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 28px 24px; transition: transform 0.3s, box-shadow 0.3s; }
.ing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(200,16,46,0.2); border-color: rgba(200,16,46,0.3); }
.ing-icon { font-size: 36px; margin-bottom: 14px; }
.ing-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 16px; margin-bottom: 10px; }
.ing-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
@media (max-width: 991px) { .ing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .ing-grid { grid-template-columns: 1fr; } }

/* ===========================
   SCIENCE
=========================== */
.science { padding: 100px 0; background: var(--dark); }
.science-list { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: 0 auto; }
.science-item { background: var(--card-bg); border: 1px solid var(--border); border-left: 3px solid var(--primary); border-radius: var(--radius-sm); padding: 28px 32px; transition: transform 0.3s; }
.science-item:hover { transform: translateX(6px); }
.science-item h3 { font-family: var(--font-head); font-weight: 800; font-size: 18px; margin-bottom: 12px; }
.science-item p { color: var(--text-muted); line-height: 1.8; font-size: 15px; }

/* ===========================
   GUARANTEE
=========================== */
.guarantee { padding: 100px 0; background: var(--dark2); }
.guarantee-inner { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }
.guarantee-img img { max-width: 280px; border-radius: var(--radius); }
.guarantee-intro { color: var(--text-muted); margin-bottom: 24px; font-size: 17px; }
.guarantee-point { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.guarantee-check { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.guarantee-point h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.guarantee-point p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
@media (max-width: 767px) {
  .guarantee-inner { grid-template-columns: 1fr; }
  .guarantee-img { text-align: center; }
  .guarantee-img img { max-width: 200px; margin: 0 auto; }
}

/* ===========================
   BENEFITS
=========================== */
.benefits { padding: 100px 0; background: var(--dark); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px; transition: transform 0.3s, border-color 0.3s; }
.benefit-item:hover { transform: translateY(-4px); border-color: rgba(200,16,46,0.4); }
.benefit-icon { font-size: 32px; flex-shrink: 0; }
.benefit-item h3 { font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.benefit-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 767px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ===========================
   FAQ
=========================== */
.faq { padding: 100px 0; background: var(--dark2); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; color: var(--text); font-family: var(--font-head); font-weight: 700; font-size: 15px; cursor: pointer; min-height: 60px; text-align: left; gap: 12px; transition: background 0.3s; }
.faq-btn:hover { background: rgba(200,16,46,0.08); }
.faq-btn.active { color: var(--accent); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-btn.active .faq-icon { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body.open { max-height: 300px; }
.faq-body p { padding: 0 24px 20px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* ===========================
   FINAL CTA
=========================== */
.final-cta { padding: 100px 0; background: var(--dark); position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.12; }
.cta-orb-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; left: -200px; animation: orbFloat 10s ease-in-out infinite; }
.cta-orb-2 { width: 400px; height: 400px; background: var(--accent); bottom: -150px; right: -100px; animation: orbFloat 8s ease-in-out infinite reverse; }
.final-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.final-img img { max-width: 400px; width: 100%; animation: bottleFloat 5s ease-in-out infinite; filter: drop-shadow(0 30px 60px rgba(200,16,46,0.35)); }
.final-tag { display: inline-block; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.4); color: var(--accent); padding: 8px 18px; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: 13px; margin-bottom: 16px; }
.final-content h2 { margin-bottom: 24px; font-size: clamp(24px, 4vw, 44px); line-height: 1.2; }
.final-price { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.final-price-old { font-size: 18px; color: var(--text-muted); }
.final-price-new { font-family: var(--font-head); font-weight: 900; font-size: 32px; color: var(--accent); }
.final-content p { color: var(--text-muted); margin-bottom: 24px; font-size: 16px; }
.final-trust { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--text-muted); }
@media (max-width: 900px) {
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-img { text-align: center; }
  .final-img img { max-width: 260px; margin: 0 auto; }
  .final-tag { margin: 0 auto 16px; }
  .final-trust { justify-content: center; }
}

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin: 12px 0 20px; line-height: 1.7; }
.social-icons { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; background: var(--dark3); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.social-link svg { width: 18px; height: 18px; color: var(--text-muted); }
.social-link:hover { background: var(--gradient); border-color: transparent; }
.social-link:hover svg { color: #fff; }
.footer-links-col h4 { font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.footer-links-col a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 10px; transition: color 0.3s; }
.footer-links-col a:hover { color: var(--text); }
.footer-disclaimer { border-top: 1px solid var(--border); padding: 24px 0; text-align: center; }
.footer-disclaimer p { font-size: 12px; color: var(--text-muted); line-height: 1.7; max-width: 900px; margin: 0 auto 12px; }
.footer-legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 12px 0; }
.legal-link { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
.legal-link:hover { color: var(--text); }
.link-separator { color: var(--text-muted); }
.copyright { font-size: 12px; color: rgba(154,154,176,0.6); }
.copyright a { color: var(--accent); }
@media (max-width: 767px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-links-col { text-align: center; }
  .social-icons { justify-content: center; }
}

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--gradient); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 999; box-shadow: 0 8px 24px rgba(200,16,46,0.4); }
.scroll-top svg { width: 22px; height: 22px; color: #fff; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: scale(1.1); }

/* ===========================
   PURCHASE NOTIFICATION
=========================== */
.notif-popup { position: fixed; bottom: 90px; left: 20px; background: var(--dark3); border: 1px solid var(--border); border-left: 3px solid var(--primary); border-radius: var(--radius-sm); padding: 14px 16px; display: flex; align-items: center; gap: 12px; z-index: 998; max-width: 300px; transform: translateX(-150%); transition: transform 0.5s ease; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.notif-popup.show { transform: translateX(0); }
.notif-icon { font-size: 28px; flex-shrink: 0; }
.notif-text { flex: 1; font-size: 13px; line-height: 1.5; }
.notif-text strong { display: block; font-family: var(--font-head); font-weight: 700; }
.notif-cta { background: var(--gradient); color: #fff; padding: 6px 12px; border-radius: 6px; font-family: var(--font-head); font-weight: 700; font-size: 12px; white-space: nowrap; flex-shrink: 0; }
@media (max-width: 480px) { .notif-popup { max-width: calc(100vw - 40px); bottom: 20px; } }

/* ===========================
   POPUP / MODAL
=========================== */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; padding: 20px; }
.popup-overlay.open { opacity: 1; visibility: visible; }
.popup-box { background: var(--dark3); border: 1px solid rgba(200,16,46,0.3); border-radius: var(--radius); padding: 40px 32px; max-width: 460px; width: 100%; text-align: center; position: relative; }
.popup-close { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.1); border: none; color: var(--text); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.popup-close:hover { background: rgba(255,255,255,0.2); }
.popup-badge { background: var(--gradient); color: #fff; display: inline-block; padding: 6px 16px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; font-size: 13px; margin-bottom: 16px; }
.popup-img { max-width: 180px; margin: 0 auto 16px; }
.popup-box h3 { font-family: var(--font-head); font-weight: 900; font-size: 24px; margin-bottom: 10px; }
.popup-box p { color: var(--text-muted); margin-bottom: 20px; }
.popup-btn { width: 100%; }
.popup-guarantee { margin-top: 12px; font-size: 13px; color: var(--text-muted); font-family: var(--font-head); font-weight: 600; }

/* ===========================
   TOUCH FEEDBACK (MOBILE)
=========================== */
@media (hover: none) and (pointer: coarse) {
  .btn:active { transform: scale(0.98); }
}

/* ===========================
   REDUCED MOTION
=========================== */
@media (prefers-reduced-motion: reduce) {
  *, .hero-bottle, .hero-orb, .hero-badge-float, .final-img img { animation: none !important; transition: none !important; }
  .fade-up { opacity: 1; transform: none; }
}
