/* ========================================
   HARDERO - styles.css
   Design: Bold & Premium Dark Theme
   Primary: #0f3460  Accent: #e94560
   Gradient: #e94560 → #f5a623
   ======================================== */

/* === 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: 'Open Sans', sans-serif;
  background: #070d1f;
  color: #e8eaf6;
  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; }

/* === CSS VARIABLES === */
:root {
  --primary: #0f3460;
  --accent: #e94560;
  --accent2: #f5a623;
  --dark: #070d1f;
  --dark2: #0d1b2a;
  --dark3: #1a2744;
  --light: #e8eaf6;
  --text-muted: #8892b0;
  --grad: linear-gradient(135deg, #e94560, #f5a623);
  --grad-blue: linear-gradient(135deg, #0f3460, #16213e);
  --shadow: 0 20px 60px rgba(233,69,96,0.15);
  --radius: 16px;
  --radius-sm: 8px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; 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(17px, 2.5vw, 22px); }

p { font-size: 16px; line-height: 1.8; color: #b0bec5; margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === LAYOUT === */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.bg-dark { background: var(--dark2); }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  background: rgba(233,69,96,0.12);
  border: 1px solid rgba(233,69,96,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 48px;
  color: #fff;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 52px;
  text-align: center;
}
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.98); }

.btn-nav {
  background: var(--grad);
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  min-height: 44px;
}
.btn-nav:hover { box-shadow: 0 8px 30px rgba(233,69,96,0.5); }

.btn-hero {
  background: var(--grad);
  color: #fff;
  font-size: 18px;
  padding: 20px 40px;
  box-shadow: 0 10px 40px rgba(233,69,96,0.4);
  width: 100%;
  max-width: 440px;
  min-height: 60px;
}
.btn-hero:hover { box-shadow: 0 16px 50px rgba(233,69,96,0.6); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { box-shadow: 0 16px 50px rgba(233,69,96,0.5); }

.btn-price {
  background: var(--dark3);
  color: #fff;
  border: 2px solid rgba(233,69,96,0.4);
  width: 100%;
  margin-top: 12px;
}
.btn-price:hover { border-color: var(--accent); box-shadow: 0 8px 30px rgba(233,69,96,0.3); }
.btn-price img { width: 20px; height: 20px; object-fit: contain; }

.btn-price-pop {
  background: var(--grad);
  color: #fff;
  width: 100%;
  margin-top: 12px;
  box-shadow: 0 8px 30px rgba(233,69,96,0.4);
}
.btn-price-pop:hover { box-shadow: 0 12px 40px rgba(233,69,96,0.6); }

.pulse-btn { animation: pulse-glow 2s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 10px 40px rgba(233,69,96,0.4); }
  50% { box-shadow: 0 10px 60px rgba(233,69,96,0.8); }
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7,13,31,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,69,96,0.15);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(7,13,31,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.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: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #fff;
}
.logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.logo-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #b0bec5;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width 0.3s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.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: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.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); }

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float-orb 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: var(--accent); top: -100px; left: -100px; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: #0f3460; bottom: -100px; right: -100px; animation-delay: 3s; }
.orb3 { width: 300px; height: 300px; background: var(--accent2); top: 50%; left: 50%; animation-delay: 6s; }

@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  z-index: 2;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow-ring {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,69,96,0.2) 0%, transparent 70%);
  animation: spin-glow 10s linear infinite;
}
@keyframes spin-glow {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
.hero-bottle {
  max-width: 380px;
  width: 100%;
  animation: hero-float 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(233,69,96,0.3));
  position: relative;
  z-index: 2;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.hero-badge-float {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  background: var(--grad);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(233,69,96,0.4);
  animation: badge-bob 3s ease-in-out infinite;
  z-index: 3;
}
.badge-top { top: 20px; right: -20px; animation-delay: 0s; }
.badge-bot { bottom: 20px; left: -20px; animation-delay: 1.5s; }
@keyframes badge-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent2);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-headline {
  color: #fff;
  margin-bottom: 24px;
}
.hero-desc { color: #b0bec5; margin-bottom: 16px; font-size: 16px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  padding: 6px 14px;
  border-radius: 50px;
}
.hero-subtext {
  margin-top: 12px;
  font-size: 14px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* === WHY CHOOSE === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border: 1px solid rgba(233,69,96,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 20px 60px rgba(233,69,96,0.2);
  border-color: rgba(233,69,96,0.4);
}
.why-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 12px;
}
.why-card h3 { color: #fff; font-size: 16px; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: #90a4ae; line-height: 1.7; }

/* === WHAT IS === */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-image img {
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  width: 100%;
}
.what-content .section-title { margin-bottom: 20px; }
.what-content p { margin-bottom: 20px; }
.what-content .btn { margin-top: 16px; }

/* === HOW IT WORKS === */
.accordion-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.accordion-item {
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border: 1px solid rgba(233,69,96,0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.accordion-item.active { border-color: rgba(233,69,96,0.5); }
.accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  min-height: 64px;
  transition: background 0.2s;
}
.accordion-header:hover { background: rgba(233,69,96,0.08); }
.acc-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--accent);
  min-width: 28px;
}
.acc-icon {
  margin-left: auto;
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-item.active .acc-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.accordion-body p { padding: 0 24px 20px 68px; color: #90a4ae; font-size: 15px; line-height: 1.8; margin: 0; }

/* === REVIEWS === */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border: 1px solid rgba(233,69,96,0.15);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.review-top { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.review-top img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  flex-shrink: 0;
}
.review-name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 15px; }
.review-loc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.stars { color: var(--accent2); font-size: 16px; margin-top: 4px; letter-spacing: 2px; }
.review-card p { font-size: 14px; color: #90a4ae; line-height: 1.8; }

/* === PRICING === */
.pricing-sub { font-size: 17px; color: #b0bec5; margin-bottom: 32px; }
.countdown-wrap {
  text-align: center;
  margin-bottom: 48px;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.countdown-timer { display: flex; align-items: center; justify-content: center; gap: 8px; }
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border: 2px solid rgba(233,69,96,0.4);
  border-radius: 12px;
  padding: 16px 24px;
  min-width: 80px;
}
.cd-block span {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.cd-block small {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 4px;
}
.cd-sep { font-size: 36px; font-weight: 900; color: var(--accent); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.price-card {
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border: 2px solid rgba(233,69,96,0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.popular {
  border-color: var(--accent);
  background: linear-gradient(145deg, #1a0d15, #2a1420);
  box-shadow: 0 0 40px rgba(233,69,96,0.2);
  transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.07) translateY(-6px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 1px;
}
.price-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.price-bottles {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.price-supply { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.price-img {
  width: 140px;
  height: 180px;
  object-fit: contain;
  margin: 12px auto;
}
.free-badges { display: flex; flex-direction: column; gap: 6px; margin: 8px 0; }
.fbadge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  padding: 4px 12px;
  border-radius: 50px;
}
.price-per {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  margin-top: 12px;
}
.price-per small { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.price-total {
  font-size: 15px;
  color: #90a4ae;
  margin-bottom: 4px;
  font-weight: 600;
}
.price-total s { color: var(--text-muted); }
.cards-img { width: 180px; margin: 10px auto 0; object-fit: contain; }
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #b0bec5;
  font-size: 15px;
  font-weight: 600;
}
.five-star { height: 32px; object-fit: contain; }

/* === BONUS === */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bonus-card {
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border: 1px solid rgba(233,69,96,0.15);
  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: var(--shadow); }
.bonus-card img { width: 100%; height: 220px; object-fit: cover; }
.bonus-info { padding: 24px; }
.bonus-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 8px;
}
.bonus-info h3 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.bonus-info p { font-size: 14px; color: #90a4ae; }
.bonus-value {
  margin-top: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #b0bec5;
}
.bonus-value strong { color: #4ade80; font-size: 16px; }

/* === INGREDIENTS === */
.ing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.ing-card {
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border: 1px solid rgba(233,69,96,0.15);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.ing-card:hover { transform: translateY(-4px); border-color: rgba(233,69,96,0.4); }
.ing-icon { font-size: 32px; margin-bottom: 12px; }
.ing-card h3 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.ing-card p { font-size: 14px; color: #90a4ae; line-height: 1.7; }

/* === SCIENCE === */
.science-list { display: flex; flex-direction: column; gap: 20px; }
.sci-item {
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border: 1px solid rgba(233,69,96,0.15);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px;
  transition: box-shadow 0.3s;
}
.sci-item:hover { box-shadow: 0 8px 30px rgba(233,69,96,0.15); }
.sci-item h3 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.sci-item p { font-size: 14px; color: #90a4ae; line-height: 1.8; }
.sci-ref {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent2);
  background: rgba(245,166,35,0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

/* === GUARANTEE === */
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.guarantee-image img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(233,69,96,0.2));
}
.guarantee-content .section-title { margin-bottom: 24px; }
.guarantee-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(233,69,96,0.15);
}
.gp-icon { font-size: 32px; flex-shrink: 0; }
.guarantee-point h3 { color: #fff; font-size: 16px; margin-bottom: 6px; }
.guarantee-point p { font-size: 14px; color: #90a4ae; }
.guarantee-content .btn { margin-top: 8px; }

/* === BENEFITS === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border: 1px solid rgba(233,69,96,0.15);
  border-radius: var(--radius-sm);
  transition: transform 0.3s, border-color 0.3s;
}
.benefit-item:hover { transform: translateX(6px); border-color: rgba(233,69,96,0.4); }
.benefit-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}
.benefit-item h3 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.benefit-item p { font-size: 14px; color: #90a4ae; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border: 1px solid rgba(233,69,96,0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item.active { border-color: rgba(233,69,96,0.4); }
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  min-height: 64px;
  gap: 12px;
  transition: background 0.2s;
}
.faq-header:hover { background: rgba(233,69,96,0.06); }
.faq-icon {
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-body p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #90a4ae;
  line-height: 1.8;
  margin: 0;
}

/* === FINAL CTA === */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}
.cta-orb1 { width: 600px; height: 600px; background: var(--accent); top: -200px; left: -200px; }
.cta-orb2 { width: 500px; height: 500px; background: var(--accent2); bottom: -200px; right: -200px; }

.final-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.final-img {
  max-width: 320px;
  filter: drop-shadow(0 30px 60px rgba(233,69,96,0.3));
}
.animate-float { animation: hero-float 4s ease-in-out infinite; }

.final-content .section-title { margin-bottom: 16px; }
.final-desc { font-size: 17px; color: #b0bec5; margin-bottom: 20px; }
.final-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.final-old { font-size: 16px; color: var(--text-muted); }
.final-old s { font-family: 'Montserrat', sans-serif; font-weight: 600; }
.final-new {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.final-trust span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  padding: 6px 14px;
  border-radius: 50px;
}
.btn-final { max-width: 100%; }
.stock-warn {
  margin-top: 14px;
  font-size: 13px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* === FOOTER === */
.footer {
  background: #020814;
  border-top: 1px solid rgba(233,69,96,0.15);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }
.footer-desc { font-size: 14px; color: #546e7a; line-height: 1.7; }
.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: #546e7a;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}
.legal-link {
  font-size: 13px;
  color: #546e7a;
  transition: color 0.2s;
}
.legal-link:hover { color: var(--accent); }
.link-separator { color: #2a3a4a; }
.social-icons { display: flex; gap: 12px; margin-top: 8px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark3);
  border: 1px solid rgba(233,69,96,0.2);
  border-radius: 8px;
  color: #546e7a;
  transition: all 0.2s;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-3px); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
}
.footer-disclaimer p { font-size: 12px; color: #37474f; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: #37474f; }
.footer-bottom a { color: var(--accent); }

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(233,69,96,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); }

/* === NOTIFICATION POPUP === */
.notif-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark3);
  border: 1px solid rgba(233,69,96,0.3);
  border-radius: 12px;
  padding: 14px 16px;
  z-index: 800;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  max-width: 300px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.notif-popup.show { opacity: 1; transform: translateX(0); pointer-events: all; }
.notif-popup img { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.notif-text { font-size: 13px; color: #b0bec5; line-height: 1.4; flex: 1; }
.notif-text strong { color: #fff; font-family: 'Montserrat', sans-serif; }
.notif-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  flex-shrink: 0;
}

/* === EXIT POPUP === */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.exit-overlay.show { opacity: 1; pointer-events: all; }
.exit-popup {
  background: linear-gradient(145deg, #0d1b2a, #1a2744);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 100px rgba(233,69,96,0.3);
}
.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(233,69,96,0.15);
  border: none;
  color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-close:hover { background: var(--accent); color: #fff; }
.exit-icon { font-size: 48px; margin-bottom: 16px; }
.exit-popup h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.exit-popup p { font-size: 15px; color: #90a4ae; }
.exit-popup strong { color: var(--accent); }

/* === ANIMATION CLASSES === */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up { transform: translateY(40px); }
.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.fade-up.visible, .fade-left.visible, .fade-right.visible {
  opacity: 1;
  transform: none;
}
.fade-up:nth-child(1) { transition-delay: 0.1s; }
.fade-up:nth-child(2) { transition-delay: 0.2s; }
.fade-up:nth-child(3) { transition-delay: 0.3s; }
.fade-up:nth-child(4) { transition-delay: 0.4s; }

/* === MOBILE RESPONSIVE === */
@media (max-width: 991px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-col:first-child { grid-column: 1 / -1; }
  .hero-container { gap: 40px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .hero-container { grid-template-columns: 1fr; text-align: center; padding: 40px 20px; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 260px; }
  .hero-glow-ring { width: 260px; height: 260px; }
  .hero-trust { justify-content: center; }
  .btn-hero { font-size: 16px; padding: 18px 32px; max-width: 100%; }
  .nav-links {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: rgba(7,13,31,0.98);
    padding: 24px 20px;
    gap: 16px;
    border-top: 1px solid rgba(233,69,96,0.15);
    transition: left 0.3s ease;
    backdrop-filter: blur(20px);
    z-index: 999;
    text-align: center;
  }
  .nav-links.open { left: 0; }
  .hamburger { display: flex; }
  .nav-link { font-size: 16px; padding: 10px 0; }
  .btn-nav { width: 100%; text-align: center; padding: 16px 24px; }
  .what-grid { grid-template-columns: 1fr; }
  .what-image { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-image { order: -1; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-img { max-width: 240px; margin: 0 auto; }
  .final-price { align-items: center; }
  .final-trust { justify-content: center; }
  .btn-final { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-col:first-child { grid-column: auto; }
  .footer-legal-links { justify-content: center; }
  .social-icons { justify-content: center; }
  .notif-popup { left: 12px; right: 12px; max-width: none; }
  .badge-top { right: 0; top: 10px; }
  .badge-bot { left: 0; bottom: 10px; }
}

@media (max-width: 575px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .why-grid { grid-template-columns: 1fr; }
  .cd-block { min-width: 64px; padding: 12px 16px; }
  .cd-block span { font-size: 32px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .hero-badge-float { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  .hero-bottle { max-width: 220px; }
  .accordion-header { font-size: 14px; padding: 16px; }
  .accordion-body p { padding: 0 16px 16px 48px; }
  .faq-header { font-size: 14px; padding: 16px; }
  .faq-body p { padding: 0 16px 16px; }
  .exit-popup { padding: 32px 20px; }
}

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