/* ============================================================
   PROGENTRA - LANDING PAGE STYLES
   Design: Bold & Premium | Mobile-First
   Fonts: Montserrat (headings) + Open Sans (body)
   Colors: #1a1a2e (deep navy), #c0392b (power red),
           #f39c12 (gold), #ffffff (white)
============================================================ */

/* ---- 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: #0f0e17;
  color: #e8e8f0;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CSS VARIABLES ---- */
:root {
  --red: #e63946;
  --gold: #f4a261;
  --navy: #1a1a2e;
  --dark: #0f0e17;
  --card-bg: #16213e;
  --card-border: rgba(228,57,70,0.2);
  --accent: #f4a261;
  --white: #ffffff;
  --text: #c8c8d8;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(228,57,70,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
h1 { font-size: clamp(26px, 5vw, 52px); font-weight: 900; }
h2 { font-size: clamp(22px, 4vw, 40px); }
h3 { font-size: clamp(18px, 3vw, 26px); }
h4 { font-size: clamp(16px, 2.5vw, 20px); }
p { font-size: clamp(15px, 1.5vw, 17px); color: var(--text); line-height: 1.75; }

/* ---- GRADIENT TEXT ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ---- SECTION COMMON ---- */
section { padding: 60px 0; }
.section-title {
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- FADE IN ANIMATION ---- */
.fade-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-card.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-card { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAVIGATION
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15,14,23,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228,57,70,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(15,14,23,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.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; border-radius: 8px; object-fit: cover; }
.logo-text { background: linear-gradient(135deg, var(--red), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ccc;
  transition: color var(--transition);
  letter-spacing: 0.3px;
}
.nav-link:hover { color: var(--gold); }
.nav-cta-btn {
  background: linear-gradient(135deg, var(--red), #b91c1c);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  min-height: 44px;
  display: flex; align-items: center;
}
.nav-cta-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(228,57,70,0.5); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  min-width: 44px; min-height: 44px;
  justify-content: center; align-items: center;
}
.hamburger span {
  width: 24px; height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: rgba(15,14,23,0.98);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    border-bottom: 1px solid rgba(228,57,70,0.2);
    backdrop-filter: blur(10px);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 14px 28px; font-size: 16px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta-btn { margin: 14px 28px 0; width: calc(100% - 56px); justify-content: center; font-size: 16px; padding: 14px 22px; }
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  min-height: 100vh;
  padding-top: 80px;
  background: radial-gradient(ellipse at 20% 50%, rgba(228,57,70,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(244,162,97,0.1) 0%, transparent 50%),
              var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-container {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-image-wrap {
  flex: 0 0 40%;
  max-width: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow-ring {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,57,70,0.25) 0%, transparent 70%);
  animation: pulseRing 3s ease-in-out infinite;
}
@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.12); opacity: 1; }
}
.hero-bottle {
  position: relative;
  z-index: 2;
  max-height: 480px;
  width: auto;
  object-fit: contain;
  animation: floatBottle 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(228,57,70,0.4));
}
@keyframes floatBottle {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
.hero-badge-float {
  position: absolute;
  background: linear-gradient(135deg, var(--red), #b91c1c);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(228,57,70,0.4);
  z-index: 3;
  animation: badgeFloat 3s ease-in-out infinite;
}
.badge-1 { top: 20px; right: -10px; animation-delay: 0s; }
.badge-2 { bottom: 40px; left: -10px; animation-delay: 1.5s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-content { flex: 1; }
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-h1 {
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-desc { margin-bottom: 16px; font-size: 16px; }
.hero-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-stars img { height: 28px; width: auto; }
.hero-stars span { font-size: 14px; color: var(--gold); font-weight: 600; }
.hero-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, #b91c1c 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(228,57,70,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 56px;
  letter-spacing: 0.5px;
  text-align: center;
}
.hero-cta-btn:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(228,57,70,0.6); }
.hero-cta-btn:active { transform: scale(0.98); }
.hero-sub-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 767px) {
  .hero-section { padding-top: 70px; min-height: auto; }
  .hero-container { flex-direction: column; gap: 28px; }
  .hero-image-wrap { flex: none; max-width: 240px; width: 240px; }
  .hero-glow-ring { width: 220px; height: 220px; }
  .hero-bottle { max-height: 260px; }
  .badge-1 { top: 0px; right: 0px; font-size: 10px; padding: 6px 10px; }
  .badge-2 { bottom: 10px; left: 0px; font-size: 10px; padding: 6px 10px; }
  .hero-content { text-align: center; }
  .hero-stars { justify-content: center; }
  .hero-cta-btn { width: 100%; display: block; font-size: 16px; padding: 16px 28px; }
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section {
  background: linear-gradient(180deg, #0f0e17 0%, #16213e 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow); border-color: var(--red); }
.why-icon { width: 70px; height: 70px; object-fit: contain; margin: 0 auto 16px; }
.why-card h3 { font-size: 16px; margin-bottom: 10px; color: #fff; }
.why-card p { font-size: 14px; line-height: 1.6; }

@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHAT IS PROGENTRA
============================================================ */
.what-section { background: var(--dark); }
.what-container {
  display: flex;
  align-items: center;
  gap: 48px;
}
.what-image {
  flex: 0 0 45%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(228,57,70,0.2);
}
.what-image img { width: 100%; border-radius: 20px; }
.what-content { flex: 1; }
.what-content h2 { margin-bottom: 20px; }
.what-content p { margin-bottom: 16px; }
.section-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), #b91c1c);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  margin-top: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
  display: inline-flex; align-items: center;
}
.section-cta-btn:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(228,57,70,0.4); }

@media (max-width: 767px) {
  .what-container { flex-direction: column-reverse; gap: 24px; }
  .what-image { flex: none; width: 100%; }
  .section-cta-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-section {
  background: linear-gradient(180deg, #16213e 0%, #0f0e17 100%);
}
.accordion, .faq-accordion, .science-accordion { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accord-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
}
.accord-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-align: left;
  min-height: 56px;
  gap: 12px;
  transition: background var(--transition);
}
.accord-header:hover { background: rgba(228,57,70,0.08); }
.accord-header[aria-expanded="true"] { background: rgba(228,57,70,0.12); color: var(--gold); }
.accord-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--red);
  transition: transform var(--transition);
  flex-shrink: 0;
  min-width: 24px; text-align: center;
}
.accord-header[aria-expanded="true"] .accord-icon { transform: rotate(45deg); }
.accord-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 22px;
}
.accord-body.open { max-height: 500px; padding: 0 22px 20px; }
.accord-body p { font-size: 15px; }

/* ============================================================
   CUSTOMER REVIEWS
============================================================ */
.reviews-section { background: var(--dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 3px solid var(--red); flex-shrink: 0; }
.review-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: #fff; }
.review-location { font-size: 13px; color: var(--text); margin-top: 2px; }
.stars { font-size: 16px; }
.review-text { font-size: 15px; line-height: 1.7; }

@media (max-width: 767px) { .reviews-grid { grid-template-columns: 1fr; } }
@media (min-width: 576px) and (max-width: 767px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   PRICING SECTION
============================================================ */
.pricing-section {
  background: linear-gradient(180deg, #0f0e17 0%, #16213e 100%);
}
.pricing-section-2 {
  background: linear-gradient(180deg, #16213e 0%, #0f0e17 100%);
}
.countdown-wrap {
  text-align: center;
  margin-bottom: 36px;
}
.countdown-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: var(--gold); margin-bottom: 12px; }
.countdown-timer { display: inline-flex; align-items: center; gap: 8px; }
.cdown-box {
  background: linear-gradient(135deg, var(--red), #b91c1c);
  border-radius: 10px;
  padding: 14px 22px;
  display: flex; flex-direction: column; align-items: center;
  min-width: 80px;
}
.cdown-box span { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 36px; color: #fff; line-height: 1; }
.cdown-box small { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 1.5px; margin-top: 4px; }
.cdown-sep { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; color: var(--red); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.popular-card {
  border-color: var(--gold);
  background: linear-gradient(180deg, #1c1a2e 0%, #16213e 100%);
  transform: scale(1.04);
}
.popular-card:hover { transform: scale(1.04) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #d4880e);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
}
.price-bottles { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; color: #fff; }
.price-supply { font-size: 13px; color: var(--text); }
.price-img { max-height: 140px; object-fit: contain; margin: 8px auto; }
.price-per { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; color: var(--gold); }
.price-per small { font-size: 14px; font-weight: 400; color: var(--text); }
.price-total { font-size: 15px; color: var(--text); }
.price-total strong { color: #fff; font-size: 18px; }
.price-total s { color: #666; }
.price-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.bonus-badge, .ship-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.bonus-badge { background: rgba(244,162,97,0.2); color: var(--gold); border: 1px solid var(--gold); }
.ship-badge { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(74,222,128,0.5); }
.price-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), #b91c1c);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 50px;
  width: 100%;
  min-height: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(228,57,70,0.35);
}
.price-cta-btn:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(228,57,70,0.5); }
.price-cta-btn:active { transform: scale(0.98); }
.popular-btn { background: linear-gradient(135deg, var(--gold), #d4880e); box-shadow: 0 4px 16px rgba(244,162,97,0.4); }
.popular-btn:hover { box-shadow: 0 8px 24px rgba(244,162,97,0.6); }
.payment-logos { max-height: 28px; object-fit: contain; margin: 0 auto; opacity: 0.7; }
.pricing-stars { text-align: center; margin-top: 32px; }
.pricing-stars img { height: 32px; margin: 0 auto 8px; }
.pricing-stars p { font-size: 14px; color: var(--gold); font-weight: 600; }

@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .popular-card { transform: scale(1); }
  .popular-card:hover { transform: translateY(-8px); }
  .cdown-box span { font-size: 28px; }
  .cdown-box { padding: 12px 18px; min-width: 70px; }
}
@media (min-width: 576px) and (max-width: 767px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   BONUS SECTION
============================================================ */
.bonus-section { background: var(--dark); }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.bonus-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  gap: 0;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bonus-card img { width: 100%; max-height: 220px; object-fit: cover; }
.bonus-info { padding: 24px 22px; }
.bonus-num {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), #b91c1c);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.bonus-info h3 { margin-bottom: 10px; font-size: 20px; }
.bonus-info p { font-size: 15px; }

@media (max-width: 767px) { .bonus-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INGREDIENTS
============================================================ */
.ingredients-section {
  background: linear-gradient(180deg, #16213e 0%, #0f0e17 100%);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ingredient-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 18px;
  transition: transform var(--transition), border-color var(--transition);
}
.ingredient-card:hover { transform: translateY(-4px); border-color: var(--red); }
.ingredient-card h3 { font-size: 16px; margin-bottom: 10px; color: #fff; }
.ingredient-card p { font-size: 14px; }

@media (max-width: 991px) { .ingredients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .ingredients-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SCIENCE
============================================================ */
.science-section { background: var(--dark); }

/* ============================================================
   MONEY BACK GUARANTEE
============================================================ */
.guarantee-section {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}
.guarantee-container {
  display: flex;
  align-items: center;
  gap: 48px;
}
.guarantee-image { flex: 0 0 35%; text-align: center; }
.guarantee-image img { max-width: 280px; width: 100%; margin: 0 auto; }
.guarantee-content { flex: 1; }
.guarantee-content h2 { margin-bottom: 16px; }
.guarantee-content > p { margin-bottom: 28px; }
.guarantee-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.g-point { display: flex; gap: 16px; align-items: flex-start; }
.g-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.g-point h4 { color: #fff; margin-bottom: 6px; font-size: 17px; }
.g-point p { font-size: 14px; }

@media (max-width: 767px) {
  .guarantee-container { flex-direction: column; gap: 24px; text-align: center; }
  .guarantee-image { flex: none; }
  .g-point { text-align: left; }
}

/* ============================================================
   BENEFITS
============================================================ */
.benefits-section { background: var(--dark); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.benefit-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--transition), border-color var(--transition);
}
.benefit-item:hover { transform: translateX(6px); border-color: var(--red); }
.benefit-icon { font-size: 32px; flex-shrink: 0; line-height: 1; }
.benefit-item h4 { color: #fff; margin-bottom: 6px; font-size: 16px; }
.benefit-item p { font-size: 14px; }

@media (max-width: 767px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  background: linear-gradient(180deg, #16213e 0%, #0f0e17 100%);
}

/* ============================================================
   FINAL CTA SECTION
============================================================ */
.final-cta-section {
  background: radial-gradient(ellipse at 50% 50%, rgba(228,57,70,0.2) 0%, rgba(15,14,23,0.95) 70%),
              var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.final-cta-particles { position: absolute; inset: 0; pointer-events: none; }
.final-cta-container {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative; z-index: 1;
}
.final-cta-image { flex: 0 0 40%; text-align: center; }
.final-cta-image img {
  max-width: 320px; width: 100%; margin: 0 auto;
  animation: floatBottle 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(228,57,70,0.5));
}
.final-cta-content { flex: 1; }
.final-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}
.final-cta-h2 { margin-bottom: 24px; line-height: 1.25; }
.final-price-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.final-old-price { font-size: 16px; color: #888; font-weight: 500; }
.final-old-price s { font-weight: 700; }
.final-new-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--gold);
}
.final-desc { margin-bottom: 28px; font-size: 16px; }
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), #b91c1c);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 19px;
  padding: 20px 44px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(228,57,70,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 60px;
  letter-spacing: 0.5px;
}
.final-cta-btn:hover { transform: scale(1.05); box-shadow: 0 14px 40px rgba(228,57,70,0.65); }
.final-cta-btn:active { transform: scale(0.98); }
.pulse-btn { animation: pulseBtn 2.5s ease-in-out infinite; }
@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 8px 30px rgba(228,57,70,0.5); }
  50% { box-shadow: 0 8px 50px rgba(228,57,70,0.85), 0 0 0 12px rgba(228,57,70,0.12); }
}
.final-trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.final-trust-badges span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 50px;
}

@media (max-width: 767px) {
  .final-cta-container { flex-direction: column; gap: 28px; text-align: center; }
  .final-cta-image { flex: none; }
  .final-price-wrap { justify-content: center; }
  .final-cta-btn { width: 100%; font-size: 17px; padding: 18px 28px; }
  .final-trust-badges { justify-content: center; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #080810;
  border-top: 1px solid rgba(228,57,70,0.2);
  padding-top: 48px;
}
.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 32px;
}
.footer-logo { width: 60px; border-radius: 10px; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: var(--text); margin-bottom: 16px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  color: #ccc;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-icon:hover { background: var(--red); color: #fff; border-color: var(--red); }
.footer-links-col h4 { font-size: 15px; margin-bottom: 14px; color: #fff; }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.legal-link { font-size: 13px; color: var(--text); transition: color var(--transition); }
.legal-link:hover { color: var(--gold); }
.link-separator { color: #555; font-size: 12px; }
.footer-disclaimer { font-size: 12px; color: #666; line-height: 1.7; }
.footer-bottom {
  text-align: center;
  padding: 18px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: #555;
  margin-top: 32px;
}
.footer-bottom a { color: var(--gold); }

@media (max-width: 767px) {
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
  .footer-legal-links { justify-content: center; }
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #b91c1c);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(228,57,70,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px) scale(1.08); }

/* ============================================================
   NOTIFICATION POPUP
============================================================ */
.notif-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #fff;
  color: #222;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  max-width: 300px;
  transform: translateX(-150%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  font-size: 13px;
}
.notif-popup.show { transform: translateX(0); }
.notif-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.notif-text strong { font-weight: 700; display: block; }
.notif-close {
  font-size: 16px;
  color: #999;
  padding: 4px;
  min-width: 28px; min-height: 28px;
  flex-shrink: 0;
  margin-left: auto;
}
.notif-close:hover { color: #333; }

@media (max-width: 575px) {
  .notif-popup { left: 12px; right: 12px; max-width: none; bottom: 80px; }
}

/* ============================================================
   MAIN POPUP (EXIT INTENT / SCROLL)
============================================================ */
.main-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.main-popup-overlay.active { opacity: 1; pointer-events: all; }
.main-popup-box {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid var(--red);
  border-radius: 20px;
  padding: 40px 32px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.main-popup-overlay.active .main-popup-box { transform: scale(1); }
.main-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.main-popup-close:hover { background: var(--red); }
.popup-eyebrow { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 2px; color: var(--red); text-transform: uppercase; margin-bottom: 12px; }
.main-popup-content h3 { font-size: 26px; margin-bottom: 14px; color: #fff; }
.main-popup-content h3 span { color: var(--gold); }
.main-popup-content > p { font-size: 15px; margin-bottom: 24px; }
.popup-cta-btn {
  display: block;
  background: linear-gradient(135deg, var(--red), #b91c1c);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 16px 28px;
  border-radius: 50px;
  margin-bottom: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.popup-cta-btn:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(228,57,70,0.5); }
.popup-close-link {
  display: block;
  font-size: 13px;
  color: #666;
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition);
}
.popup-close-link:hover { color: #999; }

@media (max-width: 575px) {
  .main-popup-box { padding: 36px 22px 26px; }
  .main-popup-content h3 { font-size: 22px; }
}

/* ============================================================
   PARTICLES CANVAS
============================================================ */
.hero-particles canvas,
.final-cta-particles canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ============================================================
   UTILITY — SPACING FIXES
============================================================ */
main { padding-top: 65px; }
@media (max-width: 767px) { main { padding-top: 60px; } }
