/* ==========================================
   JUNGLE BEAST PRO — STYLES.CSS
   Design: Bold & Energetic - Dark Jungle Theme
   ========================================== */

/* === 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: 'Barlow', sans-serif; background: #0a0f1a; color: #e8e8e8; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
input, select, textarea { font-size: 16px; }

/* === CSS VARIABLES === */
:root {
  --jungle-green: #1a7a3c;
  --jungle-light: #22a050;
  --jungle-gold: #d4a017;
  --jungle-amber: #f59e0b;
  --danger-red: #ef4444;
  --dark-bg: #0a0f1a;
  --card-bg: #111827;
  --card-border: #1e2d3d;
  --text-main: #e8e8e8;
  --text-muted: #9ca3af;
  --highlight: #f59e0b;
  --glow: rgba(34,160,80,0.4);
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* === TYPOGRAPHY === */
.highlight { color: var(--highlight); }
h1, h2, h3 { line-height: 1.2; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 5vw, 46px); margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: clamp(15px, 2vw, 18px); margin-bottom: 40px; }

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

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--jungle-light), var(--jungle-gold));
  color: #000;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 52px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(34,160,80,0.4);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(34,160,80,0.6); }
.btn-primary:active { transform: scale(0.98); }
.btn-glow { animation: glow-pulse 2s infinite; }
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(245,158,11,0.5); }
  50% { box-shadow: 0 8px 40px rgba(245,158,11,0.9), 0 0 60px rgba(245,158,11,0.3); }
}

/* === FADE-UP ANIMATION === */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--delay, 0s); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; transition: none; } }

/* ==========================================
   SECTION 1: NAVIGATION
   ========================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,15,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(10,15,26,0.98); box-shadow: 0 4px 24px rgba(0,0,0,0.6); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--highlight); }
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-main); font-weight: 600; font-size: 15px; transition: color 0.2s; }
.nav-links a:hover { color: var(--highlight); }
.nav-cta { background: linear-gradient(135deg, var(--jungle-light), var(--jungle-gold)); color: #000 !important; padding: 10px 22px; border-radius: 30px; font-weight: 800; font-size: 14px; }
.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(--text-main); transition: all 0.3s; border-radius: 2px; }
.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: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(10,15,26,0.98);
    flex-direction: column; justify-content: flex-start; align-items: flex-start;
    padding: 30px 24px; gap: 20px;
    transform: translateX(-100%); transition: transform 0.35s ease;
    backdrop-filter: blur(16px);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; width: 100%; padding: 10px 0; border-bottom: 1px solid var(--card-border); }
  .nav-cta { border-radius: 12px !important; padding: 14px 22px !important; }
}

/* ==========================================
   SECTION 2: HERO
   ========================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: radial-gradient(ellipse at top, #0d2b1a 0%, #0a0f1a 70%);
  padding: 100px 0 60px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a7a3c' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-glow { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(34,160,80,0.35) 0%, transparent 70%); animation: float-glow 4s ease-in-out infinite; }
.hero-bottle { position: relative; z-index: 2; max-width: 320px; width: 100%; filter: drop-shadow(0 20px 60px rgba(34,160,80,0.5)); animation: hero-float 4s ease-in-out infinite; }
.hero-badge-float {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: linear-gradient(135deg, var(--danger-red), #b91c1c);
  color: white; font-weight: 800; font-size: 13px; padding: 8px 14px; border-radius: 20px;
  animation: badge-bounce 2s ease-in-out infinite; box-shadow: 0 4px 16px rgba(239,68,68,0.5);
}
@keyframes hero-float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-20px) rotate(2deg); } }
@keyframes float-glow { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.1); opacity: 1; } }
@keyframes badge-bounce { 0%, 100% { transform: rotate(-5deg) scale(1); } 50% { transform: rotate(5deg) scale(1.1); } }

.hero-tag { display: inline-block; background: rgba(245,158,11,0.15); border: 1px solid var(--highlight); color: var(--highlight); font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.hero-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 64px); line-height: 1.05; margin-bottom: 20px; background: linear-gradient(135deg, #ffffff 40%, var(--highlight) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: clamp(15px, 2vw, 17px); line-height: 1.7; color: #c0ccd8; margin-bottom: 14px; }
.hero-stars { display: flex; align-items: center; gap: 10px; font-size: 20px; margin-bottom: 24px; }
.hero-stars span { font-size: 14px; color: var(--text-muted); }
.btn-hero { font-size: 17px; padding: 18px 36px; width: 100%; max-width: 380px; }
.hero-secure { color: var(--text-muted); font-size: 13px; margin-top: 12px; }

.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

@media (max-width: 767px) {
  .hero { padding: 90px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 220px; }
  .hero-glow { width: 240px; height: 240px; }
  .btn-hero { max-width: 100%; }
}

/* ==========================================
   SECTION 3: WHY CHOOSE US
   ========================================== */
.why-choose { padding: 80px 0; background: var(--card-bg); }
.why-choose .section-title { text-align: center; }
.why-choose .section-sub { text-align: center; }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.badge-card {
  background: var(--dark-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 32px 20px; text-align: center; transition: all 0.3s ease;
}
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: 0 16px 48px rgba(34,160,80,0.3); border-color: var(--jungle-light); }
.badge-icon { width: 80px; height: 80px; margin: 0 auto 16px; object-fit: contain; }
.badge-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--highlight); }
.badge-card p { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

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

/* ==========================================
   SECTION 4: WHAT IS
   ========================================== */
.what-is { padding: 80px 0; background: linear-gradient(180deg, #0a0f1a 0%, #0d1a0f 100%); }
.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-is-content h2 { margin-bottom: 20px; }
.what-is-content p { color: #c0ccd8; line-height: 1.8; margin-bottom: 16px; font-size: 16px; }
.what-is-content .btn-primary { margin-top: 10px; }
.what-is-image img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; max-width: 420px; margin: auto; }

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

/* ==========================================
   SECTION 5: HOW IT WORKS
   ========================================== */
.how-works { padding: 80px 0; background: var(--card-bg); }
.how-works .section-title, .how-works .section-sub { text-align: center; }
.accordion { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.acc-item { border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; }
.acc-header {
  width: 100%; text-align: left; background: var(--dark-bg); color: var(--text-main);
  font-size: 17px; font-weight: 700; padding: 20px 24px; border: none; cursor: pointer;
  transition: background 0.2s; min-height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.acc-header::after { content: '▼'; font-size: 12px; color: var(--highlight); transition: transform 0.3s; }
.acc-item.active .acc-header::after { transform: rotate(180deg); }
.acc-header:hover { background: #1a2535; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.acc-item.active .acc-body { max-height: 400px; }
.acc-body p { padding: 16px 24px; color: #c0ccd8; line-height: 1.8; font-size: 15px; }
.acc-body p + p { padding-top: 0; }

/* ==========================================
   SECTION 6: REVIEWS
   ========================================== */
.reviews { padding: 80px 0; background: var(--dark-bg); }
.reviews .section-title, .reviews .section-sub { text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 28px; transition: all 0.3s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(34,160,80,0.2); border-color: var(--jungle-light); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--jungle-light); }
.review-header strong { display: block; font-size: 16px; color: #fff; }
.review-header span { font-size: 13px; color: var(--text-muted); }
.stars { font-size: 14px; margin-top: 3px; }
.review-card p { font-size: 15px; line-height: 1.7; color: #c0ccd8; }
.rating-img-wrap { text-align: center; margin-top: 40px; }
.rating-img-wrap img { max-width: 220px; margin: 0 auto; }

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

/* ==========================================
   SECTION 7/13: PRICING
   ========================================== */
.pricing { padding: 80px 0; background: linear-gradient(180deg, #0d2b1a 0%, #0a0f1a 100%); }
.pricing-2 { background: linear-gradient(180deg, #0a0f1a 0%, #0d2b1a 100%); }
.pricing .section-title, .pricing .section-sub { text-align: center; }

.countdown-wrap { text-align: center; margin-bottom: 40px; }
.countdown-label { font-size: 16px; font-weight: 700; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.countdown { display: inline-flex; align-items: center; gap: 8px; }
.cd-block { background: var(--card-bg); border: 2px solid var(--danger-red); border-radius: 12px; padding: 16px 28px; text-align: center; box-shadow: 0 4px 20px rgba(239,68,68,0.3); }
.cd-block span { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--danger-red); display: block; line-height: 1; }
.cd-block small { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.cd-sep { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--danger-red); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; position: relative; transition: all 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-popular {
  border: 2px solid var(--highlight); background: linear-gradient(135deg, #1a2535, #0d2b1a);
  transform: scale(1.04);
}
.price-popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--jungle-light), var(--jungle-gold)); color: #000; font-weight: 800; font-size: 12px; padding: 6px 18px; border-radius: 20px; white-space: nowrap; }
.price-label { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--highlight); }
.price-qty { font-size: 28px; font-weight: 800; color: #fff; margin: 4px 0; }
.price-supply { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.price-card img { max-width: 140px; margin: 0 auto 16px; }
.price-amount { font-size: 24px; font-weight: 800; margin: 8px 0 4px; }
.price-old { color: var(--text-muted); text-decoration: line-through; font-size: 16px; margin-right: 8px; }
.price-new { color: var(--highlight); font-size: 32px; }
.price-per { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.bonus-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 12px; }
.bonus-tag { background: rgba(34,160,80,0.15); border: 1px solid var(--jungle-light); color: var(--jungle-light); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 10px; }
.btn-price { width: 100%; margin-bottom: 12px; font-size: 15px; padding: 14px; }
.cards-img { max-width: 160px; margin: 0 auto; opacity: 0.8; }

@media (max-width: 767px) { 
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-popular { transform: scale(1); }
  .price-popular:hover { transform: translateY(-6px); }
}
@media (min-width: 576px) and (max-width: 991px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================
   SECTION 8: BONUS
   ========================================== */
.bonus-section { padding: 80px 0; background: var(--card-bg); }
.bonus-section .section-title { text-align: center; }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.bonus-card {
  background: var(--dark-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; transition: all 0.3s;
}
.bonus-card:hover { transform: translateY(-4px); border-color: var(--highlight); box-shadow: 0 12px 40px rgba(245,158,11,0.2); }
.bonus-card img { max-height: 180px; margin: 0 auto 20px; object-fit: contain; }
.bonus-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.bonus-card p { color: #c0ccd8; font-size: 15px; line-height: 1.7; }
.bonus-value { margin-top: 12px; font-size: 16px; }

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

/* ==========================================
   SECTION 9: INGREDIENTS
   ========================================== */
.ingredients { padding: 80px 0; background: var(--dark-bg); }
.ingredients .section-title, .ingredients .section-sub { text-align: center; }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ingredient-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px;
  padding: 24px; transition: all 0.3s;
}
.ingredient-card:hover { border-color: var(--jungle-light); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(34,160,80,0.2); }
.ingredient-card h3 { font-size: 17px; font-weight: 800; color: var(--highlight); margin-bottom: 10px; }
.ingredient-card p { font-size: 14px; line-height: 1.7; color: #c0ccd8; }

@media (max-width: 767px) { .ingredients-grid { grid-template-columns: 1fr; } }
@media (min-width: 576px) and (max-width: 991px) { .ingredients-grid { grid-template-columns: 1fr 1fr; } }

/* ==========================================
   SECTION 10: SCIENCE
   ========================================== */
.science { padding: 80px 0; background: var(--card-bg); }
.science .section-title, .science .section-sub { text-align: center; }
.science-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.science-card {
  background: var(--dark-bg); border: 1px solid var(--card-border); border-left: 4px solid var(--jungle-light);
  border-radius: var(--radius); padding: 28px; transition: all 0.3s;
}
.science-card:hover { box-shadow: 0 8px 32px rgba(34,160,80,0.2); transform: translateY(-3px); }
.science-card h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.science-card p { font-size: 14px; line-height: 1.8; color: #c0ccd8; margin-bottom: 12px; }
.science-card em { color: var(--highlight); font-style: normal; }

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

/* ==========================================
   SECTION 11: GUARANTEE
   ========================================== */
.guarantee { padding: 80px 0; background: linear-gradient(135deg, #0d2b1a 0%, #0a0f1a 100%); }
.guarantee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.guarantee-image img { border-radius: 50%; max-width: 320px; width: 100%; margin: auto; box-shadow: 0 0 60px rgba(34,160,80,0.3); }
.guarantee-content h2 { margin-bottom: 16px; }
.guarantee-content > p { color: #c0ccd8; margin-bottom: 28px; font-size: 16px; line-height: 1.7; }
.guarantee-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.guarantee-point { display: flex; gap: 16px; align-items: flex-start; }
.gp-icon { font-size: 28px; flex-shrink: 0; }
.guarantee-point h3 { font-size: 17px; font-weight: 800; color: var(--highlight); margin-bottom: 6px; }
.guarantee-point p { font-size: 14px; color: #c0ccd8; line-height: 1.6; }

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

/* ==========================================
   SECTION 12: BENEFITS
   ========================================== */
.benefits { padding: 80px 0; background: var(--card-bg); }
.benefits .section-title, .benefits .section-sub { text-align: center; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--dark-bg); border: 1px solid var(--card-border); border-radius: 12px; transition: all 0.3s; }
.benefit-item:hover { border-color: var(--jungle-light); box-shadow: 0 4px 20px rgba(34,160,80,0.15); }
.benefit-check { font-size: 24px; flex-shrink: 0; }
.benefit-item h3 { font-size: 16px; font-weight: 800; color: var(--highlight); margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: #c0ccd8; line-height: 1.6; }

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

/* ==========================================
   SECTION 14: FAQ
   ========================================== */
.faq { padding: 80px 0; background: var(--dark-bg); }
.faq .section-title { text-align: center; }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; background: var(--card-bg); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  color: #fff; font-size: 17px; font-weight: 700; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center; min-height: 60px;
  transition: background 0.2s;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--highlight); font-weight: 300; flex-shrink: 0; margin-left: 12px; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { background: #1a2535; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; color: #c0ccd8; font-size: 15px; line-height: 1.8; }

/* ==========================================
   SECTION 15: FINAL CTA
   ========================================== */
.final-cta {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, #0d2b1a 0%, #0a0f1a 70%);
  overflow: hidden; position: relative;
}
.final-cta::before {
  content: '🦁'; position: absolute; font-size: 300px; opacity: 0.04;
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.final-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.final-cta-image img { max-width: 380px; width: 100%; margin: auto; filter: drop-shadow(0 20px 60px rgba(34,160,80,0.5)); animation: hero-float 5s ease-in-out infinite; }
.final-tag { display: inline-block; background: rgba(239,68,68,0.15); border: 1px solid var(--danger-red); color: var(--danger-red); font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; text-transform: uppercase; }
.final-cta-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 4vw, 46px); margin-bottom: 16px; background: linear-gradient(135deg, #fff 40%, var(--highlight) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.final-desc { color: #c0ccd8; font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.final-pricing { margin-bottom: 28px; }
.final-old { display: block; font-size: 16px; color: var(--text-muted); margin-bottom: 6px; }
.final-new { display: block; font-size: 36px; font-weight: 900; color: var(--highlight); }
.btn-final { font-size: 18px; padding: 20px 40px; width: 100%; max-width: 400px; }
.final-guarantees { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.final-guarantees span { font-size: 13px; color: var(--text-muted); font-weight: 600; }

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

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: #040810; padding: 60px 0 30px; border-top: 1px solid var(--card-border); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--highlight); }
.footer-brand img { width: 44px; height: 44px; border-radius: 8px; object-fit: contain; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 24px; }
.footer-links a { color: var(--text-muted); font-size: 14px; font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: var(--highlight); }
.footer-disclaimer { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 20px; margin-bottom: 30px; }
.footer-disclaimer p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-bottom { border-top: 1px solid var(--card-border); padding-top: 20px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 0; align-items: center; }
.legal-link { color: var(--text-muted); font-size: 13px; transition: color 0.2s; padding: 4px 6px; }
.legal-link:hover { color: var(--highlight); }
.link-separator { color: var(--card-border); padding: 0 4px; }
.footer-social { display: flex; gap: 16px; }
.social-icon { font-size: 24px; transition: transform 0.2s; }
.social-icon:hover { transform: scale(1.2); }
.copyright { font-size: 13px; color: var(--text-muted); }

@media (max-width: 767px) {
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--jungle-light), var(--jungle-gold));
  color: #000; font-size: 18px; font-weight: 700;
  border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(34,160,80,0.5);
  display: none; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(34,160,80,0.7); }

/* ==========================================
   POPUP
   ========================================== */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.8); display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.popup-overlay.show { display: flex; }
.popup-box {
  background: var(--card-bg); border: 1px solid var(--jungle-light);
  border-radius: 20px; max-width: 680px; width: 100%; position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8), 0 0 60px rgba(34,160,80,0.3);
  animation: popup-in 0.4s ease;
  overflow: hidden;
}
@keyframes popup-in { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  background: rgba(239,68,68,0.15); border: 1px solid var(--danger-red); color: var(--danger-red);
  font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 20px;
  cursor: pointer; transition: all 0.2s;
  display: block; text-align: center; min-height: 36px; line-height: 24px;
}
.popup-close:hover { background: var(--danger-red); color: #fff; }
.popup-inner { display: grid; grid-template-columns: 1fr 1.5fr; }
.popup-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px 0 0 20px; min-height: 280px; }
.popup-content { padding: 40px 28px; }
.popup-tag { background: rgba(239,68,68,0.15); border: 1px solid var(--danger-red); color: var(--danger-red); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 12px; display: inline-block; margin-bottom: 14px; }
.popup-content h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.popup-content p { color: #c0ccd8; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.popup-content .btn-primary { width: 100%; }
.popup-dismiss { text-align: center; font-size: 12px; color: var(--text-muted); cursor: pointer; margin-top: 12px; text-decoration: underline; margin-bottom: 0; }
.popup-dismiss:hover { color: #fff; }

@media (max-width: 580px) {
  .popup-inner { grid-template-columns: 1fr; }
  .popup-inner img { border-radius: 20px 20px 0 0; min-height: 160px; max-height: 180px; }
  .popup-content { padding: 24px 20px; }
  .popup-box { max-height: 90vh; overflow-y: auto; }
}

/* ==========================================
   PURCHASE NOTIFICATION
   ========================================== */
.notification {
  position: fixed; bottom: 90px; left: 20px; z-index: 9000;
  background: var(--card-bg); border: 1px solid var(--jungle-light);
  border-radius: 14px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  max-width: 280px; transform: translateX(-120%); transition: transform 0.4s ease;
}
.notification.show { transform: translateX(0); }
.notif-icon { font-size: 24px; flex-shrink: 0; }
.notif-text { font-size: 13px; line-height: 1.5; }
.notif-text strong { color: var(--highlight); display: block; }

@media (max-width: 480px) {
  .notification { left: 10px; right: 10px; max-width: none; bottom: 80px; }
}

/* Additional section spacing */
section { position: relative; }
