/* =====================================================
   COCO BURN - styles.css
   Design: Bold & Natural Wellness | Deep Teal + Gold
   Fonts: Montserrat (headings) | Open Sans (body)
   ===================================================== */

/* ---- CSS RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0D7377;
  --primary-dark: #0a5c5f;
  --accent: #F4A623;
  --accent-dark: #d48c10;
  --green: #22c55e;
  --text: #1a2a2a;
  --text-light: #4a6060;
  --white: #ffffff;
  --off-white: #f0fafa;
  --soft-bg: #e8f5f5;
  --card-bg: #ffffff;
  --border: #b2dfdf;
  --shadow: 0 4px 24px rgba(13,115,119,0.12);
  --shadow-lg: 0 12px 48px rgba(13,115,119,0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --gradient: linear-gradient(135deg, #0D7377 0%, #14a8ad 50%, #F4A623 100%);
  --gradient-btn: linear-gradient(135deg, #0D7377, #14a8ad);
  --gradient-accent: linear-gradient(135deg, #F4A623, #f7c06a);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

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

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

.section-title {
  font-size: clamp(24px, 4vw, 38px);
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}
.section-title.left-align { text-align: left; }
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.btn-primary {
  background: var(--gradient-btn);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,115,119,0.3);
}
.btn-accent {
  background: var(--gradient-accent);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(244,166,35,0.4);
}
.btn-nav {
  background: var(--accent);
  color: var(--text);
  padding: 10px 22px;
  min-height: 44px;
  font-size: 0.9rem;
}
.btn-lg { font-size: 1.1rem; padding: 16px 40px; min-height: 58px; }
.btn-xl { font-size: 1.2rem; padding: 18px 48px; min-height: 64px; width: 100%; max-width: 460px; }

/* ---- PURCHASE POPUP ---- */
.purchase-popup {
  position: fixed;
  bottom: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: bottom 0.5s cubic-bezier(0.4,0,0.2,1);
  border-left: 4px solid var(--primary);
  max-width: 320px;
  width: calc(100% - 32px);
}
.purchase-popup.show { bottom: 24px; }
.popup-img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.popup-text { flex: 1; font-size: 0.85rem; line-height: 1.4; }
.popup-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-light); font-size: 1rem; padding: 4px; min-width: 28px; min-height: 28px;
}

/* ---- MAIN POPUP ---- */
.main-popup-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.7);
  align-items: center; justify-content: center;
  padding: 20px;
}
.main-popup-overlay.active { display: flex; animation: fadeIn 0.3s ease; }
.main-popup {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease;
}
.main-popup-close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; cursor: pointer;
}
.popup-close-link {
  font-size: 0.75rem; color: var(--text-light);
  padding: 6px 10px; border-radius: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: inline-block;
}
.popup-close-link:hover { background: var(--soft-bg); }
.popup-tag {
  background: var(--gradient-btn);
  color: white;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 16px;
}
.main-popup h3 {
  font-size: clamp(22px, 4vw, 30px);
  margin-bottom: 16px;
  color: var(--text);
}
.main-popup h3 span { color: var(--primary); }
.popup-body { color: var(--text-light); margin-bottom: 24px; }
.popup-cta {
  display: block;
  background: var(--gradient-accent);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.05rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.popup-cta:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }
.popup-note { font-size: 0.75rem; color: var(--text-light); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem;
}
.logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.logo-accent { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-link {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.9rem;
  color: var(--text); transition: color 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: width 0.3s;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.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: 2px;
  background: var(--text); 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); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #e8f5f5 0%, #f0fafa 50%, #fff9e6 100%);
}
.hero-bg-anim { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.3;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.orb1 { width: 400px; height: 400px; background: var(--primary); top: -100px; right: -100px; animation-delay: 0s; }
.orb2 { width: 300px; height: 300px; background: var(--accent); bottom: -80px; left: -80px; animation-delay: 2s; }
.orb3 { width: 200px; height: 200px; background: #22c55e; top: 40%; left: 30%; animation-delay: 4s; }
.orb4 { width: 500px; height: 500px; background: var(--primary); bottom: -200px; left: 20%; animation-delay: 1s; }

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, 30px) scale(1.1); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-image-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-bottle-glow {
  position: absolute; width: 80%; height: 80%; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,115,119,0.2) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
.hero-bottle {
  position: relative; z-index: 1; max-width: 380px; width: 100%;
  animation: bottleFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(13,115,119,0.25));
}
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-badge {
  position: absolute; z-index: 2;
  background: var(--white);
  border-radius: 30px;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.82rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  white-space: nowrap;
  animation: badgePop 0.6s ease backwards;
}
.hero-badge-1 { top: 10%; right: 5%; animation-delay: 0.5s; color: var(--green); }
.hero-badge-2 { bottom: 25%; left: 0%; animation-delay: 0.8s; color: var(--primary); }
.hero-badge-3 { top: 40%; left: -5%; animation-delay: 1.1s; color: var(--accent-dark); }
@keyframes badgePop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.hero-eyebrow {
  display: inline-block;
  background: rgba(13,115,119,0.1);
  color: var(--primary);
  border: 1px solid rgba(13,115,119,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.85rem;
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(28px, 4.5vw, 52px);
  margin-bottom: 20px;
  color: var(--text);
}
.hero-desc {
  font-size: 1.02rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.hero-bullets {
  margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-bullets li {
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text);
}
.hero-cta-wrap { margin-bottom: 20px; }
.hero-cta { width: 100%; max-width: 400px; animation: pulse-btn 2s ease-in-out infinite; }
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 20px rgba(13,115,119,0.3); }
  50% { box-shadow: 0 8px 40px rgba(13,115,119,0.5); }
}
.hero-sub-note { font-size: 0.82rem; color: var(--text-light); margin-top: 10px; }
.hero-stars {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-light);
}
.star-img { height: 24px; width: auto; }

/* ---- WHY CHOOSE ---- */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.badge-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 20px;
  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 { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; }
.badge-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--primary); }
.badge-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ---- WHAT IS ---- */
.what-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.what-content h2 { margin-bottom: 20px; }
.what-content p { margin-bottom: 16px; color: var(--text-light); }
.what-content .btn { margin-top: 16px; }
.what-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ---- HOW IT WORKS ---- */
.accordion-list { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.accordion-header {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  padding: 18px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--text); text-align: left;
  transition: background 0.2s;
  min-height: 64px;
}
.accordion-header:hover { background: var(--soft-bg); }
.accordion-header[aria-expanded="true"] { background: var(--soft-bg); color: var(--primary); }
.acc-icon { font-size: 1.3rem; flex-shrink: 0; }
.accordion-header > span:nth-child(2) { flex: 1; }
.acc-arrow {
  font-size: 0.7rem; transition: transform 0.3s; flex-shrink: 0; color: var(--text-light);
}
.accordion-header[aria-expanded="true"] .acc-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.accordion-body.open { max-height: 400px; padding-bottom: 4px; }
.accordion-body p {
  padding: 0 24px 20px;
  font-size: 0.95rem; color: var(--text-light); line-height: 1.8;
}

/* ---- REVIEWS ---- */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-bottom: 40px;
}
.review-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.reviewer-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.reviewer-photo {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--primary);
  flex-shrink: 0;
}
.reviewer-head strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.reviewer-loc { font-size: 0.8rem; color: var(--text-light); }
.review-stars { font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.stars-img-wrap {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.five-star-img { height: 32px; width: auto; }

/* ---- PRICING ---- */
.countdown-wrap {
  text-align: center; margin-bottom: 40px;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--text-light); margin-bottom: 12px;
}
.countdown-timer {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text); border-radius: var(--radius);
  padding: 16px 32px;
}
.timer-block {
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.timer-block span {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(36px, 6vw, 54px);
  color: var(--accent); line-height: 1;
}
.timer-block small { color: rgba(255,255,255,0.7); font-size: 0.65rem; letter-spacing: 2px; margin-top: 4px; }
.timer-sep { font-size: 3rem; color: var(--accent); font-weight: 900; line-height: 1; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; align-items: start; margin-bottom: 40px;
}
.pricing-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow); border: 2px solid var(--border);
  position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(160deg, #fff9e6 0%, #fff 100%);
  transform: scale(1.04);
}
.pricing-card.popular:hover { transform: scale(1.06) translateY(-4px); }
.popular-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-accent); color: var(--text);
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.78rem;
  padding: 6px 20px; border-radius: 20px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(244,166,35,0.3);
}
.pc-label {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem;
  letter-spacing: 2px; color: var(--primary); margin-bottom: 4px;
}
.pc-bottles {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.4rem;
  color: var(--text); margin-bottom: 4px;
}
.pc-supply { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; }
.pc-img { max-width: 140px; margin: 0 auto 16px; }
.pc-price {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 2.2rem; color: var(--primary); margin-bottom: 6px;
}
.pc-price small { font-size: 0.9rem; font-weight: 600; color: var(--text-light); }
.pc-total { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.pc-total strong { color: var(--green); }
.pc-badges {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px;
}
.free-badge {
  background: rgba(34,197,94,0.1); border: 1px solid var(--green);
  color: #16a34a; font-size: 0.72rem; font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 4px 10px; border-radius: 20px;
}
.pc-btn { width: 100%; margin-bottom: 12px; min-height: 52px; }
.atc-icon { height: 20px; width: auto; }
.pc-cards { max-width: 140px; margin: 0 auto; opacity: 0.7; }

/* ---- BONUSES ---- */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bonus-card {
  background: var(--card-bg); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border); display: flex;
  flex-direction: column; transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bonus-img { width: 100%; height: 200px; object-fit: cover; }
.bonus-info { padding: 24px; flex: 1; }
.bonus-tag {
  display: inline-block;
  background: var(--gradient-btn); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
}
.bonus-info h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.bonus-info p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 8px; }
.bonus-value { font-size: 0.85rem !important; }

/* ---- INGREDIENTS ---- */
.ingredients-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.ing-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 24px 20px; box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: var(--transition);
}
.ing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.ing-icon { font-size: 2rem; margin-bottom: 12px; }
.ing-card h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--text); }
.ing-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ---- SCIENCE ---- */
.science-accordion { max-width: 860px; margin: 0 auto; }

/* ---- GUARANTEE ---- */
.guarantee-inner {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 60px; align-items: center;
}
.guarantee-img { max-width: 240px; margin: 0 auto; }
.guarantee-content h2 { margin-bottom: 16px; }
.guarantee-content > p { margin-bottom: 28px; color: var(--text-light); }
.guarantee-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.gp-item { display: flex; gap: 16px; align-items: flex-start; }
.gp-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.gp-item h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 4px; }
.gp-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ---- BENEFITS ---- */
.benefits-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card-bg); border-radius: var(--radius);
  padding: 24px 20px; box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: var(--transition);
}
.benefit-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-icon { font-size: 2rem; flex-shrink: 0; }
.benefit-item h3 { font-size: 0.95rem; margin-bottom: 6px; }
.benefit-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

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

/* ---- FINAL CTA ---- */
.final-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0D7377 0%, #0a4f52 100%);
  color: var(--white);
}
.final-cta-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.final-cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.final-cta-img-wrap { position: relative; display: flex; justify-content: center; }
.final-cta-img {
  max-width: 360px; width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  animation: bottleFloat 4s ease-in-out infinite;
  position: relative; z-index: 2;
}
.pulse-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px; border-radius: 50%;
  border: 2px solid rgba(244,166,35,0.3);
  animation: pulseRing 2.5s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: translate(-50%,-50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(1.6); opacity: 0; }
}
.final-cta-content .hero-eyebrow {
  background: rgba(255,255,255,0.15); color: var(--accent);
  border-color: rgba(244,166,35,0.3);
}
.final-headline {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 24px; color: var(--white);
}
.final-price-block {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px;
}
.final-old-price { font-size: 1rem; color: rgba(255,255,255,0.6); }
.final-new-price { font-size: 1.6rem; color: var(--accent); font-family: 'Montserrat', sans-serif; font-weight: 900; }
.final-bullets { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.final-bullets li {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,0.9);
}
.final-order-btn { animation: pulse-btn 2s ease-in-out infinite; }
.final-secure { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 12px; }
.final-cards { max-width: 180px; margin-top: 16px; opacity: 0.6; filter: brightness(10); }

/* ---- FOOTER ---- */
.footer { background: var(--text); color: rgba(255,255,255,0.8); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding: 60px 20px;
}
.footer .nav-logo { color: var(--white); }
.footer .logo-text { color: var(--white); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 12px; line-height: 1.6; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: var(--white); font-size: 0.9rem; margin-bottom: 6px;
}
.footer-links-col a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links-col a:hover { color: var(--accent); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.link-separator { color: rgba(255,255,255,0.3); }
.footer-social-col { display: flex; flex-direction: column; gap: 10px; }
.footer-social-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--white); font-size: 0.9rem; }
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; transition: var(--transition);
  min-width: 44px; min-height: 44px;
}
.social-icon:hover { background: var(--primary); transform: scale(1.1); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 20px;
  font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.7;
}
.footer-disclaimer p:first-child { margin-bottom: 12px; }
.footer-copy { color: rgba(255,255,255,0.5); }
.footer-copy a { color: var(--accent); }

/* ---- SCROLL TOP ---- */
.scroll-top {
  position: fixed; bottom: 80px; right: 20px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gradient-btn); color: var(--white);
  border: none; cursor: pointer; font-size: 1.2rem; font-weight: 700;
  box-shadow: var(--shadow-lg); display: none;
  align-items: center; justify-content: center;
  transition: var(--transition);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { transform: scale(1.1) translateY(-2px); }

/* ---- ANIMATIONS ---- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate="fadeInLeft"] { transform: translateX(-40px); }
[data-animate="fadeInRight"] { transform: translateX(40px); }
[data-animate="bounceIn"] { transform: scale(0.8); }
[data-animate].animated { opacity: 1; transform: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* =============================================
   RESPONSIVE — MOBILE FIRST
   ============================================= */
@media (max-width: 1024px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 40px; }
  .hero-bottle { max-width: 300px; }
  .hero-badge-1, .hero-badge-2, .hero-badge-3 { font-size: 0.75rem; padding: 6px 12px; }
}

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

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    gap: 0; padding: 16px 0;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; animation: slideDown 0.3s ease; }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
  .nav-link { padding: 14px 24px; width: 100%; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .btn-nav { margin: 12px 24px; width: calc(100% - 48px); border-radius: 12px; }

  /* Hero */
  .hero { padding: 90px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 240px; margin: 0 auto; }
  .hero-badge { display: none; }
  .hero-headline { font-size: 28px; }
  .hero-bullets { align-items: flex-start; text-align: left; }
  .hero-cta { max-width: 100%; }
  .hero-stars { justify-content: center; }
  .hero-cta-wrap { display: flex; flex-direction: column; align-items: center; }

  /* Layouts */
  .badges-grid { grid-template-columns: 1fr 1fr; }
  .what-inner { grid-template-columns: 1fr; }
  .what-image { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card.popular { transform: scale(1); }
  .bonus-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-img { max-width: 180px; }
  .guarantee-content h2 { text-align: center; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-order-btn { max-width: 100%; }
  .final-bullets { align-items: flex-start; text-align: left; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 576px) {
  .section-pad { padding: 48px 0; }
  .badges-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 24px; }
  .btn-xl { font-size: 1rem; padding: 16px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .countdown-timer { padding: 12px 20px; }
  .timer-block span { font-size: 36px; }
  .final-cta-img { max-width: 220px; }
  .purchase-popup { left: 8px; right: 8px; max-width: none; width: calc(100% - 16px); bottom: -200px; }
  .purchase-popup.show { bottom: 16px; }
  .section-title { font-size: 22px; }
  .what-inner { gap: 24px; }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
