/* ===== HERSOLUTION GEL - styles.css ===== */
/* Design: Premium Luxury Rose-Gold Female Wellness */

:root {
  --rose: #C9185B;
  --rose-light: #F06292;
  --rose-dark: #880E4F;
  --gold: #D4AF37;
  --gold-light: #F5E27A;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --dark: #1A0A12;
  --text: #3D1A2A;
  --text-muted: #7A5060;
  --gradient: linear-gradient(135deg, #C9185B 0%, #E91E8C 50%, #D4AF37 100%);
  --gradient-dark: linear-gradient(135deg, #880E4F 0%, #C9185B 100%);
  --shadow: 0 10px 40px rgba(201,24,91,0.2);
  --shadow-lg: 0 20px 60px rgba(201,24,91,0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::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: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.scroll-top:hover { transform: scale(1.1); }
.scroll-top.show { display: flex; }

/* ===== PURCHASE POPUP ===== */
.purchase-popup {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: #fff;
  border-left: 4px solid var(--rose);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: none;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 9998;
  max-width: 300px;
  animation: slideInLeft 0.4s ease;
}
.purchase-popup.show { display: flex; }
.popup-icon { font-size: 24px; }
.popup-text { font-size: 13px; line-height: 1.4; }
.popup-text strong { display: block; color: var(--rose); }
.popup-close { background: none; border: none; font-size: 18px; cursor: pointer; color: #999; padding: 4px; min-width: 24px; min-height: 24px; }
@keyframes slideInLeft { from { transform: translateX(-120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== EXIT POPUP ===== */
.exit-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-overlay.show { display: flex; }
.exit-popup {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  max-width: 460px;
  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; background: none; border: none; font-size: 26px; cursor: pointer; color: #999; min-width: 44px; min-height: 44px; }
.exit-badge { background: var(--gradient); color: #fff; padding: 6px 20px; border-radius: 20px; font-weight: 700; font-size: 14px; display: inline-block; margin-bottom: 16px; }
.exit-popup h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--dark); margin-bottom: 12px; }
.exit-popup p { color: var(--text-muted); margin-bottom: 20px; }
.exit-price { margin: 20px 0; }
.exit-old { font-size: 18px; text-decoration: line-through; color: #999; display: block; }
.exit-new { font-size: 32px; font-weight: 800; color: var(--rose); }
.exit-cta-btn {
  display: block;
  background: var(--gradient);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: var(--transition);
}
.exit-cta-btn:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.exit-skip { font-size: 13px; color: #999; cursor: pointer; text-decoration: underline; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,24,91,0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 24px rgba(201,24,91,0.15);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo-her { color: var(--rose); }
.logo-solution { color: var(--dark); }
.logo-gel { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  padding: 8px 0;
}
.nav-link:hover { color: var(--rose); }
.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: var(--shadow); }

.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: 2px;
  background: var(--rose);
  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 {
  padding-top: 80px;
  min-height: 100vh;
  background: linear-gradient(135deg, #FFF0F5 0%, #FFF8F0 50%, #FFF5F8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-decor {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,24,91,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,24,91,0.15) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }

.hero-product-img {
  position: relative;
  z-index: 2;
  max-width: 380px;
  width: 100%;
  animation: floatProduct 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(201,24,91,0.25));
}
@keyframes floatProduct {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}
.hero-badge-float {
  position: absolute;
  top: 20px; right: 0;
  background: var(--gradient);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  z-index: 3;
  animation: badgeFloat 3s ease-in-out infinite;
  box-shadow: var(--shadow);
}
.hero-badge-float2 {
  position: absolute;
  bottom: 30px; left: 0;
  background: var(--white);
  color: var(--rose);
  border: 2px solid var(--rose-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  z-index: 3;
  animation: badgeFloat 3s ease-in-out infinite 1.5s;
}
@keyframes badgeFloat { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }

.hero-eyebrow {
  background: rgba(201,24,91,0.1);
  color: var(--rose);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
  font-weight: 900;
}
.hero-h1 em { color: var(--rose); font-style: italic; }
.hero-sub { color: var(--text-muted); margin-bottom: 16px; font-size: 17px; line-height: 1.8; }
.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  margin-bottom: 28px;
}
.hero-stars span { font-size: 15px; color: var(--text-muted); font-weight: 500; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  min-height: 60px;
  width: 100%;
  max-width: 420px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.hero-cta:hover { transform: scale(1.05); box-shadow: 0 25px 70px rgba(201,24,91,0.4); }
.hero-guarantee { font-size: 14px; color: var(--text-muted); }
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.2;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
}
.section-title span { color: var(--rose); }
.section-title.left { text-align: left; }
.section-title.light { color: #fff; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 17px; margin-bottom: 48px; }
.section-sub.light { color: rgba(255,255,255,0.8); }

/* ===== WHY CHOOSE ===== */
.why-choose { padding: 80px 0; background: #fff; }
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 48px;
}
.badge-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(201,24,91,0.1);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}
.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 20px; }
.badge-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.badge-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ===== WHAT IS ===== */
.what-is { padding: 80px 0; background: var(--cream); }
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-is-content h2 { margin-bottom: 24px; }
.what-is-content p { color: var(--text-muted); margin-bottom: 18px; font-size: 16px; line-height: 1.8; }
.what-is-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 420px; margin: 0 auto; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  transition: var(--transition);
  min-height: 54px;
  margin-top: 12px;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; background: #fff; }
.accordion-list { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.accordion-item { border-radius: var(--radius); border: 1px solid rgba(201,24,91,0.15); overflow: hidden; background: #fff; }
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
  min-height: 64px;
}
.accordion-btn:hover { background: rgba(201,24,91,0.04); }
.accordion-btn.active { background: rgba(201,24,91,0.06); color: var(--rose); }
.acc-num { background: var(--gradient); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.acc-arrow { margin-left: auto; transition: transform 0.3s; font-size: 13px; color: var(--rose); }
.accordion-btn.active .acc-arrow { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
.accordion-body.open { max-height: 300px; padding: 4px 24px 20px; }
.accordion-body p { color: var(--text-muted); line-height: 1.8; font-size: 15px; }

/* ===== REVIEWS ===== */
.reviews { padding: 80px 0; background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 16px; }
.review-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 1px solid rgba(201,24,91,0.1); transition: var(--transition); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.review-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--rose-light); flex-shrink: 0; }
.review-header h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.review-location { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.review-stars { font-size: 14px; }
.review-text { color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* ===== PRICING ===== */
.pricing { padding: 80px 0; background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 50%, #E91E8C 100%); position: relative; overflow: hidden; }
.pricing-bg-decor { 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.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.countdown-wrap { text-align: center; margin-bottom: 40px; }
.countdown-label { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 12px; font-weight: 500; }
.countdown-timer { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.3); border-radius: var(--radius); padding: 16px 32px; }
.countdown-unit { text-align: center; }
.countdown-unit span { font-size: clamp(40px, 6vw, 60px); font-weight: 900; color: #fff; display: block; line-height: 1; font-family: 'Playfair Display', serif; }
.countdown-unit label { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: 1px; }
.countdown-sep { font-size: 50px; color: #fff; font-weight: 900; line-height: 1; padding-bottom: 12px; }
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.price-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.price-card.popular {
  background: rgba(255,255,255,0.95);
  border-color: var(--gold);
  border-width: 2px;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.price-card.popular:hover { transform: scale(1.05) translateY(-6px); }
.price-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.price-card.popular .price-label { color: var(--text-muted); }
.popular-label { color: var(--rose) !important; }
.price-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; margin-bottom: 6px; }
.price-card.popular h3 { color: var(--dark); }
.price-supply { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.price-card.popular .price-supply { color: var(--text-muted); }
.price-card img:not(.cards-img) { max-height: 160px; width: auto; max-width: 100%; margin: 0 auto 16px; }
.price-box { margin: 16px 0; }
.price-old { text-decoration: line-through; color: rgba(255,255,255,0.6); font-size: 16px; display: block; }
.price-card.popular .price-old { color: #999; }
.price-new { font-size: 36px; font-weight: 900; color: #fff; display: block; line-height: 1.1; font-family: 'Playfair Display', serif; }
.price-card.popular .price-new { color: var(--rose); }
.price-per { font-size: 14px; color: rgba(255,255,255,0.7); }
.price-card.popular .price-per { color: var(--text-muted); }
.badge-free-shipping { background: var(--gold); color: #000; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 50px; margin-bottom: 8px; display: inline-block; }
.badge-bonus { background: rgba(255,255,255,0.2); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 50px; margin: 8px 0; display: inline-block; }
.price-card.popular .badge-bonus { background: rgba(201,24,91,0.1); color: var(--rose); }
.price-cta { display: block; margin: 16px auto; max-width: 180px; transition: var(--transition); }
.price-cta:hover { transform: scale(1.05); }
.price-cta img { width: 100%; }
.cards-img { max-width: 160px; margin: 8px auto 0; opacity: 0.85; }
.pricing-stars { text-align: center; }
.pricing-stars img { max-width: 200px; margin: 0 auto 12px; }
.pricing-stars p { color: rgba(255,255,255,0.8); font-size: 15px; }

/* ===== BONUSES ===== */
.bonuses { padding: 80px 0; background: #fff; }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.bonus-card { background: var(--cream); border-radius: var(--radius-lg); padding: 32px; text-align: center; border: 1px solid rgba(201,24,91,0.1); transition: var(--transition); }
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bonus-card img { max-height: 200px; width: auto; max-width: 100%; margin: 0 auto 24px; border-radius: var(--radius); }
.bonus-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--dark); margin-bottom: 14px; }
.bonus-card p { color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* ===== INGREDIENTS ===== */
.ingredients { padding: 80px 0; background: var(--cream); }
.ingredients-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 16px; }
.ingredient-card { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid rgba(201,24,91,0.1); transition: var(--transition); }
.ingredient-card:hover { border-color: var(--rose-light); box-shadow: var(--shadow); transform: translateY(-3px); }
.ing-icon { font-size: 32px; margin-bottom: 12px; }
.ingredient-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.ingredient-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.ing-benefit { background: rgba(201,24,91,0.08); color: var(--rose); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; display: inline-block; }

/* ===== SCIENCE ===== */
.science { padding: 80px 0; background: #fff; }
.science-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 16px; }
.science-card { background: var(--cream); border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--rose); transition: var(--transition); }
.science-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.science-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.science-card p { color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* ===== GUARANTEE ===== */
.guarantee { padding: 80px 0; background: var(--cream); }
.guarantee-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.guarantee-image img { max-width: 340px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(201,24,91,0.2)); }
.guarantee-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); color: var(--dark); margin-bottom: 32px; line-height: 1.3; }
.guarantee-point { display: flex; gap: 18px; margin-bottom: 28px; }
.g-icon { width: 44px; height: 44px; background: rgba(201,24,91,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.guarantee-point h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.guarantee-point p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ===== BENEFITS ===== */
.benefits { padding: 80px 0; background: #fff; }
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 16px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; background: var(--cream); border-radius: var(--radius); padding: 20px; transition: var(--transition); }
.benefit-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.b-check { width: 36px; height: 36px; background: var(--gradient); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.benefit-item h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--cream); }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--radius); border: 1px solid rgba(201,24,91,0.1); overflow: hidden; }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 16px;
  min-height: 64px;
  transition: var(--transition);
}
.faq-btn:hover { background: rgba(201,24,91,0.03); }
.faq-btn.active { color: var(--rose); }
.faq-arrow { flex-shrink: 0; font-size: 13px; color: var(--rose); transition: transform 0.3s; }
.faq-btn.active .faq-arrow { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
.faq-body.open { max-height: 300px; padding: 0 24px 20px; }
.faq-body p { color: var(--text-muted); line-height: 1.8; font-size: 15px; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #FFF0F5 0%, #FFF8F0 100%);
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,24,91,0.06) 0%, transparent 70%);
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.final-cta-image { position: relative; text-align: center; }
.final-cta-img {
  max-width: 400px;
  margin: 0 auto;
  animation: floatProduct 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(201,24,91,0.25));
}
.final-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,24,91,0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
.final-badge {
  background: linear-gradient(135deg, var(--gold), #F5E27A);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}
.final-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 900;
}
.final-cta-content > p { color: var(--text-muted); font-size: 17px; margin-bottom: 28px; line-height: 1.8; }
.final-price { margin-bottom: 28px; }
.final-old { display: block; font-size: 18px; color: #999; text-decoration: line-through; margin-bottom: 6px; }
.final-new { display: block; font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--rose); font-family: 'Playfair Display', serif; }
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #fff;
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  min-height: 64px;
  width: 100%;
  max-width: 460px;
  letter-spacing: 0.3px;
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse { 0%,100% { box-shadow: 0 20px 60px rgba(201,24,91,0.3); } 50% { box-shadow: 0 20px 80px rgba(201,24,91,0.5); } }
.final-cta-btn:hover { transform: scale(1.05); animation: none; box-shadow: 0 25px 70px rgba(201,24,91,0.5); }
.final-guarantees { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.final-guarantees span { font-size: 14px; font-weight: 600; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .footer-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: #fff; transition: var(--transition); }
.social-icon:hover { background: var(--rose); transform: translateY(-2px); }
.footer-links h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--rose-light); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.legal-link { font-size: 13px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.legal-link:hover { color: var(--rose-light); }
.link-separator { color: rgba(255,255,255,0.2); }
.footer-disclaimer { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-disclaimer p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.4); }
.footer-copy { text-align: center; padding: 24px 0; font-size: 14px; color: rgba(255,255,255,0.5); }

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

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

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1023px) {
  .badges-grid { grid-template-columns: repeat(2,1fr); }
  .ingredients-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 20px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-cta { width: 100%; justify-content: center; }
  .hamburger { display: flex; }

  .hero-container { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px 80px; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-product-img { max-width: 260px; }
  .hero-glow { width: 250px; height: 250px; }
  .hero-cta { max-width: 100%; }
  .hero-stars { justify-content: center; }

  .badges-grid { grid-template-columns: 1fr; }
  .what-is-grid { grid-template-columns: 1fr; }
  .what-is-image { order: -1; }
  .section-title.left { text-align: center; }
  .btn-primary { width: 100%; }

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

  .pricing-cards { grid-template-columns: 1fr; }
  .price-card.popular { transform: scale(1); }
  .price-card.popular:hover { transform: translateY(-6px); }

  .bonus-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .science-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-image { order: -1; }
  .benefits-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-guarantees { justify-content: center; }
  .final-cta-btn { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal-links { justify-content: center; }
  .footer-social { justify-content: center; }

  .purchase-popup { max-width: calc(100vw - 40px); bottom: 20px; }
}

@media (max-width: 575px) {
  .hero-h1 { font-size: 26px; }
  .section-title { font-size: 24px; }
  .countdown-unit span { font-size: 38px; }
  .final-cta-btn { font-size: 17px; padding: 18px 28px; }
}
