/* ==========================================
   MIND VAULT - styles.css
   Design: Deep Neural / Premium Dark Cognitive
   ========================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  --primary: #0EA5E9;
  --primary-dark: #0284C7;
  --accent: #6366F1;
  --accent2: #A78BFA;
  --gold: #F59E0B;
  --green: #10B981;
  --red: #EF4444;
  --bg-dark: #040B14;
  --bg-card: #0D1B2E;
  --bg-card2: #0F2235;
  --border: rgba(14, 165, 233, 0.18);
  --text: #E2E8F0;
  --text-muted: #94A3B8;
  --white: #FFFFFF;
  --gradient-main: linear-gradient(135deg, #0EA5E9 0%, #6366F1 100%);
  --gradient-hero: linear-gradient(135deg, #040B14 0%, #0D1B2E 50%, #0A1628 100%);
  --shadow-glow: 0 0 30px rgba(14,165,233,0.25);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --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%; }
* { -webkit-tap-highlight-color: transparent; }
body { font-family: var(--font-body); background: var(--bg-dark); color: var(--text); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
input, select, textarea { font-size: 16px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

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

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; color: var(--white); }
.section-title { font-size: clamp(22px, 4vw, 36px); text-align: center; margin-bottom: 12px; font-weight: 800; }
.section-sub { text-align: center; color: var(--text-muted); font-size: clamp(15px, 2vw, 17px); margin-bottom: 48px; max-width: 680px; margin-left: auto; margin-right: auto; }
.accent { color: var(--primary); }
.gradient-text { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.strike { text-decoration: line-through; color: var(--text-muted); }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-main); color: var(--white);
  padding: 14px 32px; border-radius: 50px; font-family: var(--font-head);
  font-weight: 700; font-size: 16px; cursor: pointer;
  border: none; transition: transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(14,165,233,0.45); }
.btn-primary:active { transform: scale(0.98); }

/* ===========================
   SECTION 1: NAVIGATION
=========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(4, 11, 20, 0.85); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { background: rgba(4,11,20,0.97); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.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-size: 22px; font-weight: 800; color: var(--white); }
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link { color: var(--text); padding: 8px 16px; border-radius: 8px; font-family: var(--font-head); font-size: 14px; font-weight: 600; transition: color var(--transition), background var(--transition); }
.nav-link:hover { color: var(--primary); background: rgba(14,165,233,0.1); }
.nav-cta { background: var(--gradient-main); color: var(--white); padding: 10px 22px; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: 14px; transition: transform var(--transition), box-shadow var(--transition); min-height: 44px; display: flex; align-items: center; }
.nav-cta:hover { transform: scale(1.05); box-shadow: var(--shadow-glow); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s ease; }
.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); }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px 20px; border-top: 1px solid var(--border); background: rgba(4,11,20,0.97); }
.mobile-menu.open { display: flex; }
.mobile-link { color: var(--text); padding: 12px 0; font-family: var(--font-head); font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--border); }
.mobile-cta { display: block; text-align: center; background: var(--gradient-main); color: var(--white); padding: 14px; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-top: 16px; min-height: 50px; line-height: 1; display: flex; align-items: center; justify-content: center; }

@media (max-width: 767px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ===========================
   SECTION 2: HERO
=========================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient-hero); position: relative; overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg-anim { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 8s ease-in-out infinite; }
.orb1 { width: 500px; height: 500px; background: rgba(14,165,233,0.12); top: -100px; left: -100px; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: rgba(99,102,241,0.1); bottom: -80px; right: -80px; animation-delay: 3s; }
.orb3 { width: 300px; height: 300px; background: rgba(167,139,250,0.08); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 5s; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-20px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(0.95); } }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.hero-image-col { display: flex; justify-content: center; }
.hero-img-wrapper { position: relative; width: 100%; max-width: 420px; }
.hero-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 320px; height: 320px; background: radial-gradient(circle, rgba(14,165,233,0.3) 0%, transparent 70%); border-radius: 50%; animation: pulseGlow 3s ease-in-out infinite; }
@keyframes pulseGlow { 0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.15); } }
.hero-product-img { position: relative; z-index: 2; animation: heroFloat 4s ease-in-out infinite; filter: drop-shadow(0 20px 60px rgba(14,165,233,0.4)); max-height: 480px; object-fit: contain; margin: 0 auto; }
@keyframes heroFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-20px) rotate(1deg); } }
.hero-badge { position: absolute; background: rgba(13,27,46,0.9); border: 1px solid var(--border); backdrop-filter: blur(8px); padding: 8px 14px; border-radius: 50px; font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--primary); z-index: 3; white-space: nowrap; animation: badgePop 0.5s ease backwards; }
.hero-badge1 { top: 10%; right: -10px; animation-delay: 0.5s; }
.hero-badge2 { bottom: 25%; left: -10px; animation-delay: 0.8s; }
.hero-badge3 { bottom: 10%; right: 10%; animation-delay: 1.1s; }
@keyframes badgePop { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.hero-particles { position: absolute; inset: 0; z-index: 1; }
.particle { position: absolute; font-size: 20px; animation: particleFloat 6s ease-in-out infinite; }
.p1 { top: 15%; left: 5%; animation-delay: 0s; }
.p2 { top: 60%; right: 5%; animation-delay: 1.5s; }
.p3 { bottom: 20%; left: 10%; animation-delay: 3s; }
.p4 { top: 30%; right: 15%; animation-delay: 4.5s; }
@keyframes particleFloat { 0%,100% { transform: translateY(0) scale(1); opacity: 0.7; } 50% { transform: translateY(-15px) scale(1.2); opacity: 1; } }
.hero-content-col { display: flex; flex-direction: column; gap: 20px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.3); color: var(--primary); padding: 8px 18px; border-radius: 50px; font-family: var(--font-head); font-size: 13px; font-weight: 700; width: fit-content; animation: fadeSlideIn 0.6s ease backwards; }
.hero-h1 { font-size: clamp(28px, 4.5vw, 52px); font-weight: 900; line-height: 1.15; color: var(--white); animation: fadeSlideIn 0.7s ease 0.1s backwards; }
.hero-desc { font-size: clamp(15px, 2vw, 17px); color: var(--text); line-height: 1.75; animation: fadeSlideIn 0.7s ease 0.2s backwards; }
.hero-stars { display: flex; align-items: center; gap: 12px; animation: fadeSlideIn 0.7s ease 0.3s backwards; }
.stars { font-size: 20px; }
.review-count { font-family: var(--font-head); font-size: 14px; color: var(--text-muted); }
.hero-cta-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--gradient-main); color: var(--white); padding: 18px 36px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; font-size: clamp(15px,2.5vw,18px); cursor: pointer; border: none; transition: transform 0.25s, box-shadow 0.25s; min-height: 56px; width: fit-content; animation: fadeSlideIn 0.7s ease 0.4s backwards; position: relative; overflow: hidden; }
.hero-cta-btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); transform: translateX(-100%); transition: transform 0.4s ease; }
.hero-cta-btn:hover::before { transform: translateX(100%); }
.hero-cta-btn:hover { transform: scale(1.05); box-shadow: 0 10px 40px rgba(14,165,233,0.5); }
.hero-cta-btn:active { transform: scale(0.98); }
.hero-guarantee { font-size: 13px; color: var(--text-muted); animation: fadeSlideIn 0.7s ease 0.5s backwards; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 0 20px; }
  .hero-image-col { order: -1; }
  .hero-img-wrapper { max-width: 280px; margin: 0 auto; }
  .hero-tag, .hero-stars { margin: 0 auto; }
  .hero-cta-btn { width: 100%; max-width: 400px; margin: 0 auto; }
  .hero-badge1 { right: 0; }
  .hero-badge2 { left: 0; }
}

/* ===========================
   SECTION 3: WHY CHOOSE
=========================== */
.why-choose { padding: 80px 0; background: #060E1A; }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.badge-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: 0 12px 48px rgba(14,165,233,0.2); }
.badge-icon { width: 80px; height: 80px; margin: 0 auto 16px; }
.badge-icon img { width: 100%; height: 100%; object-fit: contain; }
.badge-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--primary); }
.badge-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) { .badges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .badges-grid { grid-template-columns: 1fr; } }

/* ===========================
   SECTION 4: WHAT IS
=========================== */
.what-is { padding: 80px 0; background: var(--bg-dark); }
.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-is-img .img-frame { border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border); box-shadow: var(--shadow-glow); }
.what-is-img img { width: 100%; object-fit: cover; }
.what-is-content { display: flex; flex-direction: column; gap: 18px; }
.section-title.left { text-align: left; }
.what-is-content p { color: var(--text); font-size: 16px; line-height: 1.8; }
@media (max-width: 768px) { .what-is-grid { grid-template-columns: 1fr; } .what-is-img { order: -1; } .section-title.left { text-align: center; } }

/* ===========================
   SECTION 5: HOW IT WORKS
=========================== */
.how-it-works { padding: 80px 0; background: #060E1A; }
.accordion-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.accordion-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: var(--font-head); font-size: clamp(15px,2vw,17px); font-weight: 700; color: var(--white); text-align: left; min-height: 44px; gap: 12px; transition: background 0.2s; }
.accordion-header:hover { background: rgba(14,165,233,0.08); }
.acc-icon { flex-shrink: 0; transition: transform 0.3s ease; color: var(--primary); }
.accordion-item.open .acc-icon { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body p { padding: 0 24px 20px; font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.accordion-item.open .accordion-body { max-height: 300px; }

/* ===========================
   SECTION 6: REVIEWS
=========================== */
.reviews { padding: 80px 0; background: var(--bg-dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.review-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); flex-shrink: 0; }
.review-header strong { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); }
.review-header span { font-size: 13px; color: var(--text-muted); }
.review-stars { font-size: 18px; margin-bottom: 12px; }
.review-card p { font-size: 15px; color: var(--text); line-height: 1.75; }
.reviews-rating-img { text-align: center; margin-top: 40px; }
.reviews-rating-img img { max-width: 280px; margin: 0 auto; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ===========================
   SECTION 7 & 13: PRICING
=========================== */
.pricing { padding: 80px 0; background: #060E1A; }
.pricing2 { background: var(--bg-dark); }
.countdown-wrapper { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 48px; }
.cd-block { display: flex; flex-direction: column; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 28px; min-width: 90px; }
.cd-num { font-family: var(--font-head); font-size: clamp(36px,6vw,52px); font-weight: 900; color: var(--primary); line-height: 1; }
.cd-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 2px; margin-top: 4px; }
.cd-sep { font-family: var(--font-head); font-size: 48px; font-weight: 900; color: var(--primary); line-height: 1; padding-bottom: 18px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.price-card.popular { border-color: var(--primary); background: linear-gradient(160deg, #0D1B2E, #0F2A40); transform: scale(1.04); }
.price-card.popular:hover { transform: scale(1.04) translateY(-6px); box-shadow: var(--shadow-glow); }
.popular-banner { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--gradient-main); color: var(--white); padding: 6px 20px; border-radius: 50px; font-family: var(--font-head); font-size: 12px; font-weight: 800; white-space: nowrap; }
.price-label { font-family: var(--font-head); font-size: 13px; font-weight: 800; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 6px; }
.price-bottles { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--white); }
.price-supply { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.price-img { max-height: 180px; object-fit: contain; margin: 0 auto 20px; }
.price-amount { font-family: var(--font-head); font-size: 18px; margin-bottom: 4px; }
.price-big { font-size: 42px; font-weight: 900; color: var(--green); }
.price-per { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.free-badges { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.free-badge { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: var(--green); padding: 6px 12px; border-radius: 50px; font-family: var(--font-head); font-size: 12px; font-weight: 700; }
.btn-price { display: block; margin: 0 auto 12px; }
.btn-price .atc-img { max-width: 200px; height: 50px; object-fit: contain; margin: 0 auto; transition: transform 0.2s; }
.btn-price:hover .atc-img { transform: scale(1.05); }
.popular-btn .atc-img { filter: brightness(1.1); }
.cards-img { max-width: 180px; margin: 0 auto; opacity: 0.7; }
.pricing-stars { text-align: center; margin-top: 40px; }
.pricing-stars img { max-width: 240px; margin: 0 auto; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } .price-card.popular { transform: none; } }

/* ===========================
   SECTION 8: BONUS
=========================== */
.bonus-section { padding: 80px 0; background: var(--bg-dark); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bonus-card { background: var(--bg-card); border: 1px solid rgba(245,158,11,0.25); border-radius: var(--radius); padding: 32px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.bonus-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--accent)); }
.bonus-card:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(245,158,11,0.2); }
.bonus-number { display: inline-block; background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3); color: var(--gold); padding: 4px 16px; border-radius: 50px; font-family: var(--font-head); font-size: 12px; font-weight: 800; letter-spacing: 2px; margin-bottom: 20px; }
.bonus-card img { max-height: 200px; object-fit: contain; margin: 0 auto 20px; }
.bonus-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.bonus-card p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
@media (max-width: 768px) { .bonus-grid { grid-template-columns: 1fr; } }

/* ===========================
   SECTION 9: INGREDIENTS
=========================== */
.ingredients { padding: 80px 0; background: #060E1A; }
.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px; transition: transform 0.3s, border-color 0.3s; }
.ing-card:hover { transform: translateY(-4px); border-color: rgba(14,165,233,0.4); }
.ing-icon { font-size: 32px; margin-bottom: 12px; }
.ing-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.ing-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
@media (max-width: 900px) { .ing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .ing-grid { grid-template-columns: 1fr; } }

/* ===========================
   SECTION 10: SCIENCE
=========================== */
.science { padding: 80px 0; background: var(--bg-dark); }
.science-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.science-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 28px; transition: transform 0.3s; }
.science-item:hover { transform: translateY(-4px); }
.science-item h3 { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--accent2); margin-bottom: 12px; }
.science-item p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
@media (max-width: 768px) { .science-grid { grid-template-columns: 1fr; } }

/* ===========================
   SECTION 11: GUARANTEE
=========================== */
.guarantee { padding: 80px 0; background: #060E1A; }
.guarantee-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: center; }
.guarantee-img img { max-width: 300px; margin: 0 auto; filter: drop-shadow(0 10px 40px rgba(14,165,233,0.3)); }
.guarantee-content h2 { font-size: clamp(22px,3.5vw,32px); margin-bottom: 24px; }
.guarantee-point { display: flex; gap: 16px; margin-bottom: 24px; }
.gp-icon { font-size: 32px; flex-shrink: 0; }
.guarantee-point h3 { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.guarantee-point p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
@media (max-width: 768px) { .guarantee-grid { grid-template-columns: 1fr; } .guarantee-img { order: -1; } }

/* ===========================
   SECTION 12: BENEFITS
=========================== */
.benefits { padding: 80px 0; background: var(--bg-dark); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px; transition: transform 0.3s; }
.benefit-item:hover { transform: translateX(6px); }
.check { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.benefit-item h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 768px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ===========================
   SECTION 14: FAQ
=========================== */
.faq { padding: 80px 0; background: #060E1A; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: var(--font-head); font-size: clamp(14px,2vw,16px); font-weight: 700; color: var(--white); text-align: left; min-height: 44px; gap: 12px; transition: background 0.2s; }
.faq-header:hover { background: rgba(14,165,233,0.08); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--primary); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body p { padding: 0 24px 20px; font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.faq-item.open .faq-body { max-height: 300px; }

/* ===========================
   SECTION 15: FINAL CTA
=========================== */
.final-cta {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #040B14, #0A1628, #060E1A);
}
.final-bg { position: absolute; inset: 0; pointer-events: none; }
.final-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.f1 { width: 600px; height: 600px; background: rgba(14,165,233,0.12); top: -200px; left: -200px; animation: orbFloat 10s ease-in-out infinite; }
.f2 { width: 500px; height: 500px; background: rgba(99,102,241,0.1); bottom: -200px; right: -200px; animation: orbFloat 12s ease-in-out 2s infinite; }
.final-content { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.final-img-wrapper { position: relative; display: flex; justify-content: center; }
.final-img { max-width: 360px; margin: 0 auto; filter: drop-shadow(0 20px 60px rgba(14,165,233,0.35)); animation: heroFloat 5s ease-in-out infinite; }
.final-glow-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 280px; height: 280px; border: 2px solid rgba(14,165,233,0.2); border-radius: 50%; animation: ringPulse 3s ease-in-out infinite; }
@keyframes ringPulse { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%,-50%) scale(1.3); opacity: 0; } }
.final-urgency { display: inline-block; background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #FCA5A5; padding: 8px 18px; border-radius: 50px; font-family: var(--font-head); font-size: 13px; font-weight: 700; margin-bottom: 20px; animation: urgencyBlink 2s ease-in-out infinite; }
@keyframes urgencyBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
.final-heading { font-size: clamp(24px,4vw,42px); font-weight: 900; line-height: 1.2; margin-bottom: 24px; }
.final-pricing { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.final-regular { font-family: var(--font-head); font-size: 16px; color: var(--text-muted); }
.final-special { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--green); }
.strike2 { text-decoration: line-through; color: var(--text-muted); font-weight: 400; font-size: 20px; }
.final-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.final-features span { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--text); }
.final-cta-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--gradient-main); color: var(--white); padding: 20px 40px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; font-size: clamp(15px,2.5vw,18px); cursor: pointer; border: none; transition: transform 0.25s, box-shadow 0.25s; min-height: 60px; position: relative; overflow: hidden; animation: ctaPulse 2.5s ease-in-out infinite; }
@keyframes ctaPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(14,165,233,0.4); } 50% { box-shadow: 0 0 0 16px rgba(14,165,233,0); } }
.final-cta-btn:hover { transform: scale(1.05); animation: none; box-shadow: 0 10px 40px rgba(14,165,233,0.5); }
.final-sub { font-size: 13px; color: var(--text-muted); margin-top: 16px; }
@media (max-width: 768px) { .final-content { grid-template-columns: 1fr; text-align: center; } .final-img-wrapper { order: -1; } .final-cta-btn { width: 100%; } .final-urgency, .final-features span { margin: 0 auto; } }

/* ===========================
   SECTION 16: FOOTER
=========================== */
.footer { background: #020810; border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.social-icons { display: flex; gap: 12px; }
.social-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; color: var(--text-muted); transition: color 0.2s, border-color 0.2s; }
.social-icon:hover { color: var(--primary); border-color: var(--primary); }
.footer-links-col h4 { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer-links-col a { display: block; color: var(--text-muted); font-size: 14px; padding: 5px 0; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--primary); }
.footer-legal-links { display: flex; flex-direction: column; gap: 2px; }
.footer-disclaimer { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; margin-bottom: 24px; }
.footer-disclaimer p { font-size: 12px; color: var(--text-muted); line-height: 1.75; }
.footer-copy { text-align: center; font-size: 13px; color: var(--text-muted); padding-top: 24px; border-top: 1px solid var(--border); }
.footer-copy a { color: var(--primary); }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; text-align: center; } .social-icons { justify-content: center; } }

/* ===========================
   PURCHASE NOTIFICATION
=========================== */
.purchase-notif {
  position: fixed; bottom: 20px; left: 20px; z-index: 9998;
  background: var(--bg-card); border: 1px solid rgba(16,185,129,0.4);
  border-radius: var(--radius-sm); padding: 12px 16px; max-width: 300px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateX(-150%); transition: transform 0.4s ease;
}
.purchase-notif.show { transform: translateX(0); }
.notif-inner { display: flex; align-items: center; gap: 12px; }
.notif-inner img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.notif-text { flex: 1; }
.notif-text strong { display: block; font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--white); }
.notif-text span { font-size: 12px; color: var(--text-muted); }
.notif-close-link { background: var(--gradient-main); color: var(--white); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 14px; font-weight: 700; flex-shrink: 0; }
@media (max-width: 480px) { .purchase-notif { bottom: 12px; left: 12px; right: 12px; max-width: none; } }

/* ===========================
   EXIT INTENT POPUP
=========================== */
.exit-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 20px; }
.exit-popup-overlay.show { opacity: 1; pointer-events: all; }
.exit-popup { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px 32px; max-width: 480px; width: 100%; text-align: center; position: relative; transform: scale(0.9); transition: transform 0.3s; }
.exit-popup-overlay.show .exit-popup { transform: scale(1); }
.exit-close { position: absolute; top: 16px; right: 16px; background: var(--bg-card2); border: none; color: var(--text-muted); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.exit-emoji { font-size: 48px; margin-bottom: 16px; }
.exit-popup h3 { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.exit-popup p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
.exit-price { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 24px; }
.exit-big-price { font-family: var(--font-head); font-size: 36px; font-weight: 900; color: var(--green); }
.exit-cta-btn { display: block; background: var(--gradient-main); color: var(--white); padding: 16px 32px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; font-size: 17px; margin-bottom: 12px; transition: transform 0.2s; min-height: 52px; }
.exit-cta-btn:hover { transform: scale(1.04); }
.exit-dismiss { font-size: 12px; color: var(--text-muted); text-decoration: underline; }

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 9997;
  background: var(--gradient-main); color: var(--white);
  width: 56px; height: 56px; border-radius: 50%; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(14,165,233,0.4);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(14,165,233,0.5); }
