/* ===========================
   QUALIA MIND - styles.css
   Design: Premium Neural Dark
=========================== */

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #6C63FF;
  --primary-dark: #4f46e5;
  --accent: #00D4FF;
  --accent2: #FF6B6B;
  --gold: #FFD700;
  --dark: #0A0A1A;
  --dark2: #12122A;
  --dark3: #1a1a3e;
  --card-bg: #14143A;
  --text: #E8E8FF;
  --text-muted: #9999CC;
  --white: #ffffff;
  --success: #00E676;
  --gradient: linear-gradient(135deg, #6C63FF 0%, #00D4FF 100%);
  --gradient2: linear-gradient(135deg, #FF6B6B 0%, #FFD700 100%);
  --shadow: 0 20px 60px rgba(108,99,255,0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --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 { color: var(--accent); text-decoration: none; transition: all 0.3s ease; }
input, select, textarea { font-size: 16px; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-title { font-family: var(--font-head); font-size: clamp(26px, 4vw, 42px); font-weight: 800; text-align: center; margin-bottom: 16px; color: var(--white); line-height: 1.2; }
.section-sub { font-size: clamp(16px, 2vw, 18px); text-align: center; color: var(--text-muted); margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; flex-direction: column;
  background: var(--gradient); color: #fff; font-family: var(--font-head); font-weight: 800;
  font-size: 18px; padding: 16px 36px; border-radius: 50px; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.3s ease; box-shadow: 0 8px 30px rgba(108,99,255,0.5);
  min-height: 56px; position: relative; overflow: hidden; letter-spacing: 0.5px;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #00D4FF 0%, #6C63FF 100%);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(108,99,255,0.7); color: #fff; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary strong, .btn-primary img { position: relative; z-index: 1; }
.btn-sub { font-size: 12px; font-weight: 400; opacity: 0.85; margin-top: 4px; font-family: var(--font-body); }
.btn-full { width: 100%; text-align: center; }
.btn-xl { font-size: 22px; padding: 20px 50px; min-height: 64px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,26,0.7); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108,99,255,0.2);
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(10,10,26,0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-head); font-size: 22px; font-weight: 700; }
.nav-logo img { border-radius: 8px; width: 40px; height: 40px; object-fit: contain; }
.nav-logo strong { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text); font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: 0.5px; padding: 6px 0; border-bottom: 2px solid transparent; transition: all 0.3s; text-transform: uppercase; }
.nav-links a:not(.nav-cta):hover { color: var(--accent); border-bottom-color: var(--accent); }
.nav-cta { background: var(--gradient); color: #fff !important; padding: 10px 24px !important; border-radius: 50px !important; border-bottom: none !important; box-shadow: 0 4px 20px rgba(108,99,255,0.4); font-size: 13px !important; }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(108,99,255,0.6) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 25px; height: 3px; background: var(--white); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  background: radial-gradient(ellipse at 30% 50%, rgba(108,99,255,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,212,255,0.15) 0%, transparent 50%),
              var(--dark);
  padding: 100px 0 60px; overflow: hidden;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; animation: float-particle linear infinite; opacity: 0.3; }
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(108,99,255,0.4) 0%, transparent 70%); animation: pulse-glow 3s ease-in-out infinite; }
.hero-bottle { max-width: 380px; width: 100%; position: relative; z-index: 2; animation: bottle-float 4s ease-in-out infinite; filter: drop-shadow(0 30px 60px rgba(108,99,255,0.6)); }
.hero-badge-float {
  position: absolute; background: rgba(14,14,40,0.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(108,99,255,0.4); border-radius: 50px; padding: 8px 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 3; white-space: nowrap;
}
.badge-float-1 { top: 20%; right: -10px; animation: float-badge1 3s ease-in-out infinite; }
.badge-float-2 { top: 55%; right: -20px; animation: float-badge2 3.5s ease-in-out infinite; }
.badge-float-3 { bottom: 20%; left: -10px; animation: float-badge3 4s ease-in-out infinite; }
.hero-tag { display: inline-block; background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.3); color: var(--gold); font-family: var(--font-head); font-weight: 700; font-size: 13px; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.hero-h1 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 52px); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.hero-highlight { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 17px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.hero-desc strong { color: var(--white); }
.hero-stars { font-size: 20px; margin-bottom: 28px; color: var(--gold); }
.hero-stars span { font-size: 14px; color: var(--text-muted); vertical-align: middle; margin-left: 6px; }
.hero-btn { font-size: 20px; padding: 20px 40px; margin-bottom: 20px; width: 100%; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); font-family: var(--font-head); font-weight: 600; }
.hero-trust span { display: flex; align-items: center; gap: 4px; }

/* ---- WHY CHOOSE ---- */
.why-choose { background: var(--dark2); }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.badge-card {
  background: var(--card-bg); border: 1px solid rgba(108,99,255,0.2); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; transition: all 0.4s ease;
  animation-delay: var(--delay, 0s);
}
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow); border-color: rgba(108,99,255,0.5); }
.badge-icon { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 20px; }
.badge-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.badge-card p strong { color: var(--accent); }

/* ---- WHAT IS ---- */
.what-is { background: var(--dark); }
.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-is-image { position: relative; }
.what-is-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.what-is-float { position: absolute; bottom: -20px; right: -20px; background: var(--gradient); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 14px; padding: 12px 24px; border-radius: 50px; box-shadow: var(--shadow); }
.what-is-content h2 { font-family: var(--font-head); font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; margin-bottom: 24px; color: var(--white); }
.what-is-content p { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.what-is-content p strong { color: var(--white); }
.what-is-content .btn-primary { margin-top: 16px; }

/* ---- HOW IT WORKS ---- */
.how-works { background: var(--dark2); }
.accordion-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: var(--card-bg); border: 1px solid rgba(108,99,255,0.2); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s; }
.accordion-item.active { border-color: rgba(108,99,255,0.5); }
.accordion-header {
  width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  background: none; border: none; cursor: pointer; color: var(--white);
  font-family: var(--font-head); font-size: 17px; font-weight: 700; text-align: left;
  min-height: 64px; transition: background 0.3s;
}
.accordion-header:hover { background: rgba(108,99,255,0.1); }
.accordion-header .acc-icon { font-size: 22px; flex-shrink: 0; }
.accordion-header span:nth-child(2) { flex: 1; }
.acc-arrow { font-size: 14px; color: var(--accent); flex-shrink: 0; transition: transform 0.3s; }
.accordion-item.active .acc-arrow { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.accordion-item.active .accordion-body { max-height: 400px; }
.accordion-body p { padding: 0 24px 24px; font-size: 16px; color: var(--text-muted); line-height: 1.8; }
.accordion-body p strong { color: var(--accent); }

/* ---- REVIEWS ---- */
.reviews { background: var(--dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--card-bg); border: 1px solid rgba(108,99,255,0.15); border-radius: var(--radius-lg);
  padding: 32px 28px; text-align: center; transition: all 0.3s;
}
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: rgba(108,99,255,0.4); }
.review-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px; object-fit: cover; border: 3px solid var(--primary); }
.review-stars { font-size: 20px; margin-bottom: 12px; }
.review-card h4 { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.review-card h4 span { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.review-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-top: 12px; }
.review-card p strong { color: var(--white); }

/* ---- PRICING ---- */
.pricing { background: var(--dark2); }
.countdown-wrap { text-align: center; margin-bottom: 40px; }
.countdown-label { font-family: var(--font-head); font-size: 16px; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.countdown { display: inline-flex; align-items: center; gap: 8px; background: var(--card-bg); border: 2px solid rgba(255,107,107,0.4); border-radius: 16px; padding: 16px 32px; }
.cd-block { display: flex; flex-direction: column; align-items: center; min-width: 60px; }
.cd-block span { font-family: var(--font-head); font-size: 42px; font-weight: 900; color: var(--accent2); line-height: 1; }
.cd-block label { font-size: 12px; color: var(--text-muted); letter-spacing: 2px; font-family: var(--font-head); margin-top: 4px; }
.cd-sep { font-size: 40px; font-weight: 900; color: var(--accent2); line-height: 1; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.price-card {
  background: var(--card-bg); border: 2px solid rgba(108,99,255,0.2); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; transition: all 0.3s; position: relative;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price-card.popular { background: linear-gradient(180deg, rgba(108,99,255,0.15) 0%, var(--card-bg) 100%); border-color: var(--primary); transform: scale(1.04); }
.price-card.popular:hover { transform: scale(1.04) translateY(-8px); }
.popular-badge { background: var(--gradient); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 13px; padding: 8px 20px; border-radius: 50px; display: inline-block; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.price-label { font-family: var(--font-head); font-size: 13px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.price-bottles { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.price-supply { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.price-card img:not(.payment-logos) { max-width: 180px; margin: 0 auto 20px; }
.price-amount { font-family: var(--font-head); font-size: 42px; font-weight: 900; color: var(--white); line-height: 1; }
.price-amount span { font-size: 16px; font-weight: 600; color: var(--text-muted); }
.price-total { font-size: 15px; color: var(--text-muted); margin: 8px 0 16px; }
.price-total s { color: var(--accent2); }
.price-badges-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.price-badge { background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.3); color: var(--success); font-family: var(--font-head); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; letter-spacing: 0.5px; }
.payment-logos { max-width: 200px; margin: 14px auto 0; opacity: 0.7; }
.rating-center { text-align: center; margin-top: 40px; }
.rating-center img { max-width: 280px; margin: 0 auto; }

/* ---- BONUS ---- */
.bonus { background: var(--dark); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.bonus-card {
  background: var(--card-bg); border: 2px solid rgba(255,215,0,0.2); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; transition: all 0.3s;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(255,215,0,0.1); border-color: rgba(255,215,0,0.4); }
.bonus-number { background: var(--gradient2); color: #fff; font-family: var(--font-head); font-weight: 900; font-size: 14px; padding: 6px 20px; border-radius: 50px; display: inline-block; margin-bottom: 20px; letter-spacing: 2px; }
.bonus-card img { max-height: 200px; margin: 0 auto 20px; object-fit: contain; }
.bonus-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.bonus-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.bonus-card p strong { color: var(--gold); }

/* ---- INGREDIENTS ---- */
.ingredients { background: var(--dark2); }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ing-card {
  background: var(--card-bg); border: 1px solid rgba(108,99,255,0.15); border-radius: var(--radius);
  padding: 24px; transition: all 0.3s;
}
.ing-card:hover { border-color: rgba(108,99,255,0.4); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.ing-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.ing-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.ing-card p strong { color: var(--white); }

/* ---- SCIENCE ---- */
.science { background: var(--dark); }
.science-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.science-item {
  background: var(--card-bg); border: 1px solid rgba(0,212,255,0.15); border-radius: var(--radius);
  padding: 28px; display: flex; gap: 20px; transition: all 0.3s;
}
.science-item:hover { border-color: rgba(0,212,255,0.4); transform: translateY(-4px); }
.science-icon { font-size: 32px; flex-shrink: 0; }
.science-item h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.science-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.science-item p strong, .science-item p em { color: var(--accent); font-style: normal; font-weight: 700; }

/* ---- GUARANTEE ---- */
.guarantee { background: var(--dark2); }
.guarantee-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.guarantee-image img { border-radius: var(--radius-lg); max-width: 400px; margin: 0 auto; }
.guarantee-content h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.guarantee-intro { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }
.guarantee-intro strong { color: var(--white); }
.guarantee-points { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.gp-item { display: flex; gap: 16px; align-items: flex-start; }
.gp-icon { font-size: 28px; flex-shrink: 0; }
.gp-item h4 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.gp-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.gp-item p strong { color: var(--success); }

/* ---- BENEFITS ---- */
.benefits { background: var(--dark); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.benefit-item {
  background: var(--card-bg); border: 1px solid rgba(0,230,118,0.15); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s;
}
.benefit-item:hover { border-color: rgba(0,230,118,0.4); transform: translateX(6px); }
.benefit-check { font-size: 22px; flex-shrink: 0; }
.benefit-item h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.benefit-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.benefit-item p strong { color: var(--success); }

/* ---- FAQ ---- */
.faq { background: var(--dark2); }

/* ---- FINAL CTA ---- */
.final-cta {
  background: radial-gradient(ellipse at 50% 0%, rgba(108,99,255,0.35) 0%, transparent 70%), var(--dark);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.final-cta-particles { position: absolute; inset: 0; pointer-events: none; }
.final-cta h2 { font-family: var(--font-head); font-size: clamp(28px, 5vw, 52px); font-weight: 900; color: var(--white); margin-bottom: 8px; animation: fadeInUp 0.8s ease; }
.final-cta h3 { font-family: var(--font-head); font-size: clamp(20px, 3vw, 32px); font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 28px; animation: fadeInUp 0.8s 0.2s both ease; }
.final-cta-price { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 24px; animation: fadeInUp 0.8s 0.3s both ease; }
.price-old { font-size: 18px; color: var(--text-muted); font-family: var(--font-head); }
.price-old s { color: var(--accent2); }
.price-new { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--gold); }
.final-img { max-width: 300px; margin: 24px auto; filter: drop-shadow(0 20px 40px rgba(108,99,255,0.5)); animation: bottle-float 4s ease-in-out infinite; }
.final-features { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 14px; color: var(--text-muted); font-family: var(--font-head); font-weight: 600; margin-bottom: 32px; }
.final-small { font-size: 14px; color: var(--accent2); margin-top: 16px; font-family: var(--font-head); font-weight: 700; animation: pulse-text 1.5s ease-in-out infinite; }
.pulse-btn { animation: pulse-button 2s ease-in-out infinite; }

/* ---- FOOTER ---- */
.footer { background: var(--dark2); border-top: 1px solid rgba(108,99,255,0.2); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { border-radius: 8px; object-fit: contain; margin-bottom: 12px; }
.footer-brand h4 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link { font-size: 24px; transition: transform 0.3s; }
.social-link:hover { transform: scale(1.2); }
.footer-links h5 { font-family: var(--font-head); font-size: 14px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: var(--text-muted); padding: 4px 0; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-legal-links { display: flex; flex-direction: column; gap: 8px; }
.legal-link { font-size: 14px; color: var(--text-muted); }
.legal-link:hover { color: var(--accent); }
.link-separator { color: rgba(108,99,255,0.4); }
.footer-disclaimer { background: rgba(255,107,107,0.05); border: 1px solid rgba(255,107,107,0.15); border-radius: var(--radius); padding: 20px; font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-disclaimer strong { color: var(--accent2); }
.footer-bottom { text-align: center; font-size: 13px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid rgba(108,99,255,0.1); }

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed; bottom: 80px; right: 20px; width: 56px; height: 56px;
  background: var(--gradient); color: #fff; border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer; z-index: 999; box-shadow: var(--shadow);
  transition: all 0.3s; opacity: 0; pointer-events: none; transform: translateY(20px);
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { transform: scale(1.1) translateY(-4px); }

/* ---- NOTIFICATION POPUP ---- */
.notif-popup {
  position: fixed; bottom: 20px; left: 20px; z-index: 9999;
  background: var(--card-bg); border: 1px solid rgba(108,99,255,0.4); border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow-card); max-width: 300px;
  transform: translateX(-120%); transition: transform 0.5s ease;
}
.notif-popup.show { transform: translateX(0); }
.notif-inner { display: flex; align-items: center; gap: 12px; }
.notif-icon { font-size: 24px; flex-shrink: 0; }
.notif-text { flex: 1; font-size: 13px; line-height: 1.5; color: var(--text); }
.notif-text strong { color: var(--white); }
.notif-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 16px; padding: 4px; flex-shrink: 0; transition: color 0.3s; }
.notif-close:hover { color: var(--accent); }

/* ---- EXIT POPUP ---- */
.exit-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s; backdrop-filter: blur(4px); }
.exit-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup { background: var(--dark3); border: 2px solid rgba(108,99,255,0.4); border-radius: var(--radius-lg); padding: 48px 40px; max-width: 480px; width: 90%; text-align: center; position: relative; box-shadow: 0 40px 80px rgba(0,0,0,0.8); animation: popup-in 0.4s ease; }
.exit-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.1); border: none; color: var(--white); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 16px; transition: all 0.3s; }
.exit-close:hover { background: var(--accent2); transform: rotate(90deg); }
.exit-tag { background: var(--gradient2); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 13px; padding: 6px 20px; border-radius: 50px; display: inline-block; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.exit-popup h3 { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.exit-popup p { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; }
.exit-popup p strong { color: var(--white); }
.exit-price { font-family: var(--font-head); font-size: 32px; font-weight: 900; margin-bottom: 24px; }
.exit-price s { color: var(--text-muted); font-size: 22px; }
.exit-price strong { color: var(--gold); }
.exit-cta { font-size: 18px; margin-bottom: 16px; }
.exit-skip a { font-size: 13px; color: var(--text-muted); text-decoration: underline; }
.exit-skip a:hover { color: var(--accent); }

/* ---- ANIMATIONS ---- */
@keyframes bottle-float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-20px) rotate(1deg); } }
@keyframes pulse-glow { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.15); opacity: 1; } }
@keyframes float-badge1 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(8px,-12px); } }
@keyframes float-badge2 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(12px,8px); } }
@keyframes float-badge3 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-10px,-10px); } }
@keyframes float-particle { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 20% { opacity: 0.3; } 80% { opacity: 0.3; } 100% { transform: translateY(-100px) scale(1); opacity: 0; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-button { 0%, 100% { box-shadow: 0 8px 30px rgba(108,99,255,0.5); } 50% { box-shadow: 0 8px 50px rgba(108,99,255,0.9), 0 0 80px rgba(0,212,255,0.3); } }
@keyframes pulse-text { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes popup-in { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; transition-delay: var(--delay, 0s); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }

/* ============================
   MOBILE RESPONSIVE
============================ */

/* Tablet 768px */
@media (max-width: 991px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.popular { transform: scale(1); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .science-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; padding-top: 20px; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 260px; }
  .hero-glow { width: 260px; height: 260px; }
  .badge-float-1, .badge-float-2, .badge-float-3 { font-size: 11px; padding: 6px 12px; }
  .badge-float-1 { right: 5px; top: 15%; }
  .badge-float-2 { right: 0; top: 50%; }
  .badge-float-3 { left: 5px; bottom: 15%; }
  .hero-h1 { font-size: 28px; }
  .hero-trust { gap: 12px; font-size: 12px; justify-content: center; }
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: var(--dark2); flex-direction: column; gap: 0; padding: 20px; border-bottom: 1px solid rgba(108,99,255,0.2); transform: translateY(-110%); transition: transform 0.4s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(108,99,255,0.1); font-size: 16px; width: 100%; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 10px; text-align: center; padding: 14px 20px !important; border-radius: 12px !important; }
  .hamburger { display: flex; }
  .what-is-grid { grid-template-columns: 1fr; gap: 32px; }
  .what-is-image { order: -1; }
  .what-is-float { bottom: -12px; right: -8px; font-size: 12px; padding: 8px 16px; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 32px; }
  .guarantee-image { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-legal-links { align-items: center; }
  .social-links { justify-content: center; }
  .final-features { gap: 12px; font-size: 13px; }
  .exit-popup { padding: 36px 24px; }
  .exit-popup h3 { font-size: 22px; }
  .notif-popup { left: 10px; right: 10px; max-width: none; bottom: 80px; }
}

@media (max-width: 576px) {
  .badges-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .cd-block span { font-size: 36px; }
  .cd-block { min-width: 50px; }
  .countdown { padding: 12px 20px; }
  .hero-btn { font-size: 16px; padding: 16px 24px; }
  .btn-xl { font-size: 18px; padding: 18px 32px; }
  .price-card.popular { transform: none; }
}

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