/* ===== SLIMIQUE - STYLES.CSS ===== */
/* Design: Premium Luxury × Medical Trust Fusion */
/* Fonts: Montserrat (headings) + Open Sans (body) */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1A6B3A;
  --primary-dark: #0E4A28;
  --primary-light: #27A85A;
  --accent: #F5A623;
  --accent-dark: #E08B0A;
  --danger: #E53E3E;
  --gold: #D4AF37;
  --white: #FFFFFF;
  --off-white: #F7F9F5;
  --light-gray: #EEF2EB;
  --text-dark: #1A2E1E;
  --text-mid: #3D5445;
  --text-light: #6B8574;
  --card-bg: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(26,107,58,0.08);
  --shadow-md: 0 8px 32px rgba(26,107,58,0.14);
  --shadow-lg: 0 20px 60px rgba(26,107,58,0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ===== 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%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

* { -webkit-tap-highlight-color: transparent; }
input, select, textarea { font-size: 16px; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.2; }

.section-title {
  font-size: clamp(24px, 4vw, 38px);
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 12px;
}
.section-title.left-align { text-align: left; }
.section-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-light);
  text-align: center;
  margin-bottom: 48px;
}
.highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  min-height: 52px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(26,107,58,0.35);
  text-align: center;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 10px 36px rgba(26,107,58,0.45); }
.btn-primary:active { transform: scale(0.98); }

.btn-pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(26,107,58,0.35); }
  50% { box-shadow: 0 6px 40px rgba(26,107,58,0.6), 0 0 0 8px rgba(26,107,58,0.1); }
}

/* ===== PURCHASE POPUP ===== */
.purchase-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 12px 16px;
  display: none;
  align-items: center;
  gap: 10px;
  max-width: 300px;
  border-left: 4px solid var(--primary);
  animation: slideInLeft 0.4s ease;
}
.purchase-popup.show { display: flex; }
@keyframes slideInLeft {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.popup-img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.popup-text { font-size: 13px; color: var(--text-dark); flex: 1; }
.popup-close { font-size: 16px; color: var(--text-light); padding: 4px; min-width: 28px; min-height: 28px; }

/* ===== EXIT POPUP ===== */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup-overlay.show { display: flex; }
.exit-popup-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.exit-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  color: var(--text-light);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.exit-popup-box h3 { font-family: var(--font-head); font-size: 22px; color: var(--primary-dark); margin-bottom: 10px; }
.exit-popup-box p { color: var(--text-mid); margin-bottom: 20px; }
.exit-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 50px;
  animation: pulse 2s infinite;
  margin-bottom: 12px;
  min-height: 52px;
}
.exit-small { font-size: 13px; 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 rgba(26,107,58,0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary-dark);
}
.logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 50px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(26,107,58,0.3);
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(26,107,58,0.4); }

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

/* ===== HERO ===== */
.hero {
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, #F0FAF5 0%, #E8F5EE 50%, #F7F9F5 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(26,107,58,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrapper {
  position: relative;
  display: inline-block;
}
.hero-product-img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(26,107,58,0.25));
  animation: heroFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
.hero-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(26,107,58,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}
.hero-badge {
  position: absolute;
  top: 10%;
  right: -10%;
  background: var(--white);
  border: 2px solid var(--primary-light);
  color: var(--primary-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  animation: badgePop 3s ease-in-out infinite;
  white-space: nowrap;
}
.hero-badge-bottom {
  position: absolute;
  bottom: 15%;
  left: -8%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  animation: badgePop 3s ease-in-out infinite 1.5s;
  white-space: nowrap;
}
@keyframes badgePop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.hero-content-col { }
.hero-tag {
  display: inline-block;
  background: rgba(26,107,58,0.1);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(26,107,58,0.2);
}
.hero-h1 {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-desc {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(16px, 2.5vw, 20px);
  padding: 18px 40px;
  border-radius: 50px;
  min-height: 60px;
  margin: 24px 0 20px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(245,166,35,0.45);
}
.hero-cta:hover { transform: scale(1.05); box-shadow: 0 12px 48px rgba(245,166,35,0.55); }
.hero-cta:active { transform: scale(0.98); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-trust span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary-dark);
  background: rgba(26,107,58,0.08);
  padding: 6px 14px;
  border-radius: 50px;
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 80px 20px;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,107,58,0.08);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}
.why-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--shadow-lg);
}
.why-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.why-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ===== WHAT SECTION ===== */
.what-section {
  padding: 80px 20px;
  background: var(--off-white);
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.what-content-col p { font-size: 16px; color: var(--text-mid); margin-bottom: 18px; line-height: 1.8; }
.what-content-col .section-title { margin-bottom: 24px; }

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 80px 20px;
  background: var(--white);
}
.accordion-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  border: 1px solid rgba(26,107,58,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  background: transparent;
  transition: background 0.2s;
  gap: 12px;
}
.accordion-header::after {
  content: '+';
  font-size: 22px;
  color: var(--primary);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.accordion-item.active .accordion-header::after { transform: rotate(45deg); }
.accordion-header:hover { background: rgba(26,107,58,0.04); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-item.active .accordion-body { max-height: 500px; }
.accordion-body p {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #F0FAF5, var(--off-white));
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,107,58,0.08);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--primary-light);
}
.stars { font-size: 20px; text-align: center; margin-bottom: 12px; }
.review-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 14px;
}
.review-card h4 span { color: var(--text-light); font-weight: 600; }
.review-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.rating-bar {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.five-star-img { max-width: 220px; margin: 0 auto; }
.rating-bar p { font-size: 16px; color: var(--text-mid); }

/* ===== PRICING ===== */
.pricing-section {
  padding: 80px 20px;
  background: var(--off-white);
}
.countdown-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
.countdown-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--danger);
  margin-bottom: 10px;
}
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dark);
  padding: 16px 28px;
  border-radius: var(--radius);
  color: var(--white);
}
.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.time-block span {
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  line-height: 1;
}
.time-block small { font-size: 11px; font-weight: 600; opacity: 0.7; letter-spacing: 1px; }
.colon { font-size: 40px; font-weight: 800; opacity: 0.6; margin-bottom: 8px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(26,107,58,0.1);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
  position: relative;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.popular {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  background: linear-gradient(160deg, #F0FAF5, var(--white));
}
.price-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.price-bottles {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.price-supply { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.price-img {
  max-width: 140px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 20px rgba(26,107,58,0.2));
}
.price-amount {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.price-amount span { font-size: 16px; color: var(--text-light); }
.price-total { font-size: 15px; color: var(--text-mid); margin-bottom: 16px; }
.price-total del { color: var(--danger); }
.price-total strong { color: var(--primary-dark); }
.bonus-badges { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bonus-tag {
  background: rgba(26,107,58,0.1);
  color: var(--primary-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-block;
}
.price-cta {
  display: block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 50px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}
.price-cta:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(245,166,35,0.5); }
.payment-logos { max-width: 160px; margin: 10px auto 0; opacity: 0.85; }

/* ===== BONUS ===== */
.bonus-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1A5C35 100%);
  color: var(--white);
}
.bonus-section .section-title { color: var(--white); }
.bonus-section .section-sub { color: rgba(255,255,255,0.7); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bonus-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.bonus-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.15); }
.bonus-img { width: 100%; max-height: 200px; object-fit: cover; }
.bonus-content { padding: 28px; }
.bonus-number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}
.bonus-content h3 { font-family: var(--font-head); font-size: 20px; color: var(--white); margin-bottom: 12px; }
.bonus-content p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 14px; }
.bonus-value { font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 15px; }
.bonus-value del { color: rgba(255,255,255,0.5); }

/* ===== INGREDIENTS ===== */
.ingredients-section {
  padding: 80px 20px;
  background: var(--white);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ingredient-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(26,107,58,0.1);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}
.ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--white); }
.ing-icon { font-size: 32px; margin-bottom: 12px; }
.ingredient-card h3 { font-family: var(--font-head); font-size: 16px; color: var(--primary-dark); margin-bottom: 10px; }
.ingredient-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* ===== SCIENCE ===== */
.science-section {
  padding: 80px 20px;
  background: var(--off-white);
}
.science-accordion { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

/* ===== GUARANTEE ===== */
.guarantee-section {
  padding: 80px 20px;
  background: var(--white);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.guarantee-img { max-width: 280px; margin: 0 auto; }
.guarantee-content-col h2 { font-family: var(--font-head); font-size: clamp(22px, 3vw, 34px); color: var(--primary-dark); margin-bottom: 16px; }
.guarantee-intro { font-size: 16px; color: var(--text-mid); margin-bottom: 28px; line-height: 1.8; }
.guarantee-point { display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
.g-icon { font-size: 32px; flex-shrink: 0; margin-top: 4px; }
.guarantee-point h3 { font-family: var(--font-head); font-size: 17px; color: var(--primary-dark); margin-bottom: 8px; }
.guarantee-point p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* ===== BENEFITS ===== */
.benefits-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #EAF7F0, var(--off-white));
}
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}
.benefit-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.benefit-check { font-size: 24px; flex-shrink: 0; }
.benefit-item h3 { font-family: var(--font-head); font-size: 16px; color: var(--primary-dark); margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 20px;
  background: var(--white);
}
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid rgba(26,107,58,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
}
.faq-header {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  background: transparent;
  gap: 12px;
}
.faq-header::after {
  content: '▾';
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.active .faq-header::after { transform: rotate(180deg); }
.faq-header:hover { background: rgba(26,107,58,0.04); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-body { max-height: 400px; }
.faq-body p { padding: 0 24px 24px; font-size: 15px; color: var(--text-mid); line-height: 1.8; }

/* ===== FINAL CTA ===== */
.final-cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #14552F 50%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.final-cta-img-col { display: flex; justify-content: center; }
.final-cta-img {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  animation: heroFloat 4s ease-in-out infinite;
}
.final-urgency {
  display: inline-block;
  background: var(--danger);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: urgencyPulse 1.5s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.final-cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 42px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.final-cta-content p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 24px; line-height: 1.8; }
.final-price { margin-bottom: 28px; }
.old-price { font-family: var(--font-head); font-size: 16px; color: rgba(255,255,255,0.55); display: block; margin-bottom: 6px; }
.old-price del { color: rgba(255,255,255,0.45); }
.new-price { font-family: var(--font-head); font-size: clamp(24px, 4vw, 38px); font-weight: 800; color: var(--accent); }
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(16px, 2.5vw, 22px);
  padding: 20px 48px;
  border-radius: 50px;
  min-height: 64px;
  margin-bottom: 24px;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(245,166,35,0.5);
}
.final-cta-btn:hover { transform: scale(1.06); box-shadow: 0 16px 56px rgba(245,166,35,0.65); }
.final-cta-btn:active { transform: scale(0.98); }
.final-trust { display: flex; flex-wrap: wrap; gap: 12px; }
.final-trust span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 20px 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { max-width: 60px; border-radius: 10px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 40px;
  height: 40px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 18px;
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-head); font-size: 15px; color: var(--white); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.legal-link { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.legal-link:hover { color: var(--primary-light); }
.link-separator { color: rgba(255,255,255,0.3); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.footer-disclaimer p { margin-bottom: 10px; }
.footer-disclaimer a { color: var(--primary-light); }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: scale(1.1) translateY(-3px); }

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

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.popular { transform: scale(1); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 80px 24px 40px;
    box-shadow: -4px 0 32px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-link { padding: 16px 0; font-size: 18px; border-bottom: 1px solid var(--light-gray); width: 100%; }
  .nav-cta { margin-top: 24px; width: 100%; justify-content: center; font-size: 16px; }

  /* Hero */
  .hero { padding: 100px 20px 50px; min-height: auto; }
  .hero-container { grid-template-columns: 1fr; gap: 32px; }
  .hero-image-col { order: 1; }
  .hero-content-col { order: 2; }
  .hero-product-img { max-width: 260px; margin: 0 auto; }
  .hero-badge { right: 0; font-size: 11px; }
  .hero-badge-bottom { left: 0; font-size: 11px; }
  .hero-cta { width: 100%; justify-content: center; }
  .hero-trust { justify-content: center; }

  /* What */
  .what-grid { grid-template-columns: 1fr; gap: 32px; }
  .what-img-col { order: 1; }
  .what-content-col { order: 2; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Guarantee */
  .guarantee-grid { grid-template-columns: 1fr; gap: 32px; }
  .guarantee-img { margin: 0 auto; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Bonus */
  .bonus-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Final CTA */
  .final-cta-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .final-cta-img-col { order: 1; }
  .final-cta-content { order: 2; }
  .final-trust { justify-content: center; }
  .final-cta-btn { width: 100%; justify-content: center; }
}

@media (max-width: 576px) {
  .why-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
  .hero-trust span { font-size: 12px; }
  .hero-h1 { font-size: 26px; }
  .countdown { padding: 12px 20px; }
  .time-block span { font-size: 36px; }
  section { padding: 60px 16px !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
