/* ===================================================
   COMPLETE STOCK MARKET MASTERCLASS — style.css
   =================================================== */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0B0B0B;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0B0B0B; }
::-webkit-scrollbar-thumb { background: rgba(255,215,0,0.3); border-radius: 3px; }

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #0B0B0B;
  --primary: #FFD700;
  --secondary: #00E676;
  --glass: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --gold-glow: 0 0 30px rgba(255,215,0,0.35);
  --green-glow: 0 0 20px rgba(0,230,118,0.35);
}

/* ===================================================
   ANNOUNCEMENT BAR
   =================================================== */
#ann-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: linear-gradient(90deg, #130e00, #1f1600, #130e00);
  border-bottom: 1px solid rgba(255,215,0,0.25);
  padding: 6px 10px;
}
.ann-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto;
  row-gap: 3px;
}
.ann-fire { font-size: 12px; font-weight: 800; color: var(--primary); white-space: nowrap; }
.ann-price { font-size: 11px; color: #fff; font-weight: 600; white-space: nowrap; }
.ann-price s { color: rgba(255,255,255,0.4); }
.ann-price b { color: var(--secondary); }
.ann-sep { color: rgba(255,215,0,0.35); font-size: 11px; }
.ann-timer-wrap { display: flex; align-items: center; gap: 4px; }
.ann-lbl { font-size: 10px; color: rgba(255,255,255,0.6); white-space: nowrap; }
.ann-boxes { display: flex; gap: 3px; align-items: center; }
.ann-box {
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 4px; padding: 2px 4px;
  font-size: 11px; font-weight: 900;
  color: var(--primary); font-family: 'Outfit', monospace;
  min-width: 24px; text-align: center;
}
.ann-col { color: var(--primary); font-weight: 900; font-size: 11px; }

/* ===================================================
   HEADER
   =================================================== */
#hdr {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 9998;
  padding: 10px 16px;
  background: rgba(11,11,11,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
#hdr.scrolled { background: rgba(5,5,5,0.97); }
.hdr-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.logo-icon-only {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: var(--gold-glow); flex-shrink: 0;
}
nav.desk { display: flex; gap: 2px; }
nav.desk a {
  padding: 6px 12px; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65); border-radius: 6px; transition: all 0.2s;
}
nav.desk a:hover { color: var(--primary); background: rgba(255,215,0,0.07); }
.hdr-cta {
  background: linear-gradient(135deg, var(--primary), #ffaa00);
  color: #0B0B0B; padding: 9px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 900; font-family: 'Outfit', sans-serif;
  box-shadow: var(--gold-glow); transition: all 0.2s;
  white-space: nowrap; flex-shrink: 0;
}
.hdr-cta:hover { transform: translateY(-1px); box-shadow: 0 0 40px rgba(255,215,0,0.6); }
.burger {
  display: none; flex-direction: column; gap: 4px;
  cursor: pointer; padding: 4px; flex-shrink: 0;
}
.burger span { width: 20px; height: 2px; background: var(--primary); border-radius: 2px; display: block; }

/* Mobile Nav Drawer */
#mob-nav {
  display: none; position: fixed; inset: 0; z-index: 99997;
  background: rgba(5,5,5,0.98); backdrop-filter: blur(12px);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
#mob-nav.open { display: flex; }
#mob-close { position: absolute; top: 18px; right: 20px; font-size: 26px; cursor: pointer; color: rgba(255,255,255,0.5); }
#mob-nav a { font-size: 22px; font-weight: 700; color: #fff; }
#mob-nav a:hover { color: var(--primary); }
#mob-nav .mob-enroll {
  background: linear-gradient(135deg, var(--primary), #ffaa00);
  color: #0B0B0B; padding: 14px 32px; border-radius: 10px;
  font-size: 16px; font-weight: 900; font-family: 'Outfit', sans-serif;
}

/* ===== PAGE OFFSET ===== */
#content { padding-top: 90px; }

/* ===================================================
   SOCIAL PROOF NOTIFICATION
   =================================================== */
#sp-wrap {
  position: fixed; top: 102px; right: 14px; z-index: 9980;
  max-width: 280px; width: calc(100vw - 28px); pointer-events: none;
}
.sp-notif {
  background: rgba(18,18,18,0.97);
  border: 1px solid rgba(0,230,118,0.28);
  border-radius: 12px; padding: 11px 14px;
  display: flex; align-items: flex-start; gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  transform: translateX(110%); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.5s;
}
.sp-notif.show { transform: translateX(0); opacity: 1; }
.sp-notif.hide {
  transform: translateX(110%); opacity: 0;
  transition: transform 0.35s ease-in, opacity 0.35s;
}
.sp-dot { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.sp-body { flex: 1; }
.sp-name { font-size: 12px; font-weight: 700; color: #fff; }
.sp-msg { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.4; margin-top: 1px; }
.sp-msg b { color: rgba(255,255,255,0.8); }
.sp-price-tag { color: var(--secondary); font-weight: 700; }
.sp-tick { font-size: 11px; color: var(--secondary); font-weight: 600; margin-top: 3px; }

/* ===================================================
   SECTION BASE STYLES
   =================================================== */
section { padding: 64px 16px; }
.wrap { max-width: 1100px; margin: 0 auto; }
.tag {
  display: inline-block;
  background: rgba(255,215,0,0.09); border: 1px solid rgba(255,215,0,0.2);
  color: var(--primary); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; padding: 4px 12px; border-radius: 100px;
  margin-bottom: 14px; text-transform: uppercase;
}
.sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900; line-height: 1.18; margin-bottom: 12px;
}
.sec-sub { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 600px; }
.tc { text-align: center; }
.tc .sec-sub { margin: 0 auto; }

/* ===================================================
   HERO SECTION
   =================================================== */
#hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 40px 16px 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 30%, rgba(255,215,0,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(0,230,118,0.04) 0%, transparent 55%),
    #0B0B0B;
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.025;
  background-image:
    linear-gradient(rgba(255,215,0,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,1) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-inner {
  position: relative; width: 100%; max-width: 680px;
  margin: 0 auto; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,230,118,0.09); border: 1px solid rgba(0,230,118,0.28);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--secondary);
  margin-bottom: 20px;
  animation: badge-pulse 2.5s infinite;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--secondary);
  border-radius: 50%; animation: blink 1.4s infinite;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 7.5vw, 60px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -1px; margin-bottom: 18px;
}
.hero-title .gold { color: var(--primary); }
.hero-sub {
  font-size: clamp(14px, 2.5vw, 17px);
  color: rgba(255,255,255,0.68); line-height: 1.75;
  margin-bottom: 22px; max-width: 600px;
}
.hero-trust-line {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75);
  margin-bottom: 28px; flex-wrap: wrap; justify-content: center;
}
.ld {
  width: 9px; height: 9px; background: var(--secondary);
  border-radius: 50%; animation: blink 1.4s infinite; flex-shrink: 0;
}

/* Offer Box */
.offer-box {
  width: 100%; max-width: 400px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.2); border-radius: 14px;
  padding: 20px 22px; margin-bottom: 24px;
  position: relative; overflow: hidden; backdrop-filter: blur(10px);
}
.offer-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.offer-prices {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 10px; flex-wrap: wrap;
}
.p-old { font-size: 20px; font-weight: 700; color: rgba(255,255,255,0.38); text-decoration: line-through; }
.p-arr { color: var(--primary); font-size: 18px; }
.p-new {
  font-family: 'Outfit'; font-size: clamp(40px, 10vw, 56px);
  font-weight: 900; color: var(--primary);
  text-shadow: var(--gold-glow); line-height: 1;
}
.p-save {
  display: inline-block;
  background: rgba(0,230,118,0.12); border: 1px solid rgba(0,230,118,0.28);
  color: var(--secondary); font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
}

/* Primary Button */
.btn-gold {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, #ffaa00 100%);
  color: #0B0B0B; padding: 17px 28px; border-radius: 12px;
  font-size: clamp(15px, 3.5vw, 18px); font-weight: 900;
  font-family: 'Outfit', sans-serif; letter-spacing: 0.4px;
  box-shadow: 0 0 35px rgba(255,215,0,0.5), 0 8px 24px rgba(0,0,0,0.3);
  transition: all 0.3s; cursor: pointer;
  width: 100%; max-width: 420px;
  animation: gold-pulse 2.2s infinite;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 65px rgba(255,215,0,0.8), 0 12px 32px rgba(0,0,0,0.4);
}
.hero-micros {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; margin-top: 14px;
}
.micro {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500;
}
.micro .gi { color: var(--secondary); font-size: 13px; }
.stars-row { color: var(--primary); font-size: 15px; letter-spacing: 2px; }

/* ===================================================
   LIVE ACTIVITY BAR
   =================================================== */
#act-bar {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
}
.act-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.act-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.act-num { color: var(--primary); font-family: 'Outfit'; font-weight: 900; font-size: 14px; }
.live-dot { width: 7px; height: 7px; background: #ff4444; border-radius: 50%; animation: blink 1s infinite; display: inline-block; }

/* ===================================================
   FADE SCROLL ANIMATION
   =================================================== */
.fade { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade.on { opacity: 1; transform: translateY(0); }

/* ===================================================
   PROBLEM SECTION
   =================================================== */
#problem { background: rgba(255,40,40,0.018); }
.prob-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-top: 36px;
}
.prob-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 12px;
  padding: 16px 14px; display: flex; align-items: center;
  gap: 10px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.8); transition: all 0.3s;
}
.prob-card:hover { border-color: rgba(255,80,80,0.3); background: rgba(255,40,40,0.05); transform: translateY(-2px); }
.prob-x {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(255,50,50,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}

/* ===================================================
   SOLUTION SECTION
   =================================================== */
#solution {
  background: linear-gradient(135deg, rgba(0,230,118,0.025) 0%, rgba(255,215,0,0.025) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.sol-grid { display: grid; gap: 36px; }
.roadmap { display: flex; flex-direction: column; gap: 0; }
.r-step { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; position: relative; }
.r-step:not(:last-child)::after {
  content: ''; position: absolute; left: 17px; top: 52px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, rgba(255,215,0,0.4), transparent);
}
.r-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; color: #0B0B0B;
  box-shadow: 0 0 16px rgba(255,215,0,0.35);
}
.r-content h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.r-content p { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ===================================================
   MODULES SECTION
   =================================================== */
#modules { background: #0B0B0B; }
.mod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-top: 40px;
}
.mod-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 16px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.mod-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0; transition: opacity 0.3s;
}
.mod-card:hover { border-color: rgba(255,215,0,0.22); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.mod-card:hover::before { opacity: 1; }
.mod-emoji { font-size: 28px; margin-bottom: 10px; }
.mod-num { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--primary); margin-bottom: 6px; }
.mod-title { font-family: 'Outfit'; font-size: 15px; font-weight: 800; margin-bottom: 12px; }
.mod-topics { display: flex; flex-direction: column; gap: 5px; }
.mod-topic { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; }
.t-dot { width: 5px; height: 5px; background: var(--secondary); border-radius: 50%; flex-shrink: 0; }

/* ===================================================
   WHY SECTION
   =================================================== */
#why { background: linear-gradient(180deg, #0B0B0B 0%, #0e0c03 50%, #0B0B0B 100%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; margin-top: 40px;
}
.why-card {
  background: rgba(255,215,0,0.04); border: 1px solid rgba(255,215,0,0.1);
  border-radius: 10px; padding: 16px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; transition: all 0.3s;
}
.why-card:hover { background: rgba(255,215,0,0.08); border-color: rgba(255,215,0,0.28); transform: translateX(3px); }
.why-chk {
  width: 26px; height: 26px; flex-shrink: 0;
  background: rgba(0,230,118,0.12); border: 1px solid rgba(0,230,118,0.28);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--secondary); font-size: 12px;
}

/* ===================================================
   BONUSES SECTION
   =================================================== */
#bonuses { background: #0B0B0B; }
.bon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-top: 40px;
}
.bon-card {
  background: linear-gradient(135deg, rgba(255,215,0,0.06), rgba(255,140,0,0.025));
  border: 1px solid rgba(255,215,0,0.18); border-radius: 14px;
  padding: 24px 16px; text-align: center;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.bon-card::after {
  content: 'FREE'; position: absolute; top: 10px; right: -18px;
  background: var(--secondary); color: #0B0B0B;
  font-size: 9px; font-weight: 900; letter-spacing: 1px;
  padding: 3px 26px; transform: rotate(45deg);
}
.bon-card:hover { border-color: rgba(255,215,0,0.38); transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.4); }
.bon-emoji { font-size: 36px; margin-bottom: 10px; }
.bon-num { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--primary); margin-bottom: 5px; }
.bon-title { font-family: 'Outfit'; font-size: 14px; font-weight: 800; }

/* ===================================================
   TESTIMONIALS SECTION
   =================================================== */
#testi { background: linear-gradient(135deg, rgba(255,215,0,0.02) 0%, transparent 60%); }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px; margin-top: 40px;
}
.testi-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 20px;
  transition: all 0.3s; position: relative;
}
.testi-card::before {
  content: '"'; position: absolute; top: 14px; right: 18px;
  font-size: 52px; color: rgba(255,215,0,0.08);
  font-family: 'Outfit'; line-height: 1;
}
.testi-card:hover { border-color: rgba(255,215,0,0.18); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.t-stars { color: var(--primary); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.t-text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.78); margin-bottom: 18px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-ava {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #0B0B0B;
}
.t-name { font-size: 13px; font-weight: 700; }
.t-loc { font-size: 11px; color: rgba(255,255,255,0.45); }

/* ===================================================
   TRUST SECTION
   =================================================== */
#trust {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 48px 16px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 36px;
}
.trust-item {
  text-align: center; padding: 20px 12px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; transition: all 0.3s;
}
.trust-item:hover { border-color: rgba(255,215,0,0.22); background: rgba(255,215,0,0.04); transform: translateY(-3px); }
.trust-icon { font-size: 28px; margin-bottom: 8px; }
.trust-lbl { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65); }

/* ===================================================
   PRICE SECTION
   =================================================== */
#price { background: radial-gradient(ellipse at center, rgba(255,215,0,0.07) 0%, transparent 65%), #0B0B0B; }
.price-card {
  max-width: 500px; margin: 40px auto 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,215,0,0.22);
  border-radius: 22px; padding: 36px 28px; text-align: center;
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 100%; animation: shine 3s linear infinite;
}
.price-badge {
  display: inline-block;
  background: rgba(255,50,50,0.12); border: 1px solid rgba(255,100,100,0.25);
  color: #ff6b6b; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
  animation: badge-pulse 2s infinite;
}
.price-course-name { font-family: 'Outfit'; font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.price-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 12px;
}
.pc-old { font-size: 20px; font-weight: 700; color: rgba(255,255,255,0.3); text-decoration: line-through; }
.pc-new { font-family: 'Outfit'; font-size: 60px; font-weight: 900; color: var(--primary); text-shadow: var(--gold-glow); line-height: 1; }
.pc-save {
  display: inline-block;
  background: rgba(0,230,118,0.12); border: 1px solid rgba(0,230,118,0.28);
  color: var(--secondary); font-size: 13px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
#timer2 { display: flex; justify-content: center; gap: 10px; margin-bottom: 24px; }
.t2-block { text-align: center; }
.t2-val {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,215,0,0.18);
  border-radius: 8px; padding: 10px 14px;
  font-family: 'Outfit'; font-size: clamp(24px, 6vw, 36px);
  font-weight: 900; color: var(--primary);
  min-width: 56px; display: block; text-align: center;
}
.t2-lbl { font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 600; letter-spacing: 1px; margin-top: 4px; display: block; }
.t2-sep { font-size: 28px; font-weight: 900; color: var(--primary); padding-top: 10px; }
.price-meta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: 11px; color: rgba(255,255,255,0.4); }

/* ===================================================
   FAQ SECTION
   =================================================== */
#faq { background: #0B0B0B; }
.faq-list { max-width: 680px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(255,215,0,0.22); }
.faq-q {
  padding: 18px 20px; display: flex; align-items: center;
  justify-content: space-between; cursor: pointer;
  font-size: 14px; font-weight: 600; gap: 10px; user-select: none;
}
.faq-ic {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid rgba(255,215,0,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 15px; font-weight: 700;
  transition: transform 0.3s;
}
.faq-item.open .faq-ic { transform: rotate(45deg); background: rgba(255,215,0,0.1); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-in { padding: 0 20px 18px; font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ===================================================
   FINAL CTA SECTION
   =================================================== */
#final {
  background: linear-gradient(135deg, rgba(255,215,0,0.06) 0%, rgba(0,230,118,0.04) 100%);
  border-top: 1px solid rgba(255,215,0,0.12);
  text-align: center;
}
.final-title {
  font-family: 'Outfit'; font-size: clamp(26px, 6vw, 48px);
  font-weight: 900; line-height: 1.15; margin-bottom: 14px;
}
.final-sub { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.final-meta { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.35); }

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: rgba(255,255,255,0.02); border-top: 1px solid var(--border);
  padding: 36px 16px; text-align: center;
}
.foot-inner { max-width: 1100px; margin: 0 auto; }
.foot-icon { font-size: 32px; margin-bottom: 12px; }
.foot-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.foot-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.foot-links a:hover { color: var(--primary); }
.foot-wa { display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; font-size: 13px; color: var(--secondary); font-weight: 600; }
.foot-copy { font-size: 12px; color: rgba(255,255,255,0.28); margin-top: 12px; }

/* ===================================================
   FLOATING WHATSAPP BUTTON
   =================================================== */
#wa-float { position: fixed; bottom: 24px; left: 20px; z-index: 9970; }
.wa-circle {
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: wa-bob 3s ease-in-out infinite; position: relative;
}
.wa-circle::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35); animation: wa-ring 2s ease-out infinite;
}
.wa-tip {
  position: absolute; left: 62px; bottom: 6px;
  background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.28);
  border-radius: 7px; padding: 5px 10px;
  font-size: 11px; font-weight: 600; color: var(--secondary);
  white-space: nowrap; pointer-events: none;
}

/* ===================================================
   STICKY CTA BUTTON
   =================================================== */
#sticky-btn { position: fixed; bottom: 24px; right: 20px; z-index: 9970; }
.sticky-gold {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  color: #0B0B0B; padding: 13px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 900; font-family: 'Outfit';
  box-shadow: 0 0 28px rgba(255,215,0,0.5), 0 6px 20px rgba(0,0,0,0.4);
  animation: gold-pulse 2.2s infinite; cursor: pointer; letter-spacing: 0.4px;
  white-space: nowrap;
}

/* ===================================================
   EXIT POPUP
   =================================================== */
#exit-layer {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  z-index: 99999; display: none; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(8px);
}
#exit-layer.open { display: flex; }
.exit-box {
  background: #111; border: 1px solid rgba(255,215,0,0.28);
  border-radius: 20px; padding: 40px 28px; max-width: 440px; width: 100%;
  text-align: center; position: relative;
  box-shadow: 0 0 70px rgba(255,215,0,0.12), 0 32px 64px rgba(0,0,0,0.6);
  animation: pop-in 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.exit-x {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.45); transition: all 0.2s;
}
.exit-x:hover { background: rgba(255,80,80,0.15); color: #ff6b6b; }
.exit-wait { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: #ff6b6b; margin-bottom: 10px; }
.exit-h { font-family: 'Outfit'; font-size: clamp(20px, 5vw, 28px); font-weight: 900; margin-bottom: 7px; line-height: 1.2; }
.exit-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.exit-p-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; }
.ex-old { font-size: 18px; color: rgba(255,255,255,0.35); text-decoration: line-through; font-weight: 600; }
.ex-new { font-family: 'Outfit'; font-size: 44px; font-weight: 900; color: var(--primary); text-shadow: var(--gold-glow); }
.exit-skip { margin-top: 10px; font-size: 11px; color: rgba(255,255,255,0.3); cursor: pointer; }

/* ===================================================
   KEYFRAME ANIMATIONS
   =================================================== */
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.2); }
  50%       { box-shadow: 0 0 0 7px rgba(0,230,118,0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}
@keyframes gold-pulse {
  0%, 100% { box-shadow: 0 0 35px rgba(255,215,0,0.5), 0 8px 24px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 60px rgba(255,215,0,0.75), 0 8px 28px rgba(0,0,0,0.4); }
}
@keyframes shine {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes wa-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.8) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===================================================
   RESPONSIVE — TABLET (600px+)
   =================================================== */
@media (min-width: 600px) {
  .prob-grid     { grid-template-columns: repeat(3, 1fr); }
  .mod-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(3, 1fr); }
  .bon-grid      { grid-template-columns: repeat(3, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .trust-grid    { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================================
   RESPONSIVE — DESKTOP (900px+)
   =================================================== */
@media (min-width: 900px) {
  .prob-grid     { grid-template-columns: repeat(4, 1fr); }
  .mod-grid      { grid-template-columns: repeat(4, 1fr); }
  .why-grid      { grid-template-columns: repeat(5, 1fr); }
  .bon-grid      { grid-template-columns: repeat(5, 1fr); }
  .testi-grid    { grid-template-columns: repeat(3, 1fr); }
  .trust-grid    { grid-template-columns: repeat(6, 1fr); }
  .sol-grid      { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ===================================================
   RESPONSIVE — MOBILE ONLY (<640px)
   =================================================== */
@media (max-width: 640px) {
  section        { padding: 52px 14px; }
  nav.desk       { display: none; }
  .burger        { display: flex; }
  .hdr-cta       { display: none; }
  #price .price-card { padding: 28px 18px; }
  #timer2        { gap: 6px; }
  .t2-val        { font-size: 22px; min-width: 44px; padding: 8px 10px; }
  .wa-tip        { display: none; }

  /* Announcement bar — single line on mobile */
  .ann-fire      { font-size: 10px; }
  .ann-sep       { display: none; }
  .ann-price     { display: none; }
  .ann-wrap      { gap: 4px; }
  .ann-lbl       { font-size: 9px; }
  .ann-box       { font-size: 10px; min-width: 20px; padding: 1px 3px; }

  /* Sticky CTA — full width centered at bottom, equal gap both sides */
  #sticky-btn {
    bottom: 14px;
    left: 14px;
    right: 14px;
    width: auto;
    display: flex;
    justify-content: center;
  }
  .sticky-gold {
    font-size: 14px;
    padding: 14px 24px;
    border-radius: 14px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 0 32px rgba(255,215,0,0.6), 0 8px 24px rgba(0,0,0,0.5);
  }

  /* WhatsApp float — move above sticky bar on mobile */
  #wa-float      { bottom: 82px; left: 14px; }

  /* Extra bottom padding so content isn't hidden behind sticky bar */
  #content       { padding-bottom: 90px; }
}

/* ===================================================
   RESPONSIVE — DESKTOP NAV SHOW
   =================================================== */
@media (min-width: 641px) {
  .burger        { display: none; }
  nav.desk       { display: flex; }
  .hdr-cta       { display: block; }
}
