/* ===================================================
   HORSEWOOD - PREMIUM MEN'S WELLNESS SUPPLEMENT
   Design: Dark Luxury Gold Theme
   Primary: #0B1426 (Deep Navy)
   Gold: #C9A84C
   Accent: #E8C96C
   Text: #F0EDE6
   =================================================== */

/* ===== 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', 'Roboto', sans-serif;
  background: #0B1426;
  color: #F0EDE6;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
input, select, textarea { font-size: 16px; }

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

.section-pad { padding: 80px 0; }
.bg-dark { background: #060e1a; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(24px, 4vw, 42px);
  margin-bottom: 16px;
  color: #C9A84C;
}
.section-header p {
  font-size: clamp(15px, 2vw, 18px);
  color: #a8b5c8;
  max-width: 600px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A84C;
  border: 1px solid #C9A84C44;
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 16px;
}
.urgency-label {
  background: #C9A84C22;
  color: #E8C96C;
  border-color: #C9A84C;
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-up { opacity: 0; transform: translateY(50px); transition: opacity 0.6s ease calc(var(--delay, 0s)), transform 0.6s ease calc(var(--delay, 0s)); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-up { opacity: 1; transform: none; transition: none; }
}

/* ===== BUTTONS ===== */
.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, #C9A84C, #E8C96C);
  color: #0B1426;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(15px, 2vw, 18px);
  padding: 18px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 100%;
  min-height: 56px;
  margin-top: 24px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.btn-hero:hover { transform: scale(1.04); box-shadow: 0 12px 40px rgba(201,168,76,0.5); }
.btn-hero:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-block;
  border: 2px solid #C9A84C;
  color: #C9A84C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
  margin-top: 24px;
  min-height: 52px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: #C9A84C; color: #0B1426; }

.btn-price {
  display: block;
  background: linear-gradient(135deg, #C9A84C, #E8C96C);
  color: #0B1426;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 16px 24px;
  border-radius: 8px;
  text-align: center;
  min-height: 52px;
  margin: 20px 0 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}
.btn-price:hover { transform: scale(1.04); box-shadow: 0 10px 28px rgba(201,168,76,0.45); }
.btn-price:active { transform: scale(0.98); }

.btn-final {
  display: block;
  background: linear-gradient(135deg, #C9A84C, #E8C96C);
  color: #0B1426;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 2vw, 20px);
  padding: 20px 40px;
  border-radius: 8px;
  text-align: center;
  min-height: 60px;
  margin-top: 28px;
  box-shadow: 0 10px 40px rgba(201,168,76,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-glow 2.5s infinite;
}
.btn-final:hover { transform: scale(1.04); }
.btn-final:active { transform: scale(0.98); }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 10px 40px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 10px 60px rgba(201,168,76,0.7); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11,20,38,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(6,14,26,0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}
.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #C9A84C;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #c8d3e0;
  transition: color 0.2s;
}
.nav-link:hover { color: #C9A84C; }
.btn-nav-cta {
  background: linear-gradient(135deg, #C9A84C, #E8C96C);
  color: #0B1426;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 6px;
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}
.btn-nav-cta:hover { transform: scale(1.04); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #C9A84C;
  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 ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #060e1a 0%, #0B1426 50%, #0d1f3c 100%);
  overflow: hidden;
  padding-top: 70px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-bottle-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: bottleGlow 3s ease-in-out infinite;
}
@keyframes bottleGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-bottle {
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 1;
  animation: heroFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(201,168,76,0.3));
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(1deg); }
  66% { transform: translateY(-8px) rotate(-0.5deg); }
}
.hero-badge {
  position: absolute;
  background: rgba(11,20,38,0.9);
  border: 1px solid #C9A84C;
  border-radius: 50px;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #C9A84C;
  white-space: nowrap;
  animation: badgePop 0.5s ease backwards;
}
.hero-badge-1 { top: 15%; right: 5%; animation-delay: 1s; }
.hero-badge-2 { bottom: 20%; left: 0%; animation-delay: 1.3s; }
@keyframes badgePop {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #E8C96C;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeSlide 0.6s ease 0.2s both;
}
.hero-h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: #F0EDE6;
  margin-bottom: 24px;
  animation: fadeSlide 0.6s ease 0.4s both;
}
.hero-h1 .highlight {
  color: #C9A84C;
  position: relative;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #c8d3e0;
  margin-bottom: 14px;
  animation: fadeSlide 0.6s ease 0.6s both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  animation: fadeSlide 0.6s ease 1s both;
}
.hero-trust span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #a8b5c8;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: linear-gradient(145deg, #0d1b2e, #111e35);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  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 50px rgba(201,168,76,0.2);
  border-color: #C9A84C;
}
.why-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  padding: 12px;
}
.why-icon { width: 100%; height: 100%; object-fit: contain; }
.why-icon-fallback { font-size: 40px; }
.why-badge-label {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: #E8C96C;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.why-card h3 { font-size: 18px; color: #F0EDE6; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: #a8b5c8; line-height: 1.6; }

/* ===== WHAT IS ===== */
.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(201,168,76,0.2);
}
.what-text h2 { font-size: clamp(24px, 3vw, 38px); color: #C9A84C; margin-bottom: 24px; }
.what-text p { font-size: 16px; color: #c8d3e0; margin-bottom: 18px; }

/* ===== HOW IT WORKS / ACCORDION ===== */
.accordion-wrap { max-width: 860px; margin: 0 auto; }
.accordion-item {
  background: #0d1b2e;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 17px);
  color: #F0EDE6;
  min-height: 60px;
  transition: background 0.2s;
}
.accordion-btn:hover { background: rgba(201,168,76,0.05); }
.accordion-btn[aria-expanded="true"] { color: #C9A84C; }
.acc-icon { font-size: 22px; flex-shrink: 0; }
.acc-arrow {
  margin-left: auto;
  font-size: 14px;
  color: #C9A84C;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-btn[aria-expanded="true"] .acc-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  padding: 0 24px;
}
.accordion-body.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.accordion-body p { font-size: 15px; color: #a8b5c8; line-height: 1.7; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: linear-gradient(145deg, #0d1b2e, #0f2040);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(201,168,76,0.15); }
.review-top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #C9A84C;
  flex-shrink: 0;
}
.reviewer-fallback {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #E8C96C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #0B1426;
  flex-shrink: 0;
}
.reviewer-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: #F0EDE6; }
.reviewer-loc { font-size: 13px; color: #a8b5c8; }
.stars { color: #E8C96C; font-size: 17px; margin-top: 4px; }
.review-text { font-size: 15px; color: #c8d3e0; line-height: 1.7; }

/* ===== PRICING ===== */
.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 20px 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #E8C96C;
}
.countdown-timer { display: flex; align-items: center; gap: 10px; }
.countdown-block { text-align: center; }
.cdown-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  color: #C9A84C;
  line-height: 1;
  min-width: 2ch;
}
.cdown-lbl { font-size: 11px; color: #a8b5c8; letter-spacing: 1px; }
.countdown-sep { font-size: 30px; color: #C9A84C; font-weight: 900; line-height: 1; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: linear-gradient(145deg, #0d1b2e, #111e35);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.price-card.popular {
  background: linear-gradient(145deg, #1a2e1a, #1e381e);
  border-color: #C9A84C;
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(201,168,76,0.25);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-8px); }
.popular-crown {
  background: linear-gradient(135deg, #C9A84C, #E8C96C);
  color: #0B1426;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 8px 8px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 -1px;
}
.price-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  color: #C9A84C;
  margin-top: 20px;
}
.price-qty {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 26px);
  color: #F0EDE6;
  margin: 6px 0;
}
.price-supply {
  font-size: 14px;
  color: #a8b5c8;
  margin-bottom: 16px;
}
.price-bottle {
  width: 100%;
  max-width: 160px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.price-bottle-fallback {
  font-size: 50px;
  margin: 16px auto;
  text-align: center;
}
.price-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 12px; }
.badge-free, .badge-ship {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.badge-free { background: rgba(201,168,76,0.15); color: #E8C96C; border: 1px solid rgba(201,168,76,0.3); }
.badge-ship { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.price-orig {
  font-size: 20px;
  color: #a8b5c8;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-now {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  color: #C9A84C;
  line-height: 1;
}
.price-now span { font-size: 16px; font-weight: 600; color: #a8b5c8; }
.price-total { font-size: 14px; color: #a8b5c8; margin: 6px 0; }
.price-total strong { color: #C9A84C; }
.payment-logos {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  opacity: 0.7;
  object-fit: contain;
}
.five-star-wrap { text-align: center; margin-top: 40px; }
.five-star-img { max-width: 280px; margin: 0 auto; }
.stars-fallback { font-size: 18px; color: #E8C96C; text-align: center; margin-top: 20px; }

/* ===== BONUS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.bonus-card {
  background: linear-gradient(145deg, #0d1b2e, #111e35);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.bonus-card:hover { transform: translateY(-6px); }
.bonus-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C9A84C, #E8C96C);
  color: #0B1426;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.bonus-img {
  width: 100%;
  max-width: 200px;
  margin: 20px auto;
  border-radius: 12px;
  object-fit: contain;
}
.bonus-fallback {
  font-size: 60px;
  margin: 20px auto;
  text-align: center;
}
.bonus-card h3 { font-size: 20px; color: #C9A84C; margin-bottom: 14px; }
.bonus-card p { font-size: 15px; color: #a8b5c8; }

/* ===== INGREDIENTS ===== */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ing-card {
  background: linear-gradient(145deg, #0d1b2e, #111e35);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.ing-card:hover { border-color: #C9A84C; transform: translateY(-4px); }
.ing-num {
  position: absolute;
  top: -16px;
  left: 24px;
  background: linear-gradient(135deg, #C9A84C, #E8C96C);
  color: #0B1426;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 13px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ing-card h3 { font-size: 18px; color: #F0EDE6; margin-bottom: 12px; }
.ing-dose {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #C9A84C;
  margin-left: 8px;
}
.ing-card p { font-size: 14px; color: #a8b5c8; line-height: 1.7; }

/* ===== SCIENCE ===== */
.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.science-item {
  background: linear-gradient(145deg, #0d1b2e, #111e35);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 28px;
}
.science-item h3 { font-size: 18px; color: #C9A84C; margin-bottom: 14px; }
.science-item p { font-size: 14px; color: #a8b5c8; line-height: 1.7; }
.science-disclaimer {
  text-align: center;
  font-size: 14px;
  color: #a8b5c8;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== GUARANTEE ===== */
.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.guarantee-image img {
  width: 220px;
  height: auto;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(201,168,76,0.3));
}
.guarantee-fallback {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 2px solid #C9A84C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #C9A84C;
  text-align: center;
  line-height: 1.8;
}
.guarantee-text h2 { font-size: clamp(22px, 3vw, 34px); color: #C9A84C; margin-bottom: 28px; }
.guarantee-point { display: flex; gap: 18px; margin-bottom: 24px; align-items: flex-start; }
.g-icon { font-size: 28px; flex-shrink: 0; }
.guarantee-point h4 { font-size: 17px; color: #F0EDE6; margin-bottom: 8px; }
.guarantee-point p { font-size: 15px; color: #a8b5c8; }

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  padding: 22px;
  transition: border-color 0.3s;
}
.benefit-item:hover { border-color: rgba(201,168,76,0.4); }
.benefit-check { font-size: 22px; flex-shrink: 0; }
.benefit-text h4 { font-size: 16px; color: #F0EDE6; margin-bottom: 8px; }
.benefit-text p { font-size: 14px; color: #a8b5c8; }

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  overflow: hidden;
  background: #060e1a;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.final-cta-image { position: relative; display: flex; justify-content: center; }
.final-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: finalPulse 3s ease-in-out infinite;
}
@keyframes finalPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}
.final-bottle {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 1;
  animation: heroFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(201,168,76,0.3));
}
.final-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #E8C96C;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  animation: finalSlide 0.6s ease 0.3s both;
}
.final-cta-text h2 {
  font-size: clamp(24px, 3.5vw, 42px);
  color: #F0EDE6;
  margin-bottom: 20px;
  animation: finalSlide 0.6s ease 0.5s both;
}
.final-cta-text p {
  font-size: 16px;
  color: #a8b5c8;
  margin-bottom: 24px;
  animation: finalSlide 0.6s ease 0.7s both;
}
@keyframes finalSlide {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.final-pricing { margin-bottom: 8px; animation: finalSlide 0.6s ease 0.9s both; }
.final-orig { font-size: 18px; color: #a8b5c8; margin-right: 16px; }
.final-now {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 32px);
  color: #C9A84C;
}
.final-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  animation: finalSlide 0.6s ease 1.1s both;
}
.final-trust-row span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #a8b5c8;
}

/* ===== FAQ ===== */
.faq-wrap { max-width: 860px; margin: 0 auto; }

/* ===== FOOTER ===== */
.footer {
  background: #040b16;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #C9A84C;
  display: block;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 15px; color: #a8b5c8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  transition: all 0.2s;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: #C9A84C; color: #0B1426; }
.footer-links-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #C9A84C;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links-col a {
  display: block;
  font-size: 14px;
  color: #a8b5c8;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links-col a:hover { color: #C9A84C; }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 28px 0;
}
.footer-disclaimer {
  font-size: 12px;
  color: #6b7a8d;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: center;
}
.footer-copy {
  font-size: 13px;
  color: #6b7a8d;
  text-align: center;
}
.footer-copy a { color: #a8b5c8; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #C9A84C, #E8C96C);
  color: #0B1426;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  transition: transform 0.2s;
}
.scroll-top:hover { transform: scale(1.1); }
.scroll-top.visible { display: flex; }

/* ===== NOTIFICATION POPUP ===== */
.notif-popup {
  position: fixed;
  bottom: 100px;
  left: 24px;
  background: #0d1b2e;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  z-index: 900;
  min-width: 240px;
  max-width: 280px;
  display: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: slideInLeft 0.4s ease;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
.notif-inner { display: flex; align-items: center; gap: 12px; }
.notif-icon { font-size: 24px; flex-shrink: 0; }
.notif-text { font-size: 13px; color: #c8d3e0; }
.notif-text strong { color: #C9A84C; display: block; }
.notif-close {
  background: none;
  border: none;
  color: #a8b5c8;
  font-size: 20px;
  cursor: pointer;
  margin-left: auto;
  min-width: 28px;
  min-height: 28px;
}

/* ===== EXIT POPUP ===== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup-overlay.open { display: flex; }
.exit-popup-box {
  background: linear-gradient(145deg, #0d1b2e, #111e35);
  border: 1px solid #C9A84C;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #a8b5c8;
  font-size: 24px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-popup-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: #E8C96C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.exit-popup-box h3 { font-size: clamp(20px, 3vw, 28px); color: #F0EDE6; margin-bottom: 14px; }
.exit-popup-box p { font-size: 16px; color: #a8b5c8; margin-bottom: 20px; }
.exit-price-row { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px; }
.exit-price-row s { font-size: 20px; color: #a8b5c8; }
.exit-price-now { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 30px; color: #C9A84C; }
.btn-exit-cta {
  display: block;
  background: linear-gradient(135deg, #C9A84C, #E8C96C);
  color: #0B1426;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 8px;
  margin-bottom: 14px;
  min-height: 52px;
  transition: transform 0.2s;
}
.btn-exit-cta:hover { transform: scale(1.03); }
.exit-no { font-size: 14px; color: #6b7a8d; display: block; }

/* ===== MOBILE BANNER ===== */
.mobile-banner-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: linear-gradient(135deg, #1a1a0a, #2a2200);
  border-top: 2px solid #C9A84C;
  padding: 12px 16px;
}
.mobile-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.mobile-banner-inner span {
  font-size: 14px;
  color: #F0EDE6;
  flex: 1;
  min-width: 180px;
}
.mobile-banner-cta {
  background: linear-gradient(135deg, #C9A84C, #E8C96C);
  color: #0B1426;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 6px;
  min-height: 40px;
  white-space: nowrap;
}
.mobile-banner-close {
  background: none;
  border: none;
  color: #a8b5c8;
  font-size: 22px;
  cursor: pointer;
  min-width: 36px;
  min-height: 36px;
}

/* ===== PARTICLES ===== */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ===================================================
   RESPONSIVE - MOBILE FIRST
   =================================================== */

/* --- Tablets 768px and below --- */
@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #060e1a;
    flex-direction: column;
    gap: 0;
    padding: 0;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link {
    padding: 18px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: block;
    min-height: 56px;
    display: flex;
    align-items: center;
  }
  .btn-nav-cta {
    margin: 16px 20px;
    justify-content: center;
    font-size: 15px;
    padding: 14px;
    min-height: 52px;
  }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-image-wrap { order: 1; }
  .hero-content { order: 2; }
  .hero-bottle { max-width: 280px; margin: 0 auto; }
  .hero-trust { justify-content: center; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .what-inner { grid-template-columns: 1fr; gap: 40px; }
  .what-image { order: 1; }
  .what-text { order: 2; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; gap: 20px; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-8px); }
  .bonus-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .ing-grid { grid-template-columns: 1fr; }
  .science-grid { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .guarantee-image { display: flex; justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .final-cta-image { order: 1; }
  .final-cta-text { order: 2; }
  .final-trust-row { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-links-col a { display: inline-block; margin: 0 10px 8px; }
}

/* --- Phones 575px and below --- */
@media (max-width: 575px) {
  .section-pad { padding: 60px 0; }
  .hero { padding-top: 70px; min-height: auto; }
  .hero-h1 { font-size: 26px; }
  .hero-bottle { max-width: 220px; }
  .hero-badge { font-size: 11px; padding: 6px 12px; }
  .hero-badge-1 { top: 5%; right: 0; }
  .hero-badge-2 { bottom: 10%; left: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
  .price-card { padding: 24px 16px; }
  .guarantee-image img { width: 160px; }
  .mobile-banner-popup { display: block; }
  .notif-popup { max-width: calc(100% - 48px); left: 24px; right: 24px; bottom: 80px; }
  .scroll-top { bottom: 80px; }
  .final-bottle { max-width: 280px; margin: 0 auto; }
  .footer-inner { padding-bottom: 100px; }
}

/* --- Small phones 480px --- */
@media (max-width: 480px) {
  .nav-container { height: 60px; }
  .nav-links { top: 60px; }
  .brand-name { font-size: 18px; }
  .countdown-wrap { padding: 16px 20px; }
  .exit-popup-box { padding: 32px 20px; }
  .hero-trust { flex-direction: column; align-items: center; gap: 8px; }
}
