/* ===== CURE FIGHT PRO - MAIN STYLES ===== */
/* Design: Medical Professional + Premium Luxury hybrid */
/* Mobile-First Approach */

:root {
  --primary: #1a3a6b;
  --primary-light: #2563eb;
  --accent: #d4a017;
  --accent-bright: #f59e0b;
  --dark: #0f172a;
  --text: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --bg-light: #f0f7ff;
  --bg-section: #f8fafc;
  --success: #10b981;
  --warning: #ef4444;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(26,58,107,0.12);
  --shadow-lg: 0 8px 48px rgba(26,58,107,0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== 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: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(24px, 5vw, 48px); line-height: 1.2; font-weight: 900; }
h2 { font-size: clamp(20px, 4vw, 36px); line-height: 1.3; font-weight: 800; }
h3 { font-size: clamp(18px, 3vw, 22px); line-height: 1.4; font-weight: 700; }
h4 { font-size: clamp(16px, 2.5vw, 18px); font-weight: 700; }
p { margin-bottom: 1rem; font-size: 16px; line-height: 1.75; }
p:last-child { margin-bottom: 0; }
del { color: var(--warning); }
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.section-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
  font-size: 17px;
  color: var(--text-light);
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-hero, .btn-order, .btn-final, .btn-exit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  width: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
  max-width: 360px;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(37,99,235,0.45); }
.btn-hero {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--dark);
  font-size: 20px;
  box-shadow: 0 6px 28px rgba(212,160,23,0.45);
  animation: pulse-btn 2s infinite;
}
.btn-hero:hover { transform: scale(1.05); box-shadow: 0 10px 40px rgba(212,160,23,0.6); }
@keyframes pulse-btn {
  0%,100% { box-shadow: 0 6px 28px rgba(212,160,23,0.45); }
  50% { box-shadow: 0 6px 40px rgba(212,160,23,0.7); }
}
.btn-order {
  background: linear-gradient(135deg, var(--success), #059669);
  color: var(--white);
  font-size: 16px;
  margin-top: 16px;
  box-shadow: 0 4px 16px rgba(16,185,129,0.35);
}
.btn-order:hover { transform: scale(1.05); box-shadow: 0 8px 28px rgba(16,185,129,0.5); }
.popular-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--dark);
}
.btn-final {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--dark);
  flex-direction: column;
  font-size: 20px;
  padding: 18px 32px;
  box-shadow: 0 6px 32px rgba(212,160,23,0.5);
  animation: pulse-btn 2s infinite;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.btn-final small { font-size: 13px; font-weight: 500; opacity: 0.85; margin-top: 4px; }
.btn-final:hover { transform: scale(1.05); }
.btn-exit {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 1rem;
}

/* ===== TOUCH FEEDBACK ===== */
@media (hover: none) {
  .btn-primary:active, .btn-hero:active, .btn-order:active, .btn-final:active {
    transform: scale(0.98);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}
.nav-logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary-light); background: var(--bg-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright)) !important;
  color: var(--dark) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 4px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 14px 16px; font-size: 17px; }
  .nav-cta { width: 100% !important; justify-content: center !important; }
}

/* ===== HERO ===== */
.hero {
  padding-top: 80px;
  min-height: 100vh;
  background: linear-gradient(160deg, #0f172a 0%, #1a3a6b 45%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212,160,23,0.15);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-bottle-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-bottle {
  width: 220px;
  filter: drop-shadow(0 20px 60px rgba(212,160,23,0.4));
  animation: bottle-float 3s ease-in-out infinite;
  position: relative;
  z-index: 3;
}
@keyframes bottle-float {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
.hero-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,160,23,0.3), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: glow-pulse 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes glow-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.3); opacity: 1; }
}
.hero-ring {
  position: absolute;
  border: 2px solid rgba(212,160,23,0.2);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.ring1 { width: 280px; height: 280px; animation: ring-spin 8s linear infinite; }
.ring2 { width: 360px; height: 360px; animation: ring-spin 12s linear infinite reverse; }
@keyframes ring-spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-content { color: var(--white); text-align: center; }
.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 17px; }
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-stars { height: 28px; width: auto; }
.hero-trust span { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; }

@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 1fr; text-align: left; }
  .hero-content { text-align: left; }
  .hero-trust { justify-content: flex-start; }
  .hero-bottle { width: 300px; }
  .btn-hero { max-width: 420px; }
}

/* ===== WHY US ===== */
.why-us {
  padding: 80px 0;
  background: var(--bg-section);
}
.badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 3rem;
}
.badge-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); }
.badge-icon { margin-bottom: 16px; }
.badge-icon img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto; }
.badge-card h3 { color: var(--primary); margin-bottom: 12px; font-size: 18px; }
.badge-card p { color: var(--text-light); font-size: 15px; margin: 0; }

@media (min-width: 576px) { .badges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .badges-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== WHAT IS ===== */
.what-is {
  padding: 80px 0;
  background: var(--white);
}
.what-is-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.what-is-content h2 { color: var(--dark); margin-bottom: 20px; }
.what-is-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .what-is-inner { grid-template-columns: 1.2fr 0.8fr; }
  .what-is-image { order: 1; }
  .what-is-content { order: 0; }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--dark), #1a3a6b);
  color: var(--white);
}
.how-it-works .section-title { color: var(--white); }
.accordion-list { max-width: 800px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  min-height: 64px;
  gap: 16px;
  transition: var(--transition);
}
.accordion-header:hover { background: rgba(255,255,255,0.05); }
.acc-icon { flex-shrink: 0; transition: transform 0.3s; }
.accordion-item.active .acc-icon { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body p {
  padding: 0 24px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.75;
}
.accordion-item.active .accordion-body { max-height: 300px; }

/* ===== REVIEWS ===== */
.reviews { padding: 80px 0; background: var(--bg-section); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--accent);
}
.review-stars { font-size: 20px; margin-bottom: 10px; }
.review-name { font-size: 15px; color: var(--text-light); margin-bottom: 12px; }
.review-text { font-size: 15px; color: var(--text); font-style: italic; }

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

/* ===== PRICING ===== */
.pricing {
  padding: 80px 0;
  background: linear-gradient(160deg, #1a3a6b, #0f172a);
  color: var(--white);
}
.pricing .section-title { color: var(--white); }
.pricing-sub {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 2rem;
}
.countdown-wrap {
  text-align: center;
  margin-bottom: 3rem;
}
.countdown-label {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 28px;
}
.cd-unit {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.cd-unit span {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 36px;
  font-weight: 900;
  width: 44px;
  text-align: center;
  border-radius: 8px;
  line-height: 1.1;
  padding: 4px 0;
}
.cd-unit small {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cd-colon { font-size: 36px; font-weight: 900; color: var(--accent); line-height: 1; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 3rem;
}
.pricing-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(8px);
}
.pricing-card:hover { transform: translateY(-8px); border-color: var(--accent); }
.pricing-card.popular {
  background: rgba(212,160,23,0.15);
  border: 2px solid var(--accent);
  transform: scale(1.02);
}
.pricing-card.popular:hover { transform: scale(1.02) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--dark);
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}
.pricing-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}
.pricing-qty { font-size: 24px; font-weight: 800; color: var(--white); }
.pricing-supply { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.pricing-card img:not(.payment-logos) {
  width: 140px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 20px rgba(212,160,23,0.3));
}
.pricing-price { font-size: 40px; font-weight: 900; color: var(--white); }
.pricing-price small { font-size: 18px; color: rgba(255,255,255,0.6); }
.pricing-total { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.free-badge {
  display: inline-block;
  background: var(--success);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin: 4px auto;
}
.free-badge.ship { background: var(--primary-light); }
.payment-logos { width: 200px; margin: 12px auto 0; opacity: 0.8; }
.pricing-stars {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
}
.pricing-stars img { height: 32px; width: auto; }

@media (min-width: 576px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== BONUSES ===== */
.bonuses {
  padding: 80px 0;
  background: var(--bg-light);
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 3rem;
}
.bonus-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-8px); border-color: var(--accent); }
.bonus-num {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 20px;
}
.bonus-img-wrap { margin-bottom: 20px; }
.bonus-img-wrap img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  object-fit: cover;
  margin: 0 auto;
}
.bonus-card h3 { color: var(--primary); margin-bottom: 12px; }
.bonus-value {
  margin-top: 16px;
  font-weight: 700;
  color: var(--success);
  font-size: 16px;
}

@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== INGREDIENTS ===== */
.ingredients { padding: 80px 0; background: var(--white); }
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 3rem;
}
.ing-card {
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--primary-light);
  transition: var(--transition);
}
.ing-card:hover { transform: translateX(6px); border-left-color: var(--accent); box-shadow: var(--shadow); }
.ing-card h3 { color: var(--primary); font-size: 17px; margin-bottom: 10px; }
.ing-card p { font-size: 15px; color: var(--text); margin: 0; }
.ing-card em { color: var(--success); font-style: normal; font-weight: 600; }

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

/* ===== SCIENCE ===== */
.science {
  padding: 80px 0;
  background: var(--bg-section);
}
.science-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 3rem;
}
.science-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary-light);
}
.science-card h3 { color: var(--primary); margin-bottom: 12px; }
.science-card p { font-size: 15px; color: var(--text); }
.science-ref { font-size: 13px; color: var(--text-light); margin-top: 12px; display: block; }

@media (min-width: 768px) { .science-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== GUARANTEE ===== */
.guarantee {
  padding: 80px 0;
  background: linear-gradient(160deg, #0f172a, #1a3a6b);
  color: var(--white);
}
.guarantee-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.guarantee-image img {
  width: 220px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 40px rgba(212,160,23,0.3));
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.guarantee-content h2 { color: var(--white); margin-bottom: 20px; }
.guarantee-content > p { color: rgba(255,255,255,0.8); }
.guarantee-points { margin: 24px 0; display: flex; flex-direction: column; gap: 20px; }
.g-point { display: flex; gap: 16px; align-items: flex-start; }
.g-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.g-point h4 { color: var(--accent); margin-bottom: 6px; }
.g-point p { color: rgba(255,255,255,0.75); font-size: 15px; margin: 0; }

@media (min-width: 768px) {
  .guarantee-inner { grid-template-columns: 0.5fr 1.5fr; }
  .guarantee-image { text-align: center; }
}

/* ===== BENEFITS ===== */
.benefits { padding: 80px 0; background: var(--bg-section); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 3rem;
}
.benefit-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  align-items: flex-start;
  transition: var(--transition);
}
.benefit-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-icon { font-size: 28px; flex-shrink: 0; }
.benefit-item h3 { color: var(--primary); margin-bottom: 8px; }
.benefit-item p { font-size: 15px; color: var(--text-light); margin: 0; }

@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--white); }
.faq-list { max-width: 800px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-section);
  border: none;
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  min-height: 64px;
  gap: 16px;
  transition: var(--transition);
}
.faq-header:hover { background: var(--bg-light); color: var(--primary); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--primary-light); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-body p { padding: 16px 24px 20px; color: var(--text); font-size: 16px; line-height: 1.75; margin: 0; }
.faq-item.active .faq-body { max-height: 300px; }
.faq-item.active .faq-header { color: var(--primary); background: var(--bg-light); }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--dark), #1a3a6b, #0f2a5e);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,0.1) 0%, transparent 70%);
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}
.final-cta-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.final-cta-image img {
  width: 240px;
  animation: bottle-float 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(212,160,23,0.4));
}
.final-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212,160,23,0.25), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: glow-pulse 2s ease-in-out infinite;
}
.urgency-badge {
  display: inline-block;
  background: var(--warning);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  animation: urgency-flash 1.5s ease-in-out infinite;
}
@keyframes urgency-flash {
  0%,100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.final-cta-content h2 { color: var(--white); margin-bottom: 16px; }
.final-cta-content p { color: rgba(255,255,255,0.8); font-size: 17px; }
.final-price { margin: 24px 0; }
.old-price { font-size: 18px; color: rgba(255,255,255,0.5); display: block; margin-bottom: 8px; }
.new-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 4px 20px rgba(212,160,23,0.5);
}
.final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.final-trust img { height: 28px; width: auto; }

@media (min-width: 768px) {
  .final-cta-inner { grid-template-columns: 0.5fr 1.5fr; text-align: left; }
  .urgency-badge, .btn-final { margin-left: 0; }
  .btn-final { margin-right: auto; }
  .final-trust { justify-content: flex-start; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
}
.footer-brand img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-link:hover { background: var(--primary-light); color: var(--white); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 4px;
  margin-bottom: 32px;
  font-size: 14px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  padding: 4px 8px;
}
.footer-links a:hover { color: var(--accent); }
.footer-links span { color: rgba(255,255,255,0.3); }
.footer-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 24px;
}
.footer-disclaimer p { margin-bottom: 12px; color: rgba(255,255,255,0.45); }
.footer-copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-copy a { color: var(--accent); }

@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; }
}

/* ===== PURCHASE POPUP ===== */
.purchase-popup {
  position: fixed;
  bottom: 24px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateY(200%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  border-left: 4px solid var(--success);
  max-width: 400px;
}
.purchase-popup.show { transform: translateY(0); }
.pp-icon { font-size: 28px; flex-shrink: 0; }
.pp-text { flex: 1; font-size: 14px; color: var(--text); line-height: 1.4; }
.pp-text strong { display: block; color: var(--dark); }
.pp-text small { color: var(--text-light); font-size: 12px; }
.pp-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-light);
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 576px) {
  .purchase-popup { right: auto; max-width: 360px; }
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-4px); }

/* ===== EXIT POPUP ===== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.exit-popup-overlay.show { opacity: 1; pointer-events: auto; }
.exit-popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.exit-popup-overlay.show .exit-popup-box { transform: scale(1); }
.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-section);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}
.exit-popup-content h3 { color: var(--dark); font-size: 24px; margin-bottom: 16px; }
.exit-popup-content p { color: var(--text); margin-bottom: 20px; }
.exit-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 24px;
}
.exit-dismiss {
  display: block;
  color: var(--text-light);
  font-size: 13px;
  text-align: center;
  text-decoration: underline;
  margin-top: 12px;
  cursor: pointer;
}

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

/* ===== SECTION PADDING ===== */
section { padding: 80px 0; }

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

/* ===== MOBILE OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.nav-overlay.show { display: block; }
