/* ============================================
   JELLYTHIN - STYLES.CSS
   Design: Modern Gradient (Option 1)
   Colors: #4F46E5 → #06B6D4
   Mobile-First Approach
   ============================================ */

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

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

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

body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

/* === CSS VARIABLES === */
:root {
  --primary: #4F46E5;
  --secondary: #06B6D4;
  --accent: #10B981;
  --dark: #1a1a2e;
  --light: #f8faff;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
  --gradient-rev: linear-gradient(135deg, #06B6D4 0%, #4F46E5 100%);
  --shadow: 0 10px 40px rgba(79,70,229,0.15);
  --shadow-lg: 0 20px 60px rgba(79,70,229,0.25);
  --radius: 16px;
  --radius-lg: 24px;
}

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

/* === TYPOGRAPHY === */
.section-title {
  font-size: clamp(22px, 5vw, 40px);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--dark);
}

.section-title.left-align { text-align: left; }

.section-subtitle {
  font-size: clamp(15px, 2.5vw, 18px);
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.highlight { color: var(--primary); }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTONS === */
.btn-primary, .btn-hero, .btn-final, .btn-price, .btn-nav, .btn-mobile-cta, .btn-popup {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  min-height: 48px;
  line-height: 1.3;
}

.btn-hero {
  background: var(--gradient);
  color: #fff;
  font-size: clamp(16px, 3vw, 20px);
  padding: 16px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
  animation: pulse-btn 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,70,229,0.4), var(--shadow); }
  50% { box-shadow: 0 0 0 12px rgba(79,70,229,0), var(--shadow); }
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  font-size: 16px;
  padding: 14px 32px;
  box-shadow: var(--shadow);
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero:hover, .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn-price {
  background: var(--gradient);
  color: #fff;
  font-size: 15px;
  padding: 14px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
}

.btn-price img { height: 20px; width: auto; }
.popular-btn { background: linear-gradient(135deg, #10B981, #059669); }

.btn-nav {
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  padding: 10px 22px;
  white-space: nowrap;
}

.btn-mobile-cta {
  background: var(--gradient);
  color: #fff;
  font-size: 16px;
  padding: 14px 24px;
  width: 100%;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-final {
  background: linear-gradient(135deg, #EF4444, #F59E0B);
  color: #fff;
  font-size: clamp(16px, 3vw, 22px);
  padding: 18px 40px;
  width: 100%;
  max-width: 500px;
  margin: 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: pulse-btn 2s infinite;
  box-shadow: 0 8px 30px rgba(239,68,68,0.4);
}

.btn-final:hover { transform: scale(1.04); }

.btn-popup {
  background: var(--gradient);
  color: #fff;
  font-size: 16px;
  padding: 14px 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 8px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(79,70,229,0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 4px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img { height: 36px; width: 36px; object-fit: contain; border-radius: 8px; }

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--primary);
}

.logo-text span { color: var(--secondary); }

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--primary); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  max-height: 400px;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(79,70,229,0.1);
}

.mobile-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0;
  color: var(--dark);
  border-bottom: 1px solid #f0f0f5;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f4ff 0%, #e8f8ff 50%, #f0fff8 100%);
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(79,70,229,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(6,182,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating circles decoration */
.hero::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(79,70,229,0.06);
  top: -80px; right: -80px;
  animation: float 6s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(6,182,212,0.08);
  bottom: 40px; left: -60px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

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

.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  display: inline-block;
}

.product-hero-img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  animation: hero-float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(79,70,229,0.2));
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.hero-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gradient);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  animation: badge-pulse 2.5s ease-in-out infinite;
}

.hero-badge-2 {
  position: absolute;
  bottom: 20px; left: -10px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(16,185,129,0.35);
  animation: badge-pulse 2.5s ease-in-out infinite 1.25s;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.hero-tag {
  display: inline-block;
  background: rgba(79,70,229,0.1);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(79,70,229,0.2);
}

.hero-h1 {
  font-size: clamp(26px, 5vw, 48px);
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-desc {
  font-size: clamp(15px, 2.5vw, 17px);
  color: #444;
  margin-bottom: 14px;
  line-height: 1.75;
}

.hero-stars {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-trust span {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  background: rgba(79,70,229,0.06);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(79,70,229,0.12);
}

/* === WHY CHOOSE US === */
.why-choose {
  padding: 80px 0;
  background: #fff;
}

.badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.badge-card {
  background: #fff;
  border: 1px solid rgba(79,70,229,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  cursor: default;
}

.badge-card:hover {
  transform: scale(1.04) rotate(1deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,70,229,0.3);
}

.badge-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.badge-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.badge-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}

/* === WHAT IS === */
.what-is {
  padding: 80px 0;
  background: linear-gradient(160deg, #f8faff 0%, #e8f8ff 100%);
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.what-is-img img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.what-is-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.75;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 80px 0;
  background: #fff;
}

.accordion-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }

.accordion-item {
  border: 1px solid rgba(79,70,229,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.accordion-item.open { box-shadow: var(--shadow); }

.accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--dark);
  text-align: left;
  min-height: 60px;
  transition: background 0.25s;
}

.accordion-header:hover { background: rgba(79,70,229,0.04); }
.accordion-item.open .accordion-header { background: rgba(79,70,229,0.06); }

.acc-icon { font-size: 22px; flex-shrink: 0; }
.acc-arrow { margin-left: auto; font-size: 12px; transition: transform 0.3s; flex-shrink: 0; color: var(--primary); }
.accordion-item.open .acc-arrow { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 20px;
}

.accordion-body.open {
  max-height: 400px;
  padding: 16px 20px 20px;
}

.accordion-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
}

/* === REVIEWS === */
.reviews {
  padding: 80px 0;
  background: linear-gradient(160deg, #f8faff 0%, #e8f0ff 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 20px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(79,70,229,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--primary);
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.reviewer-location { font-size: 13px; color: #888; }
.stars { font-size: 18px; margin-bottom: 12px; }
.review-card p { font-size: 15px; color: #555; line-height: 1.7; }

.trust-bar {
  text-align: center;
  margin-top: 36px;
  padding: 20px;
  background: rgba(79,70,229,0.05);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
}

.trust-bar img { max-height: 40px; margin: 0 auto 10px; }

/* === PRICING === */
.pricing {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
}

.pricing .section-title { color: #fff; }
.pricing .section-subtitle { color: rgba(255,255,255,0.75); }

.countdown-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.timer-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(6,182,212,0.5);
  padding: 16px 28px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-block span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 8vw, 60px);
  color: var(--secondary);
  line-height: 1;
}

.time-block small {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  margin-top: 4px;
}

.colon {
  font-size: clamp(30px, 7vw, 50px);
  font-weight: 900;
  color: rgba(255,255,255,0.6);
  animation: blink 1s infinite;
  line-height: 1;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 10px;
}

.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(6,182,212,0.2);
}

.price-card.popular {
  background: linear-gradient(135deg, rgba(79,70,229,0.3), rgba(6,182,212,0.3));
  border-color: var(--secondary);
  border-width: 2px;
}

.popular-banner {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(239,68,68,0.4);
}

.price-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.bottles-count {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}

.supply-days {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.price-bottle {
  max-height: 140px;
  width: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.price-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.price-main span { font-size: 16px; color: rgba(255,255,255,0.6); }

.price-old {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.price-old strong { color: #4ade80; }

.bonus-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 4px;
}

.bonus-tag {
  background: rgba(16,185,129,0.2);
  border: 1px solid rgba(16,185,129,0.4);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.payment-logos {
  max-height: 28px;
  width: auto;
  margin: 8px auto 0;
  opacity: 0.7;
}

.rating-row {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.rating-row img { max-height: 36px; margin: 0 auto 10px; }

/* === BONUS === */
.bonus {
  padding: 80px 0;
  background: linear-gradient(160deg, #f0fff8 0%, #e8f8ff 100%);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

.bonus-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(79,70,229,0.1);
  display: grid;
  grid-template-columns: 1fr;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.bonus-card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.bonus-content { padding: 24px; }
.bonus-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--secondary);
  background: rgba(6,182,212,0.1);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}

.bonus-content h3 { font-size: 18px; margin-bottom: 12px; color: var(--dark); }
.bonus-content p { font-size: 15px; color: #555; line-height: 1.7; }
.bonus-value { margin-top: 12px; font-weight: 700; font-size: 15px; color: var(--accent); }
.bonus-value strong { color: #EF4444; }

/* === INGREDIENTS === */
.ingredients {
  padding: 80px 0;
  background: #fff;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}

.ingredient-card {
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
  border: 1px solid rgba(79,70,229,0.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}

.ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(79,70,229,0.25);
}

.ing-icon { font-size: 36px; margin-bottom: 12px; }
.ingredient-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.ingredient-card p { font-size: 14px; color: #555; line-height: 1.7; }
.ing-benefit {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding: 6px 12px;
  background: rgba(16,185,129,0.08);
  border-radius: 8px;
  display: inline-block;
}

/* === SCIENCE === */
.science {
  padding: 80px 0;
  background: linear-gradient(160deg, #f8faff 0%, #e8f0ff 100%);
}

.science-accordion { margin-top: 20px; }

/* === GUARANTEE === */
.guarantee {
  padding: 80px 0;
  background: #fff;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.guarantee-img img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(79,70,229,0.2));
}

.guarantee-intro {
  font-size: 16px;
  color: #444;
  margin-bottom: 24px;
  line-height: 1.7;
}

.guarantee-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }

.guarantee-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(79,70,229,0.04);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.gp-icon { font-size: 28px; flex-shrink: 0; }
.guarantee-point h4 { font-size: 16px; color: var(--dark); margin-bottom: 6px; }
.guarantee-point p { font-size: 14px; color: #555; line-height: 1.65; }

/* === BENEFITS === */
.benefits {
  padding: 80px 0;
  background: linear-gradient(160deg, #f0fff8 0%, #e8f8ff 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid rgba(79,70,229,0.08);
  transition: all 0.3s;
}

.benefit-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: rgba(79,70,229,0.2);
}

.benefit-icon { font-size: 32px; flex-shrink: 0; }
.benefit-text h3 { font-size: 17px; color: var(--dark); margin-bottom: 6px; }
.benefit-text p { font-size: 14px; color: #555; line-height: 1.65; }

/* === FAQ === */
.faq {
  padding: 80px 0;
  background: #fff;
}

.faq-list { margin-top: 20px; }
.faq-item { background: #fff; }

/* === FINAL CTA === */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(79,70,229,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(6,182,212,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-img-wrap { margin-bottom: 30px; }
.final-product-img {
  max-width: 260px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(79,70,229,0.4));
  animation: hero-float 4s ease-in-out infinite;
}

.final-h2 {
  font-size: clamp(22px, 4vw, 36px);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.final-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

.final-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.final-regular {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}

.final-special {
  font-size: 22px;
  font-weight: 700;
  color: #FCD34D;
}

.final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.final-trust span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* === FOOTER === */
.footer {
  background: #0d1117;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand .logo-text {
  font-size: 26px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  transition: all 0.2s;
  min-height: 36px;
  display: flex;
  align-items: center;
}

.social-link:hover { background: rgba(79,70,229,0.3); border-color: var(--primary); color: #fff; }

.footer-links, .footer-legal-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-legal-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.footer-links a, .footer-legal-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  min-height: 36px;
  display: flex;
  align-items: center;
}

.footer-links a:hover, .footer-legal-col a:hover { color: var(--secondary); }

.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.link-separator { color: rgba(255,255,255,0.3); }

.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom a { color: var(--secondary); }

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  min-width: 48px;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: scale(1.1); }

/* === NOTIFICATION POPUP === */
.notif-popup {
  position: fixed;
  bottom: 24px;
  left: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 998;
  max-width: 280px;
  border-left: 4px solid var(--accent);
  transform: translateX(-120%);
  transition: transform 0.4s ease;
}

.notif-popup.show { transform: translateX(0); }

.notif-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notif-icon { font-size: 22px; flex-shrink: 0; }
.notif-text { font-size: 13px; color: #333; line-height: 1.4; }
.notif-text strong { display: block; }

.notif-close {
  background: none;
  border: none;
  font-size: 16px;
  color: #999;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  min-height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === EXIT POPUP === */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.popup-overlay.active { display: flex; }

.popup-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: pop-in 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes pop-in {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,0.08);
  border: none;
  font-size: 16px;
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background 0.2s;
}

.popup-close:hover { background: rgba(239,68,68,0.1); color: #EF4444; }

.popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EF4444, #F59E0B);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.popup-modal h3 {
  font-size: clamp(20px, 4vw, 26px);
  margin-bottom: 12px;
  color: var(--dark);
}

.popup-modal p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.popup-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 14px 0;
}

.popup-decline {
  display: block;
  font-size: 12px;
  color: #aaa;
  text-decoration: underline;
  cursor: pointer;
}

/* === MOBILE BANNER === */
.mobile-popup-banner {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gradient);
  color: #fff;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  z-index: 997;
  font-size: 15px;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.mobile-popup-banner.show { transform: translateY(0); }

.mobile-banner-btn {
  background: #fff;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  white-space: nowrap;
  min-height: 36px;
  display: flex;
  align-items: center;
}

.mobile-banner-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* === AOS Animations === */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos="slide-up"] { transform: translateY(50px); }

[data-aos].animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* === RESPONSIVE: TABLET 576px+ === */
@media (min-width: 576px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === RESPONSIVE: TABLET 768px+ === */
@media (min-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .hero-image { order: 2; }
  .hero-content { order: 1; }
  .product-hero-img { max-width: 420px; }
  .hero-h1 { font-size: 40px; }
  .hero-content { text-align: left; }
  .btn-hero { width: auto; }

  .what-is-grid { grid-template-columns: 1fr 1fr; }
  .what-is-img { order: 1; }
  .what-is-content { order: 2; }
  .guarantee-grid { grid-template-columns: 1fr 1fr; }
  .badge-card:hover { transform: scale(1.05) rotate(2deg); }

  .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* === RESPONSIVE: DESKTOP 992px+ === */
@media (min-width: 992px) {
  .badges-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* === NO HORIZONTAL SCROLL === */
body, html { max-width: 100%; overflow-x: hidden; }

/* Input / select font size to prevent iOS zoom */
input, select, textarea { font-size: 16px; }
