/* =============================================
   ALPHA ROCK PRO — PREMIUM MEN'S HEALTH LANDING PAGE
   Design: Bold Gold & Black Luxury + Medical Trust
   Fonts: Montserrat (headings) + Open Sans (body)
   ============================================= */

/* ---- 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: #0a0a0f;
  color: #e8e8e8;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #D4AF37;
  --gold-light: #F5D76E;
  --gold-dark: #B8942A;
  --black: #0a0a0f;
  --dark: #111118;
  --dark2: #1a1a25;
  --dark3: #222230;
  --white: #ffffff;
  --text: #d0d0e0;
  --text-muted: #8888aa;
  --accent: #4F46E5;
  --accent2: #06B6D4;
  --green: #10B981;
  --red: #EF4444;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(212,175,55,0.3);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --section-pad: 90px 0;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ---- SECTION COMMON ---- */
.section-title {
  font-size: clamp(24px, 4vw, 38px);
  text-align: center;
  margin-bottom: 12px;
  color: #fff;
}
.section-title span { color: var(--gold); }
.left-title { text-align: left; }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 52px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  min-height: 52px;
  text-align: center;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(79,70,229,0.4);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(79,70,229,0.6); }
.btn-primary:active { transform: scale(0.98); }

.btn-gold {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  min-height: 52px;
  text-align: center;
  gap: 4px;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(212,175,55,0.55); }
.btn-gold:active { transform: scale(0.98); }

.btn-sub {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
  font-family: 'Open Sans', sans-serif;
}

.pulse-btn { animation: pulse 2.5s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,175,55,0.4); }
  50% { box-shadow: 0 4px 40px rgba(212,175,55,0.8), 0 0 0 8px rgba(212,175,55,0.12); }
}

/* ============================================
   SECTION 1: NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.nav-logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.nav-logo strong { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(212,175,55,0.08); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #000 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 800 !important;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 48px; min-height: 48px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
}
.nav-overlay.active { display: block; }

/* ============================================
   SECTION 2: HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: radial-gradient(ellipse at 20% 50%, rgba(79,70,229,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.1) 0%, transparent 50%),
              linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
  overflow: hidden;
  position: relative;
}

#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

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

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-bottle {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(212,175,55,0.3));
  animation: bottleFloat 4s ease-in-out infinite;
  max-height: 520px;
  object-fit: contain;
}
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.hero-float-ring {
  position: absolute;
  width: 420px; height: 420px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%;
  animation: ringRotate 12s linear infinite;
  z-index: 1;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-badge {
  position: absolute;
  background: rgba(10,10,15,0.9);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  z-index: 3;
  white-space: nowrap;
  animation: badgePop 3.5s ease-in-out infinite;
}
.hero-badge-1 { top: 15%; right: -10px; animation-delay: 0s; }
.hero-badge-2 { bottom: 20%; left: -10px; animation-delay: 1.5s; }
@keyframes badgePop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-content { display: flex; flex-direction: column; gap: 16px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  width: fit-content;
  letter-spacing: 0.05em;
}
.hero-h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { color: var(--text); font-size: 1rem; line-height: 1.8; }
.hero-desc strong { color: #fff; }

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: var(--gold);
}
.hero-stars span { font-size: 0.85rem; color: var(--text-muted); }

.hero-cta { width: 100%; font-size: 1.1rem; padding: 18px 32px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ============================================
   SECTION 3: WHY CHOOSE US
   ============================================ */
.why-choose {
  padding: var(--section-pad);
  background: var(--dark);
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.badge-card {
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(40px);
}
.badge-card.animated { opacity: 1; transform: translateY(0); }
.badge-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px) rotate(1deg) scale(1.04);
  box-shadow: var(--shadow-gold);
}
.badge-card img {
  width: 80px; height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 50%;
}
.badge-card h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.badge-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   SECTION 4: WHAT IS
   ============================================ */
.what-is {
  padding: var(--section-pad);
  background: var(--black);
}
.what-is-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.what-is-text p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.what-is-text strong { color: #fff; }
.what-is-image img {
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.2);
  filter: drop-shadow(0 16px 48px rgba(212,175,55,0.15));
  transition: var(--transition);
}
.what-is-image img:hover { transform: scale(1.02); }

/* ============================================
   SECTION 5: HOW IT WORKS
   ============================================ */
.how-works {
  padding: var(--section-pad);
  background: var(--dark);
}
.accordion-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.science-accordion { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.accordion-item {
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item:hover { border-color: rgba(212,175,55,0.4); }
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  min-height: 56px;
  transition: var(--transition);
}
.accordion-header:hover { background: rgba(212,175,55,0.05); }
.acc-icon { font-size: 1.3rem; flex-shrink: 0; }
.acc-arrow { margin-left: auto; font-size: 0.8rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.accordion-item.active .acc-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 24px;
}
.accordion-item.active .accordion-body { max-height: 400px; padding: 0 24px 20px; }
.accordion-body p { color: var(--text); line-height: 1.8; font-size: 0.95rem; }
.accordion-body strong { color: #fff; }

/* ============================================
   SECTION 6: REVIEWS
   ============================================ */
.reviews {
  padding: var(--section-pad);
  background: var(--black);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.review-card.animated { opacity: 1; transform: translateY(0); }
.review-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.review-header strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; color: #fff; }
.review-header span { font-size: 0.78rem; color: var(--text-muted); }
.review-stars { font-size: 1.1rem; margin-bottom: 12px; }
.review-card p { font-size: 0.9rem; color: var(--text); line-height: 1.75; }
.review-card strong { color: #fff; }

.review-aggregate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.review-aggregate p { color: var(--text-muted); font-size: 0.9rem; }
.review-aggregate strong { color: #fff; }

/* ============================================
   SECTION 7 & 13: PRICING
   ============================================ */
.pricing { padding: var(--section-pad); background: var(--dark); }
.pricing-2 { background: var(--black); }

.countdown-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
}
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.time-block {
  background: #1a1a25;
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 10px 18px;
  text-align: center;
  min-width: 70px;
}
.time-block span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.time-block small {
  font-size: 0.65rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.time-sep { font-size: 2rem; font-weight: 900; color: var(--gold); font-family: 'Montserrat', sans-serif; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}
.price-card.animated { opacity: 1; transform: translateY(0); }
.price-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-4px); }

.popular-card {
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25), var(--shadow-gold);
  transform: scale(1.04);
}
.popular-card.animated { transform: translateY(0) scale(1.04); }
.popular-card:hover { transform: scale(1.04) translateY(-4px) !important; }

.popular-banner {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.price-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.basic-label { background: rgba(79,70,229,0.2); color: var(--accent2); border: 1px solid rgba(79,70,229,0.3); }
.popular-label { background: rgba(212,175,55,0.2); color: var(--gold); border: 1px solid rgba(212,175,55,0.5); }
.bundle-label { background: rgba(16,185,129,0.2); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }

.price-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 4px; }
.supply-days { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.price-card img:not(.payment-icons) {
  max-width: 160px;
  margin: 0 auto 20px;
  object-fit: contain;
  height: 180px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}
.old-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: 'Montserrat', sans-serif;
}
.new-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
}
.per-bottle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.per-bottle strong { color: var(--gold); }

.bonus-tags { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.bonus-tag {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
}

.price-btn { width: 100%; font-size: 1rem; margin-bottom: 12px; padding: 14px 20px; }
.payment-icons { max-width: 180px; margin: 0 auto; height: 30px; object-fit: contain; opacity: 0.7; }
.pricing-star-row { display: flex; justify-content: center; margin-top: 30px; }

/* ============================================
   SECTION 8: BONUSES
   ============================================ */
.bonuses {
  padding: var(--section-pad);
  background: linear-gradient(135deg, #0a0a0f 0%, #111118 50%, #0a0a0f 100%);
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.bonus-card {
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.bonus-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.bonus-number {
  display: inline-block;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.bonus-card img {
  max-width: 220px;
  margin: 0 auto 20px;
  border-radius: 12px;
  object-fit: contain;
  height: 280px;
}
.bonus-card h3 { font-size: 1.2rem; color: var(--gold); margin-bottom: 12px; }
.bonus-card p { font-size: 0.9rem; color: var(--text); line-height: 1.75; }
.bonus-card strong { color: #fff; }

/* ============================================
   SECTION 9: INGREDIENTS
   ============================================ */
.ingredients {
  padding: var(--section-pad);
  background: var(--dark);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ing-card {
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.ing-card.animated { opacity: 1; transform: translateY(0); }
.ing-card:hover { border-color: rgba(212,175,55,0.5); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.ing-icon { font-size: 2rem; margin-bottom: 12px; }
.ing-card h3 { font-size: 1rem; color: var(--gold); margin-bottom: 10px; }
.ing-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
.ing-card strong { color: #fff; }

/* ============================================
   SECTION 10: SCIENCE
   ============================================ */
.science {
  padding: var(--section-pad);
  background: var(--black);
}

/* ============================================
   SECTION 11: GUARANTEE
   ============================================ */
.guarantee {
  padding: var(--section-pad);
  background: var(--dark);
}
.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
  align-items: center;
}
.guarantee-image img {
  max-width: 340px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-gold), 0 0 60px rgba(212,175,55,0.15);
  animation: guaranteePulse 4s ease-in-out infinite;
}
@keyframes guaranteePulse {
  0%, 100% { box-shadow: var(--shadow-gold), 0 0 40px rgba(212,175,55,0.15); }
  50% { box-shadow: var(--shadow-gold), 0 0 80px rgba(212,175,55,0.3); }
}
.guarantee-text p:first-of-type { color: var(--text); margin-bottom: 24px; line-height: 1.8; }
.guarantee-text strong { color: #fff; }
.guarantee-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  transition: var(--transition);
}
.guarantee-point:hover { border-color: var(--gold); }
.gp-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.guarantee-point h4 { font-size: 1rem; color: var(--gold); margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }
.guarantee-point p { font-size: 0.9rem; color: var(--text); line-height: 1.75; }
.guarantee-point strong { color: #fff; }

/* ============================================
   SECTION 12: BENEFITS
   ============================================ */
.benefits {
  padding: var(--section-pad);
  background: var(--black);
}
.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(--dark2);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-20px);
}
.benefit-item.animated { opacity: 1; transform: translateX(0); }
.benefit-item:hover { border-color: var(--gold); transform: translateX(4px); }
.benefit-check { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.benefit-item h4 { font-size: 0.95rem; color: var(--gold); margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }
.benefit-item p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }
.benefit-item strong { color: #fff; }

/* ============================================
   SECTION 14: FAQ
   ============================================ */
.faq {
  padding: var(--section-pad);
  background: var(--dark);
}

/* ============================================
   SECTION 15: FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--section-pad);
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 70%),
              linear-gradient(180deg, var(--dark) 0%, #0d0d1a 100%);
  overflow: hidden;
  position: relative;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.final-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.final-cta-image { position: relative; display: flex; justify-content: center; }
.final-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 3s ease-in-out infinite;
}
.final-bottle-img {
  max-width: 360px;
  position: relative;
  z-index: 1;
  animation: bottleFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 24px 60px rgba(212,175,55,0.25));
}

.final-urgency {
  display: inline-flex;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  color: #ff6b6b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  animation: urgencyBlink 2s infinite;
}
@keyframes urgencyBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.final-h2 { font-size: clamp(24px, 3.5vw, 38px); margin-bottom: 16px; }
.final-cta-text > p { color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.final-cta-text strong { color: #fff; }

.final-price-display {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.final-old { font-size: 1rem; color: var(--text-muted); font-family: 'Montserrat', sans-serif; }
.final-new {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
}

.final-btn { font-size: 1.1rem; padding: 18px 36px; width: 100%; max-width: 480px; }

.final-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ============================================
   SECTION 16: FOOTER
   ============================================ */
.footer {
  background: #050508;
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 50px 0 30px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.footer-brand strong { color: var(--gold); }

.footer-social { display: flex; gap: 12px; }
.social-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.footer-legal { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; margin-bottom: 20px; }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.legal-link {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
  padding: 4px 8px;
}
.legal-link:hover { color: var(--gold); }
.link-separator { color: rgba(255,255,255,0.2); }

.footer-disclaimer {
  text-align: center;
}
.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.footer-disclaimer strong { color: #ccc; }

/* ============================================
   PURCHASE NOTIFICATION POPUP
   ============================================ */
.purchase-popup {
  position: fixed;
  bottom: 24px; left: 24px;
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 12px;
  padding: 14px 40px 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999;
  box-shadow: var(--shadow);
  transform: translateX(-200%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  max-width: 280px;
}
.purchase-popup.show { transform: translateX(0); }
.pp-avatar { font-size: 2rem; flex-shrink: 0; }
.pp-text { flex: 1; }
.pp-text strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: #fff; }
.pp-text small { font-size: 0.78rem; color: var(--gold); }
.pp-close {
  position: absolute; top: 8px; right: 8px;
  background: none; border: none;
  color: var(--text-muted); font-size: 0.8rem;
  cursor: pointer; padding: 4px;
  min-width: 24px; min-height: 24px;
}
.pp-close:hover { color: #fff; }

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-overlay.active { display: flex; }
.exit-popup {
  background: linear-gradient(145deg, var(--dark2), #1a1a2e);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px rgba(212,175,55,0.2);
  animation: popupIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.exit-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.exit-close:hover { background: rgba(255,255,255,0.15); }
.exit-badge {
  display: inline-block;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  color: #ff6b6b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.exit-popup h3 { font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.exit-popup p { font-size: 0.95rem; color: var(--text); line-height: 1.75; margin-bottom: 20px; }
.exit-popup strong { color: #fff; }
.exit-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.exit-old { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.exit-new { font-size: 1.6rem; font-weight: 900; color: var(--gold); font-family: 'Montserrat', sans-serif; }
.exit-cta { width: 100%; display: flex; justify-content: center; font-size: 1rem; padding: 16px 24px; }
.exit-no {
  display: block;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  transition: var(--transition);
}
.exit-no:hover { color: var(--text); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-4px) scale(1.1); }

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-left"] { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate="slide-up"] { transform: translateY(40px); }
[data-animate].animated { opacity: 1; transform: none; }

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

@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; right: 0;
    width: 280px;
    height: calc(100vh - 72px);
    background: rgba(10,10,15,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 4px;
    border-left: 1px solid rgba(212,175,55,0.2);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 8px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-image-wrap { order: 1; }
  .hero-content { order: 2; align-items: center; }
  .hero-bottle { max-height: 320px; }
  .hero-glow { width: 260px; height: 260px; }
  .hero-float-ring { width: 300px; height: 300px; }
  .hero-badge-1 { right: 10px; top: 5%; }
  .hero-badge-2 { left: 10px; bottom: 10%; }
  .hero-trust { justify-content: center; }
  .hero-stars { justify-content: center; }

  /* Why Choose */
  .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* What Is */
  .what-is-inner { grid-template-columns: 1fr; gap: 32px; }
  .what-is-text { order: 2; }
  .what-is-text .left-title { text-align: center; }
  .what-is-image { order: 1; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .popular-card { transform: none; }
  .popular-card.animated { transform: none; }
  .popular-card:hover { transform: translateY(-4px) !important; }
  .countdown-box { flex-direction: column; gap: 12px; }

  /* Bonuses */
  .bonus-grid { grid-template-columns: 1fr; }

  /* Ingredients */
  .ingredients-grid { grid-template-columns: 1fr; }

  /* Guarantee */
  .guarantee-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .guarantee-image { display: flex; justify-content: center; }
  .guarantee-text .left-title { text-align: center; }
  .guarantee-point { flex-direction: column; align-items: center; text-align: center; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Final CTA */
  .final-cta-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .final-cta-image { order: 1; }
  .final-cta-text { order: 2; display: flex; flex-direction: column; align-items: center; }
  .final-bottle-img { max-width: 260px; }
  .final-trust-row { justify-content: center; }

  /* Footer */
  .footer-top { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .badges-grid { grid-template-columns: 1fr; }
  .time-block { min-width: 58px; padding: 8px 12px; }
  .time-block span { font-size: 1.8rem; }
  .purchase-popup { bottom: 12px; left: 12px; right: 12px; max-width: none; transform: translateY(200%); }
  .purchase-popup.show { transform: translateY(0); }
  .exit-popup { padding: 32px 20px; }
  .hero-badge-1, .hero-badge-2 { display: none; }
}

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