/* ===========================
   GLYCOCUT - STYLES.CSS
   Design: Medical Premium Green
   =========================== */

/* Google Fonts imported in HTML */

:root {
  --green: #16a34a;
  --green-dark: #14532d;
  --green-light: #86efac;
  --green-bg: #f0fdf4;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --text: #1a1a2e;
  --text-light: #4b5563;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border: #d1fae5;
  --shadow: 0 4px 24px rgba(22,163,74,0.10);
  --shadow-lg: 0 8px 40px rgba(22,163,74,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

* { -webkit-tap-highlight-color: transparent; }

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

input, select, textarea { font-size: 16px; }

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

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

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

.gradient-text {
  background: linear-gradient(135deg, var(--green), #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  min-height: 56px;
  box-shadow: 0 6px 24px rgba(22,163,74,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  line-height: 1.3;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 10px 36px rgba(22,163,74,0.45); }
.btn-primary:active { transform: scale(0.98); }
.btn-sub { font-size: 0.72rem; font-weight: 500; opacity: 0.85; font-family: 'Open Sans', sans-serif; }

.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(22,163,74,0.35); }
  50% { box-shadow: 0 6px 36px rgba(22,163,74,0.6), 0 0 0 8px rgba(22,163,74,0.1); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.navbar.scrolled { padding: 0; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--green-dark);
  flex-shrink: 0;
}
.nav-logo img { border-radius: 8px; width: 40px; height: 40px; object-fit: cover; }

.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;
  white-space: nowrap;
}
.nav-link:hover { color: var(--green); }

.btn-nav-cta {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.btn-nav-cta:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(22,163,74,0.4); }

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

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #052e16 0%, #14532d 40%, #166534 70%, #15803d 100%);
  overflow: hidden;
  padding: 60px 0 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(34,197,94,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245,158,11,0.1) 0%, transparent 40%);
  animation: bgPulse 8s ease-in-out infinite;
}
@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

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

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34,197,94,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

.hero-bottle {
  max-width: 320px;
  width: 100%;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

.hero-badge-float {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 50px;
  animation: floatBadge 3s ease-in-out infinite 1s;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-content { color: #fff; }
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #86efac;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(134,239,172,0.3);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-h1 .gradient-text {
  background: linear-gradient(135deg, #86efac, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.75;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.hero-stars span { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

.btn-hero { font-size: 1.2rem; padding: 20px 44px; width: 100%; max-width: 420px; }

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero-trust span {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ===== SECTIONS SHARED ===== */
section { padding: 80px 0; }
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* ===== WHY CHOOSE ===== */
.why-choose { background: var(--green-bg); }
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.badge-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
}
.badge-card.visible { opacity: 1; transform: translateY(0); }
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); }
.badge-card img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; border-radius: 12px; }
.badge-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 10px; }
.badge-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ===== WHAT IS ===== */
.what-is { background: var(--white); }
.what-is-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-is-img { position: relative; }
.what-is-img img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.what-is-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
.what-is-content h2 { font-size: 2rem; margin-bottom: 20px; color: var(--text); }
.what-is-content p { margin-bottom: 16px; color: var(--text-light); line-height: 1.75; }
.what-is-content .btn-primary { margin-top: 8px; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--green-bg); }
.accordion-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
  min-height: 60px;
  transition: background 0.2s;
}
.accordion-header:hover { background: var(--green-bg); }
.accordion-header[aria-expanded="true"] { background: var(--green-bg); color: var(--green-dark); }
.acc-icon { font-size: 1.3rem; flex-shrink: 0; }
.acc-arrow {
  margin-left: auto;
  font-size: 0.8rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--green);
}
.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.4s ease;
  padding: 0 20px;
}
.accordion-body.open { max-height: 400px; padding: 0 20px 20px; }
.accordion-body p { color: var(--text-light); line-height: 1.75; font-size: 0.95rem; }

/* ===== REVIEWS ===== */
.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--green-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-header img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
}
.review-header strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; }
.review-header span { font-size: 0.8rem; color: var(--text-light); }
.stars { color: #fbbf24; font-size: 0.85rem; margin-top: 3px; }
.review-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }
.reviews-rating-img { text-align: center; }
.reviews-rating-img img { max-width: 240px; margin: 0 auto; }

/* ===== PRICING ===== */
.pricing { background: linear-gradient(135deg, #052e16, #14532d); }
.pricing .section-title { color: #fff; }
.pricing .section-sub { color: rgba(255,255,255,0.7); }

.countdown-box {
  text-align: center;
  margin-bottom: 40px;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.2);
}
.time-block { display: flex; flex-direction: column; align-items: center; }
.time-block span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  min-width: 72px;
  text-align: center;
}
.time-block small { color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 1px; margin-top: 4px; }
.time-sep { font-size: 2rem; color: #fbbf24; font-weight: 900; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.price-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.price-card:hover { transform: translateY(-6px); }

.price-featured {
  background: #fff;
  border-color: var(--accent);
  transform: scale(1.04);
  box-shadow: 0 12px 50px rgba(245,158,11,0.3);
  z-index: 2;
}
.price-featured:hover { transform: scale(1.04) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}

.price-label { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--green); letter-spacing: 2px; margin-bottom: 6px; }
.price-bottles { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--text); }
.price-supply { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; }
.price-card img:not(.atc-img):not(.cards-img) { max-height: 160px; margin: 0 auto 16px; object-fit: contain; }
.price-badges-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 12px; }
.free-badge { background: #dcfce7; color: var(--green-dark); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.72rem; padding: 4px 10px; border-radius: 50px; border: 1px solid var(--green-light); }
.price-amount { font-size: 1.1rem; margin-bottom: 4px; }
.old-price { text-decoration: line-through; color: #9ca3af; margin-right: 6px; }
.new-price { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--green-dark); }
.price-per { font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px; }
.btn-order { width: 100%; margin-bottom: 12px; font-size: 1rem; padding: 14px 20px; flex-direction: row; gap: 8px; }
.btn-featured { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 6px 24px rgba(245,158,11,0.4); }
.atc-img { height: 22px; width: auto; }
.cards-img { max-height: 28px; margin: 0 auto; object-fit: contain; }

/* ===== BONUSES ===== */
.bonuses { background: var(--green-bg); }
.bonuses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bonus-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  position: relative;
  transition: transform 0.3s;
}
.bonus-card:hover { transform: translateY(-4px); }
.bonus-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.bonus-card img { max-height: 160px; margin: 16px auto; object-fit: contain; }
.bonus-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 12px; }
.bonus-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 14px; }
.bonus-value { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--green); font-size: 0.95rem; }

/* ===== INGREDIENTS ===== */
.ingredients { background: var(--white); }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ingredient-card {
  background: var(--green-bg);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  border: 2px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(24px);
}
.ingredient-card.visible { opacity: 1; transform: translateY(0); }
.ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ing-icon { font-size: 2rem; margin-bottom: 10px; }
.ingredient-card h3 { font-size: 0.98rem; color: var(--green-dark); margin-bottom: 8px; }
.ingredient-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; }

/* ===== SCIENCE ===== */
.science { background: var(--green-bg); }
.science-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.science-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== GUARANTEE ===== */
.guarantee { background: var(--white); }
.guarantee-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.guarantee-img img { border-radius: 50%; max-width: 280px; margin: 0 auto; box-shadow: 0 12px 40px rgba(22,163,74,0.2); }
.guarantee-content h2 { font-size: 1.8rem; margin-bottom: 12px; color: var(--text); }
.guarantee-intro { color: var(--text-light); margin-bottom: 24px; }
.guarantee-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.guarantee-point { display: flex; gap: 16px; align-items: flex-start; }
.gp-icon { font-size: 1.8rem; flex-shrink: 0; }
.guarantee-point h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 4px; }
.guarantee-point p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ===== BENEFITS ===== */
.benefits { background: var(--green-bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.benefit-item.visible { opacity: 1; transform: translateY(0); }
.benefit-item:hover { transform: translateY(-2px); }
.benefit-check { font-size: 1.4rem; flex-shrink: 0; }
.benefit-item h3 { font-size: 0.95rem; color: var(--green-dark); margin-bottom: 5px; }
.benefit-item p { font-size: 0.86rem; color: var(--text-light); line-height: 1.6; }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-list .accordion-item { border: 2px solid var(--border); }

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #052e16 0%, #14532d 50%, #16a34a 100%);
  padding: 100px 0;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(34,197,94,0.2) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(245,158,11,0.15) 0%, transparent 50%);
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.final-cta-img { position: relative; text-align: center; }
.final-bottle {
  max-width: 300px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  animation: float 4s ease-in-out infinite;
}
.final-shine {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
.final-cta-content { color: #fff; }
.final-tag {
  display: inline-block;
  background: rgba(245,158,11,0.2);
  color: #fbbf24;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(251,191,36,0.3);
  margin-bottom: 16px;
}
.final-cta-content h2 { font-size: 2.4rem; font-weight: 900; color: #fff; margin-bottom: 4px; }
.final-cta-content h3 { font-size: 1.3rem; color: #86efac; margin-bottom: 20px; font-weight: 600; }
.final-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.final-old { font-size: 1rem; color: rgba(255,255,255,0.6); }
.final-new { font-size: 1.5rem; font-family: 'Montserrat', sans-serif; font-weight: 900; color: #fbbf24; }
.final-cta-content p { color: rgba(255,255,255,0.8); margin-bottom: 28px; line-height: 1.7; }
.btn-final { font-size: 1.15rem; padding: 20px 40px; width: 100%; max-width: 460px; }
.final-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.final-trust span { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-family: 'Montserrat', sans-serif; font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: #052e16; color: rgba(255,255,255,0.8); padding: 60px 0 30px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand img { border-radius: 10px; }
.footer-brand span { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.3rem; color: #fff; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; opacity: 0.75; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { font-family: 'Montserrat', sans-serif; color: #fff; margin-bottom: 6px; }
.footer-links a { font-size: 0.88rem; opacity: 0.75; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--green-light); }
.footer-legal-col h4 { font-family: 'Montserrat', sans-serif; color: #fff; margin-bottom: 12px; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.legal-link { font-size: 0.85rem; opacity: 0.75; transition: opacity 0.2s; margin: 2px; }
.legal-link:hover { opacity: 1; color: var(--green-light); }
.link-separator { opacity: 0.35; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.social-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: var(--green); color: #fff; }
.footer-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.55;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.footer-disclaimer p + p { margin-top: 8px; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(22,163,74,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-dark); }

/* ===== PURCHASE POPUP ===== */
.purchase-popup {
  position: fixed;
  bottom: 90px;
  left: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-left: 4px solid var(--green);
  max-width: 280px;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1200;
}
.purchase-popup.show { opacity: 1; transform: translateX(0); }
.popup-icon { font-size: 1.5rem; flex-shrink: 0; }
.popup-text { font-size: 0.82rem; color: var(--text); line-height: 1.4; }
.popup-text strong { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; }
.popup-text small { color: var(--text-light); }
.popup-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  font-size: 0.9rem;
  padding: 4px;
  margin-left: auto;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== EXIT POPUP ===== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.exit-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup {
  background: #fff;
  border-radius: 24px;
  padding: 48px 36px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
  border-top: 6px solid var(--green);
}
.exit-overlay.active .exit-popup { transform: scale(1); }
.exit-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  min-height: 36px;
}
.exit-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.exit-popup h2 { font-size: 1.6rem; margin-bottom: 12px; color: var(--text); }
.exit-popup p { color: var(--text-light); margin-bottom: 20px; line-height: 1.65; }
.exit-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--green-bg);
  border-radius: 12px;
}
.exit-old { text-decoration: line-through; color: #9ca3af; }
.exit-new { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--green-dark); }
.exit-popup .btn-primary { width: 100%; }
.exit-guarantee { font-size: 0.82rem; color: var(--text-light); margin-top: 12px; }
.exit-decline {
  display: block;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
}

/* ===== ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(40px); transition-delay: var(--delay, 0s); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
  opacity: 1; transform: translate(0);
}

/* fade-float for hero image wrapper */
.fade-float { animation: fadeIn 1s ease forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== PRICING 2 BG ===== */
.pricing-2 { background: linear-gradient(135deg, #052e16, #14532d); }

/* ===================================
   RESPONSIVE — TABLET (768px)
   =================================== */
@media (max-width: 991px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-h1 { font-size: 2rem; }
  .hero-image { order: -1; }
  .hero-bottle { max-width: 220px; }
  .btn-hero { max-width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-stars { justify-content: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }

  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .what-is-inner { grid-template-columns: 1fr; }
  .what-is-img { order: -1; }
  .what-is-badge { right: 8px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-featured { transform: scale(1); }
  .price-featured:hover { transform: translateY(-6px); }
  .bonuses-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-inner { grid-template-columns: 1fr; }
  .guarantee-img { text-align: center; }
  .guarantee-img img { margin: 0 auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-trust { justify-content: center; }
  .final-bottle { max-width: 220px; }
  .btn-final { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-links { align-items: center; }
  .footer-legal-col { align-items: center; }
  .footer-legal-links { justify-content: center; }
  section { padding: 60px 0; }
}

@media (max-width: 767px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 75%; max-width: 300px; background: #fff; padding: 80px 28px 40px; gap: 12px; z-index: 1100; box-shadow: -4px 0 30px rgba(0,0,0,0.15); transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 12px 0; border-bottom: 1px solid var(--border); min-height: 48px; display: flex; align-items: center; }
  .btn-nav-cta { margin-top: 8px; justify-content: center; }
  .hamburger { display: flex; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1099; }
  .nav-overlay.show { display: block; }

  .section-title { font-size: 1.6rem; }
  .section-sub { font-size: 0.92rem; }
  .hero { min-height: auto; padding: 50px 0 70px; }
  .hero-h1 { font-size: 1.6rem; }
  .hero-bottle { max-width: 180px; }
  .hero-badge-float { font-size: 0.72rem; }

  .badges-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .time-block span { font-size: 2.2rem; min-width: 56px; }

  .final-cta { padding: 60px 0; }
  .final-cta-content h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 1.4rem; }
  .hero-trust { gap: 10px; }
  .hero-trust span { font-size: 0.75rem; }
  .section-title { font-size: 1.4rem; }
  .badge-card { padding: 24px 18px; }
  .countdown-timer { padding: 12px 20px; }
  .time-block span { font-size: 1.8rem; min-width: 48px; }
  .final-cta-content h2 { font-size: 1.4rem; }
  .purchase-popup { max-width: calc(100vw - 32px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .hero-bottle, .hero-badge-float, .pulse-btn { animation: none; }
}
