/* ===========================
   ERECTION GEL - STYLES.CSS
   Design: Premium Luxury Dark
   =========================== */

/* === CSS VARIABLES === */
:root {
  --primary: #4F46E5;
  --primary-dark: #3730A3;
  --accent: #06B6D4;
  --accent2: #10B981;
  --gold: #F59E0B;
  --danger: #EF4444;
  --dark: #0A0A1A;
  --dark2: #111128;
  --dark3: #1A1A35;
  --card-bg: #16162A;
  --text: #E2E8F0;
  --text-muted: #94A3B8;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #4F46E5, #06B6D4);
  --gradient-gold: linear-gradient(135deg, #F59E0B, #EF4444);
  --shadow: 0 20px 60px rgba(79,70,229,0.3);
  --radius: 16px;
  --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%; }
* { -webkit-tap-highlight-color: transparent; }
body { font-family: var(--font-body); background: var(--dark); color: var(--text); line-height: 1.7; overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === UTILITY === */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.section-sub { color: var(--text-muted); font-size: clamp(15px, 2vw, 18px); }

/* === ANIMATION CLASSES === */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-up { opacity: 0; transform: translateY(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .slide-up { opacity: 1; transform: none; transition: none; }
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,10,26,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(79,70,229,0.2); transition: all 0.3s ease; }
.navbar.scrolled { background: rgba(10,10,26,0.99); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 40px; height: 40px; border-radius: 8px; object-fit: contain; }
.logo-text { font-family: var(--font-head); font-size: 22px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-family: var(--font-body); font-size: 15px; color: var(--text-muted); transition: color 0.3s; font-weight: 500; }
.nav-link:hover { color: var(--accent); }
.btn-nav { background: var(--gradient); color: var(--white); padding: 10px 22px; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: 14px; transition: transform 0.3s, box-shadow 0.3s; min-height: 44px; display: flex; align-items: center; }
.btn-nav:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(79,70,229,0.5); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: var(--dark2); flex-direction: column; padding: 20px; gap: 15px; transform: translateY(-120%); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease; border-bottom: 2px solid var(--primary); }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .btn-nav { width: 100%; justify-content: center; padding: 14px; }
  .nav-link { font-size: 17px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; text-align: center; }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79,70,229,0.15) 0%, transparent 70%), radial-gradient(ellipse 60% 50% at 100% 50%, rgba(6,182,212,0.1) 0%, transparent 60%); pointer-events: none; }
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--primary); opacity: 0.4; animation: float linear infinite; }
@keyframes float { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 0.4; } 90% { opacity: 0.4; } 100% { transform: translateY(-100px) scale(1); opacity: 0; } }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 20px; }
.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(79,70,229,0.4), transparent 70%); animation: pulse-glow 3s ease-in-out infinite; }
@keyframes pulse-glow { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.2); opacity: 0.8; } }
.hero-product-img { width: 100%; max-width: 380px; position: relative; z-index: 1; animation: float-product 4s ease-in-out infinite; filter: drop-shadow(0 30px 60px rgba(79,70,229,0.5)); }
@keyframes float-product { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-20px) rotate(2deg); } }
.hero-badge { position: absolute; top: 10px; right: 10px; background: var(--gradient-gold); color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 12px; padding: 8px 14px; border-radius: 50px; z-index: 2; animation: badge-bounce 2s ease-in-out infinite; }
@keyframes badge-bounce { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

.hero-content { position: relative; z-index: 1; }
.hero-tag { display: inline-block; background: rgba(79,70,229,0.2); border: 1px solid rgba(79,70,229,0.4); color: var(--accent); padding: 6px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.hero-title { font-family: var(--font-head); font-size: clamp(28px, 4.5vw, 52px); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero-desc { color: var(--text-muted); font-size: clamp(15px, 1.8vw, 17px); margin-bottom: 14px; line-height: 1.8; }
.btn-hero { display: inline-flex; align-items: center; justify-content: center; background: var(--gradient); color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: clamp(15px, 2vw, 18px); padding: 18px 36px; border-radius: 60px; margin: 20px 0 16px; transition: transform 0.3s, box-shadow 0.3s; min-height: 56px; box-shadow: 0 10px 40px rgba(79,70,229,0.5); animation: btn-pulse 2.5s ease-in-out infinite; }
@keyframes btn-pulse { 0%, 100% { box-shadow: 0 10px 40px rgba(79,70,229,0.5); } 50% { box-shadow: 0 15px 60px rgba(79,70,229,0.8), 0 0 30px rgba(6,182,212,0.3); } }
.btn-hero:hover { transform: scale(1.05); }
.btn-hero:active { transform: scale(0.98); }
.hero-trust { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); }
.hero-trust span { display: flex; align-items: center; gap: 4px; }

@media (max-width: 767px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; padding: 30px 20px; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-product-img { max-width: 240px; margin: 0 auto; }
  .hero-glow { width: 220px; height: 220px; }
  .hero-trust { justify-content: center; }
  .btn-hero { width: 100%; }
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-us { background: var(--dark2); }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.badge-card { background: var(--card-bg); border: 1px solid rgba(79,70,229,0.2); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow); border-color: var(--primary); }
.badge-icon { width: 70px; height: 70px; object-fit: contain; margin: 0 auto 16px; }
.badge-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.badge-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

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

/* ===========================
   WHAT IS
   =========================== */
.what-is { background: var(--dark); }
.what-is-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-is-img { border-radius: 20px; box-shadow: var(--shadow); width: 100%; }
.what-is-content h2 { font-family: var(--font-head); font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 20px; }
.what-is-content p { color: var(--text-muted); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }
.btn-primary { display: inline-flex; align-items: center; background: var(--gradient); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 16px; padding: 14px 30px; border-radius: 50px; transition: transform 0.3s, box-shadow 0.3s; min-height: 50px; margin-top: 10px; }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(79,70,229,0.5); }

@media (max-width: 767px) {
  .what-is-inner { grid-template-columns: 1fr; }
  .what-is-image { order: -1; }
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works { background: var(--dark2); }
.accordion-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: var(--card-bg); border: 1px solid rgba(79,70,229,0.2); border-radius: var(--radius); overflow: hidden; }
.accordion-btn { width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 24px; text-align: left; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: clamp(15px, 2vw, 17px); transition: background 0.3s; min-height: 60px; }
.accordion-btn:hover { background: rgba(79,70,229,0.1); }
.acc-num { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 20px; font-weight: 900; min-width: 32px; }
.acc-title { flex: 1; }
.acc-icon { font-size: 22px; color: var(--accent); transition: transform 0.3s; margin-left: auto; }
.accordion-btn.active .acc-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.accordion-body.open { max-height: 300px; }
.accordion-body p { padding: 0 24px 20px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* ===========================
   REVIEWS
   =========================== */
.reviews { background: var(--dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--card-bg); border: 1px solid rgba(79,70,229,0.2); border-radius: var(--radius); padding: 28px; transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.review-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); flex-shrink: 0; }
.review-name { display: block; font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 15px; }
.review-location { font-size: 13px; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 16px; margin-top: 4px; }
.review-text { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

@media (max-width: 767px) { .reviews-grid { grid-template-columns: 1fr; } }
@media (min-width: 576px) and (max-width: 767px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===========================
   PRICING
   =========================== */
.pricing { background: var(--dark2); }
.countdown-wrap { text-align: center; margin-bottom: 40px; }
.countdown-label { font-size: 16px; color: var(--text-muted); margin-bottom: 12px; }
.countdown { display: inline-flex; align-items: center; gap: 8px; }
.cd-box { background: var(--gradient); padding: 16px 24px; border-radius: 12px; min-width: 80px; text-align: center; }
.cd-box span { display: block; font-family: var(--font-head); font-size: clamp(28px, 5vw, 42px); font-weight: 900; color: var(--white); }
.cd-box small { display: block; font-size: 11px; color: rgba(255,255,255,0.8); font-weight: 700; letter-spacing: 1px; }
.cd-sep { font-family: var(--font-head); font-size: 36px; font-weight: 900; color: var(--primary); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.price-card { background: var(--card-bg); border: 2px solid rgba(79,70,229,0.2); border-radius: 20px; padding: 30px 24px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price-card.popular { border-color: var(--primary); background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(6,182,212,0.1)); transform: scale(1.03); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-gold); color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 13px; padding: 6px 20px; border-radius: 50px; white-space: nowrap; }
.price-label { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--accent); letter-spacing: 2px; margin-bottom: 6px; }
.price-qty { font-family: var(--font-head); font-weight: 900; font-size: clamp(18px, 3vw, 24px); color: var(--white); }
.price-supply { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.price-img { width: 100%; max-width: 160px; margin: 0 auto 16px; }
.price-amount { font-family: var(--font-head); font-weight: 900; font-size: clamp(24px, 4vw, 36px); color: var(--white); }
.old-price { color: var(--text-muted); font-size: 18px; margin-right: 8px; }
.new-price { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-per { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.price-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.free-badge { background: rgba(16,185,129,0.2); border: 1px solid var(--accent2); color: var(--accent2); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.btn-price { display: block; width: 100%; background: var(--gradient); color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 15px; padding: 14px; border-radius: 50px; transition: transform 0.3s, box-shadow 0.3s; min-height: 50px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.btn-price:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(79,70,229,0.5); }
.popular-btn { background: var(--gradient-gold); box-shadow: 0 8px 25px rgba(245,158,11,0.4); }
.payment-logos { max-width: 140px; margin: 0 auto; opacity: 0.7; }
.rating-row { text-align: center; }
.five-star-img { max-width: 300px; margin: 0 auto; }
.star-fallback { font-size: 18px; color: var(--gold); font-weight: 700; text-align: center; }

@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
}
@media (min-width: 576px) and (max-width: 991px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   BONUS
   =========================== */
.bonus { background: var(--dark); }
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.bonus-card { background: var(--card-bg); border: 1px solid rgba(79,70,229,0.2); border-radius: var(--radius); padding: 30px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.bonus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.bonus-number { display: inline-block; background: var(--gradient); color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 13px; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.bonus-img { width: 100%; max-height: 200px; object-fit: contain; margin: 0 auto 16px; border-radius: 12px; }
.bonus-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--white); margin-bottom: 12px; }
.bonus-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.bonus-value { margin-top: 14px; color: var(--accent2); font-weight: 700; font-size: 15px; }

@media (max-width: 767px) { .bonus-grid { grid-template-columns: 1fr; } }

/* ===========================
   INGREDIENTS
   =========================== */
.ingredients { background: var(--dark2); }
.ingr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.ingr-card { background: var(--card-bg); border: 1px solid rgba(79,70,229,0.15); border-radius: var(--radius); padding: 24px; transition: transform 0.3s, border-color 0.3s; }
.ingr-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.ingr-icon { font-size: 32px; margin-bottom: 12px; }
.ingr-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--white); margin-bottom: 10px; }
.ingr-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===========================
   SCIENCE
   =========================== */
.science { background: var(--dark); }
.science-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.science-card { background: var(--card-bg); border: 1px solid rgba(6,182,212,0.2); border-radius: var(--radius); padding: 28px; }
.science-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--white); margin-bottom: 12px; }
.science-card p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.sci-ref { margin-top: 12px; font-size: 12px; color: var(--accent); font-style: italic; }

@media (max-width: 767px) { .science-grid { grid-template-columns: 1fr; } }

/* ===========================
   GUARANTEE
   =========================== */
.guarantee { background: var(--dark2); }
.guarantee-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: center; }
.guarantee-img { width: 100%; max-width: 300px; margin: 0 auto; }
.guarantee-content h2 { font-family: var(--font-head); font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.guarantee-intro { color: var(--text-muted); font-size: 16px; margin-bottom: 24px; }
.guarantee-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.g-point { display: flex; gap: 16px; align-items: flex-start; }
.g-icon { font-size: 28px; min-width: 36px; }
.g-point h3 { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--white); margin-bottom: 6px; }
.g-point p { font-size: 14px; color: var(--text-muted); }

@media (max-width: 767px) {
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-image { order: -1; }
  .g-point { text-align: left; }
}

/* ===========================
   BENEFITS
   =========================== */
.benefits { background: var(--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(--card-bg); border: 1px solid rgba(79,70,229,0.15); border-radius: var(--radius); padding: 20px; transition: border-color 0.3s, transform 0.3s; }
.benefit-item:hover { border-color: var(--accent2); transform: translateX(4px); }
.check { font-size: 22px; min-width: 28px; }
.benefit-item h3 { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 6px; }
.benefit-item p { font-size: 13px; color: var(--text-muted); }

@media (max-width: 575px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ===========================
   FAQ
   =========================== */
.faq { background: var(--dark2); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card-bg); border: 1px solid rgba(79,70,229,0.2); border-radius: var(--radius); overflow: hidden; }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; text-align: left; font-family: var(--font-head); font-weight: 700; font-size: clamp(14px, 2vw, 16px); color: var(--white); min-height: 60px; transition: background 0.3s; }
.faq-btn:hover { background: rgba(79,70,229,0.1); }
.faq-icon { font-size: 22px; color: var(--accent); transition: transform 0.3s; margin-left: 12px; flex-shrink: 0; }
.faq-btn.active .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body.open { max-height: 300px; }
.faq-body p { padding: 0 24px 20px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* ===========================
   FINAL CTA
   =========================== */
.final-cta { background: var(--dark); position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(79,70,229,0.15), transparent 70%); pointer-events: none; }
.final-cta-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.final-img { width: 100%; max-width: 340px; margin: 0 auto; filter: drop-shadow(0 20px 50px rgba(79,70,229,0.5)); animation: float-product 5s ease-in-out infinite; }
.final-cta-content { text-align: left; }
.final-urgency { display: inline-block; background: var(--gradient-gold); color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 13px; padding: 8px 20px; border-radius: 50px; margin-bottom: 16px; animation: badge-bounce 2s ease-in-out infinite; }
.final-cta-content h2 { font-family: var(--font-head); font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; color: var(--white); margin-bottom: 20px; }
.final-price { margin: 16px 0; }
.final-old { display: block; font-size: 16px; color: var(--text-muted); margin-bottom: 6px; }
.final-new { display: block; font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.final-cta-content p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.btn-final { display: inline-flex; align-items: center; justify-content: center; background: var(--gradient-gold); color: var(--white); font-family: var(--font-head); font-weight: 900; font-size: clamp(16px, 2.5vw, 20px); padding: 18px 40px; border-radius: 60px; transition: transform 0.3s, box-shadow 0.3s; min-height: 60px; box-shadow: 0 10px 40px rgba(245,158,11,0.5); animation: btn-pulse-gold 2.5s ease-in-out infinite; }
@keyframes btn-pulse-gold { 0%, 100% { box-shadow: 0 10px 40px rgba(245,158,11,0.5); } 50% { box-shadow: 0 15px 60px rgba(245,158,11,0.8); } }
.btn-final:hover { transform: scale(1.05); }
.final-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 16px; font-size: 14px; color: var(--text-muted); }

@media (max-width: 767px) {
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta-content { text-align: center; }
  .final-trust { justify-content: center; }
  .btn-final { width: 100%; }
}

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--dark2); border-top: 1px solid rgba(79,70,229,0.2); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { font-size: 26px; display: block; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.social-icons { display: flex; gap: 12px; }
.social-icon { width: 40px; height: 40px; background: rgba(79,70,229,0.2); border: 1px solid rgba(79,70,229,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--text-muted); transition: background 0.3s, color 0.3s; }
.social-icon:hover { background: var(--primary); color: var(--white); }
.footer-links-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 16px; letter-spacing: 1px; }
.footer-links-col a { display: block; font-size: 14px; color: var(--text-muted); margin-bottom: 10px; transition: color 0.3s; }
.footer-links-col a:hover { color: var(--accent); }
.footer-legal-links { display: flex; flex-direction: column; gap: 10px; }
.footer-disclaimer { padding: 24px 20px; border-top: 1px solid rgba(79,70,229,0.15); }
.footer-disclaimer p { font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.copyright { text-align: center; color: var(--text-muted); font-size: 13px; }

@media (max-width: 767px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--gradient); color: var(--white); font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; z-index: 999; box-shadow: 0 4px 20px rgba(79,70,229,0.5); }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: scale(1.1); }
.scroll-top:active { transform: scale(0.95); }

/* ===========================
   PURCHASE NOTIFICATION
   =========================== */
.notif-popup { position: fixed; bottom: 24px; left: 24px; background: var(--card-bg); border: 1px solid rgba(79,70,229,0.4); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; z-index: 998; transform: translateX(-200%); transition: transform 0.5s ease; max-width: 280px; box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.notif-popup.show { transform: translateX(0); }
.notif-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.notif-text strong { display: block; font-family: var(--font-head); font-size: 14px; color: var(--white); }
.notif-text span { font-size: 13px; color: var(--text-muted); }

/* ===========================
   EXIT POPUP
   =========================== */
.exit-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.exit-popup-overlay.show { opacity: 1; pointer-events: all; }
.exit-popup { background: var(--dark3); border: 2px solid var(--primary); border-radius: 20px; padding: 40px 30px; max-width: 460px; width: 100%; text-align: center; position: relative; }
.exit-close { position: absolute; top: 12px; right: 16px; font-size: 20px; color: var(--text-muted); padding: 8px; min-width: 36px; min-height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.3s; }
.exit-close:hover { background: rgba(239,68,68,0.2); color: var(--danger); }
.exit-emoji { font-size: 48px; margin-bottom: 12px; }
.exit-popup h3 { font-family: var(--font-head); font-size: clamp(20px, 4vw, 26px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.exit-popup p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
.btn-exit { display: block; background: var(--gradient-gold); color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 16px; padding: 16px 28px; border-radius: 50px; margin-bottom: 12px; transition: transform 0.3s, box-shadow 0.3s; min-height: 54px; display: flex; align-items: center; justify-content: center; }
.btn-exit:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(245,158,11,0.5); }
.exit-close-link { display: block; font-size: 14px; color: var(--text-muted); transition: color 0.3s; padding: 8px; }
.exit-close-link:hover { color: var(--accent); }
