/* ==========================================================
   TV ELITE — Global Stylesheet
   Design System: Outfit + DM Sans · Dark Premium
   Last updated: April 2026
========================================================== */

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

:root {
  /* Backgrounds */
  --bg: #070710;
  --bg2: #0c0c1a;
  --card: rgba(255,255,255,.025);

  /* Borders */
  --bdr: rgba(255,255,255,.07);
  --bdr2: rgba(255,255,255,.12);

  /* Text */
  --txt: #f2f2f8;
  --txt2: rgba(255,255,255,.6);
  --txt3: rgba(255,255,255,.4);

  /* Brand */
  --p1: #8B5CF6;
  --p2: #D946EF;
  --p3: #EC4899;

  /* Gradients */
  --g1: linear-gradient(135deg, #8B5CF6, #D946EF);
  --g2: linear-gradient(135deg, #8B5CF6 0%, #D946EF 50%, #EC4899 100%);

  /* Accents */
  --green: #34D399;
  --orange: #FB923C;

  /* Radius */
  --r: 14px;
  --r2: 20px;
  --r3: 28px;

  /* Fonts */
  --f1: 'Outfit', sans-serif;
  --f2: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f2);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }


/* =========================
   LAYOUT
========================= */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.sec {
  padding: 90px 0;
  position: relative;
}

.sec-hdr {
  text-align: center;
  margin-bottom: 44px;
}

.sec-hdr h2 {
  font-family: var(--f1);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 10px;
}

.sec-hdr h2 em {
  font-style: normal;
  background: var(--g2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-hdr p {
  color: var(--txt2);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(139,92,246,.08);
  border: 1px solid rgba(139,92,246,.18);
  color: var(--p1);
  margin-bottom: 14px;
}


/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f1);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 100px;
  padding: 14px 30px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-p {
  background: var(--g1);
  color: #fff;
  box-shadow: 0 8px 28px rgba(139,92,246,.3);
}
.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139,92,246,.45);
}

.btn-g {
  background: rgba(255,255,255,.04);
  color: #fff;
  border: 1px solid var(--bdr2);
}
.btn-g:hover {
  border-color: rgba(139,92,246,.35);
}

.btn-w {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
}
.btn-w:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 13px;
}


/* =========================
   NAVBAR
========================= */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(7,7,16,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bdr);
  padding: 0 20px;
}

nav.top .inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--f1);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
}
.logo em {
  font-style: normal;
  color: var(--p2);
}

.nav-l {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-l a {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt2);
  transition: color 0.2s;
}
.nav-l a:hover { color: #fff; }

.mob-tog {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-l { display: none; }
  .mob-tog { display: block; }
}


/* =========================
   HERO
========================= */
.hero {
  padding: 130px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(139,92,246,.1) 0%,
    rgba(217,70,239,.04) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--bdr);
  border-radius: 100px;
  font-size: 13px;
  color: var(--txt2);
  margin-bottom: 16px;
}
.hero-proof .stars { color: var(--p3); }

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--p1);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--f1);
  font-size: clamp(32px, 5.5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: normal;
  background: var(--g2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px;
  color: var(--txt2);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.hf {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--txt3);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--bdr);
}


/* =========================
   MOVIE SLIDER
========================= */
.showcase {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.slider-track {
  display: flex;
  animation: scroll 40s linear infinite;
  width: max-content;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.slider-track img {
  width: 140px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 8px;
  flex-shrink: 0;
}


/* =========================
   WHY US
========================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.why-left h2 {
  font-family: var(--f1);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.why-left h2 em {
  font-style: normal;
  background: var(--g2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-left p {
  font-size: 15px;
  color: var(--txt2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.wc {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 20px;
  transition: all 0.3s;
}
.wc:hover {
  border-color: rgba(139,92,246,.25);
  transform: translateY(-3px);
}
.wc h3 { font-family: var(--f1); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.wc p { font-size: 12px; color: var(--txt2); line-height: 1.5; }

@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr 1fr; }
}


/* =========================
   PRICING CARDS
========================= */
.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pc {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.pc:hover {
  border-color: rgba(139,92,246,.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(139,92,246,.1);
}

.pc.feat {
  border: 2px solid rgba(139,92,246,.5);
  background: linear-gradient(160deg, rgba(139,92,246,.06), transparent);
  box-shadow: 0 0 60px rgba(139,92,246,.08);
}

.pc-best {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 100px;
  font-family: var(--f1);
  font-size: 10px;
  font-weight: 800;
  background: var(--g1);
  color: #fff;
  white-space: nowrap;
}

.pc-badge { font-size: 10px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; }
.pc h3 { font-family: var(--f1); font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pc-amt { font-family: var(--f1); font-size: 40px; font-weight: 900; background: var(--g2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.pc-per { font-size: 14px; color: var(--txt3); }
.pc-desc { font-size: 13px; color: var(--txt2); margin-bottom: 4px; }
.pc-sub { font-size: 12px; color: var(--txt2); margin-bottom: 12px; }
.pc-sub strong { color: var(--txt); }
.pc .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.pc-div { height: 1px; background: var(--bdr); margin: 12px 0; }
.pc-list { list-style: none; flex: 1; }
.pc-list li { font-size: 12px; color: var(--txt2); padding: 4px 0; display: flex; gap: 8px; }
.pc-list li span { color: var(--green); font-weight: 600; flex-shrink: 0; }

@media (max-width: 800px) {
  .p-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

.pricing-actions { display: flex; justify-content: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.pricing-facts { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.pricing-facts span { font-size: 12px; color: var(--txt3); display: flex; align-items: center; gap: 4px; }
.pricing-facts .ck { color: var(--green); font-weight: 700; }


/* =========================
   LIFETIME CARD
========================= */
.lt-card {
  background: linear-gradient(160deg, rgba(139,92,246,.06), transparent);
  border: 2px solid rgba(139,92,246,.4);
  border-radius: var(--r3);
  padding: 40px;
  box-shadow: 0 0 80px rgba(139,92,246,.08);
  margin-top: 32px;
}

.lt-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.lt-pill { font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 100px; background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.2); color: var(--p1); }
.lt-bestseller { font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 100px; background: var(--g1); color: #fff; }
.lt-countdown { font-size: 13px; color: var(--txt2); }
.lt-countdown strong { color: var(--p3); font-family: var(--f1); }

.lt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.lt-left h3 { font-family: var(--f1); font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.lt-left .lt-sub { font-size: 14px; color: var(--txt2); margin-bottom: 16px; }
.lt-price-block { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.lt-curr { font-family: var(--f1); font-size: 28px; font-weight: 900; background: var(--g2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.lt-amount { font-family: var(--f1); font-size: 64px; font-weight: 900; background: var(--g2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.lt-meta { font-size: 13px; color: var(--txt3); margin-bottom: 14px; }
.lt-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.lt-benefits span { font-size: 12px; color: var(--txt2); padding: 5px 12px; background: rgba(255,255,255,.03); border: 1px solid var(--bdr); border-radius: 100px; }
.lt-trust-sm { font-size: 12px; color: var(--txt3); display: flex; gap: 12px; }

.lt-right { display: flex; flex-direction: column; gap: 14px; }
.lt-save { background: rgba(52,211,153,.06); border: 1px solid rgba(52,211,153,.12); border-radius: var(--r); padding: 18px; text-align: center; }
.lt-save p { font-size: 12px; color: var(--txt3); }
.lt-save h4 { font-family: var(--f1); font-size: 28px; font-weight: 900; background: var(--g2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 4px 0; }
.lt-save span { font-size: 11px; color: var(--txt3); }
.lt-feat-list { list-style: none; }
.lt-feat-list li { font-size: 13px; color: var(--txt2); padding: 5px 0; display: flex; gap: 8px; }
.lt-feat-list li span { color: var(--green); font-weight: 600; flex-shrink: 0; }
.lt-testimonial { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--bdr); text-align: center; font-size: 13px; color: var(--txt2); font-style: italic; }
.lt-testimonial span { display: block; font-size: 11px; color: var(--txt3); font-style: normal; margin-top: 4px; }
.lt-more { text-align: center; margin-top: 20px; }
.lt-more a { font-size: 14px; color: var(--p1); font-weight: 600; transition: color 0.2s; }
.lt-more a:hover { color: var(--p2); }

@media (max-width: 700px) {
  .lt-grid { grid-template-columns: 1fr; }
  .lt-card { padding: 28px; }
}


/* =========================
   HOW IT WORKS
========================= */
.how-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
.how-intro .tag { margin-bottom: 10px; }
.how-intro h2 { font-family: var(--f1); font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 10px; }
.how-intro h2 em { font-style: normal; background: var(--g2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.how-intro p { font-size: 14px; color: var(--txt2); line-height: 1.65; margin-bottom: 16px; }

.how-steps { display: flex; flex-direction: column; gap: 14px; }
.hs { display: flex; gap: 14px; background: var(--card); border: 1px solid var(--bdr); border-radius: var(--r); padding: 18px; transition: all 0.3s; }
.hs:hover { border-color: rgba(139,92,246,.25); }
.hs-dot { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; background: var(--g1); display: flex; align-items: center; justify-content: center; font-family: var(--f1); font-size: 14px; font-weight: 900; color: #fff; }
.hs h4 { font-family: var(--f1); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.hs p { font-size: 12px; color: var(--txt2); line-height: 1.5; }

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


/* =========================
   FEATURES
========================= */
.feat-box {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.feat-box:hover {
  border-color: rgba(139,92,246,.2);
  transform: translateY(-2px);
}


/* =========================
   GUARANTEE
========================= */
.guar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.guar-box { background: var(--card); border: 1px solid var(--bdr); border-radius: var(--r); padding: 24px; text-align: center; transition: all 0.3s; }
.guar-box:hover { border-color: rgba(139,92,246,.2); transform: translateY(-3px); }
.guar-box .ic { font-size: 28px; margin-bottom: 10px; }
.guar-box h4 { font-family: var(--f1); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.guar-box p { font-size: 12px; color: var(--txt2); line-height: 1.5; }
.guar-ctas { display: flex; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

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


/* =========================
   TESTIMONIALS
========================= */
.test-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.test-score { background: var(--card); border: 1px solid var(--bdr); border-radius: var(--r2); padding: 28px; text-align: center; }
.test-score h3 { font-family: var(--f1); font-size: 48px; font-weight: 900; background: var(--g2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.test-score .stars { color: var(--p3); font-size: 18px; margin: 6px 0; }
.test-score .count { font-size: 13px; color: var(--txt3); margin-bottom: 16px; }

.comment { padding: 14px; background: rgba(255,255,255,.02); border: 1px solid var(--bdr); border-radius: 10px; margin-bottom: 8px; }
.comment-top { display: flex; justify-content: space-between; margin-bottom: 4px; font-size: 13px; }
.comment-top span { color: var(--p3); font-size: 12px; }
.comment p { font-size: 12px; color: var(--txt2); line-height: 1.5; }

.test-metrics { background: var(--card); border: 1px solid var(--bdr); border-radius: var(--r2); padding: 28px; }
.metric-box { margin-bottom: 12px; }
.metric-box > span { font-size: 13px; color: var(--txt2); }
.metric-box .bar { height: 6px; background: rgba(255,255,255,.04); border-radius: 3px; margin: 4px 0 2px; overflow: hidden; }
.metric-box .bar div { height: 100%; border-radius: 3px; background: var(--g1); transition: width 1.2s ease; }
.metric-box small { font-size: 11px; color: var(--txt3); }

.test-more { text-align: center; margin-top: 20px; }
.test-more a { font-size: 14px; color: var(--p1); font-weight: 600; }

@media (max-width: 700px) {
  .test-layout { grid-template-columns: 1fr; }
}


/* =========================
   FAQ
========================= */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-i { border: 1px solid var(--bdr); border-radius: var(--r); overflow: hidden; transition: border-color 0.3s; }
.faq-i:hover { border-color: var(--bdr2); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--f1);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 12px;
}

.faq-ic { font-size: 18px; color: var(--p3); transition: transform 0.3s; flex-shrink: 0; }
.faq-i.on .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-in { padding: 0 20px 16px; font-size: 14px; color: var(--txt2); line-height: 1.7; }
.faq-a-in a { color: var(--p1); }

.faq-more { text-align: center; margin-top: 20px; }
.faq-more a { font-size: 14px; color: var(--p1); font-weight: 600; }


/* =========================
   FINAL CTA
========================= */
.fcta {
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.fcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px at 50% 50%, rgba(139,92,246,.06), transparent);
  pointer-events: none;
}

.fcta-badge { display: inline-block; padding: 6px 16px; border-radius: 100px; font-family: var(--f1); font-size: 12px; font-weight: 800; background: var(--g1); color: #fff; margin-bottom: 16px; }
.fcta h2 { font-family: var(--f1); font-size: clamp(24px, 4vw, 36px); font-weight: 900; margin-bottom: 12px; }
.fcta h2 em { font-style: normal; background: var(--g2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.fcta p { color: var(--txt2); margin-bottom: 24px; font-size: 15px; }
.fcta-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.fcta-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--txt3); }


/* =========================
   FOOTER
========================= */
footer {
  border-top: 1px solid var(--bdr);
  padding: 44px 0 20px;
}

.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.ft-brand p { font-size: 13px; color: var(--txt3); margin-top: 8px; line-height: 1.5; }
.ft-contact { display: flex; gap: 8px; margin-top: 10px; }
.ft-contact a { font-size: 12px; color: var(--txt3); padding: 6px 12px; border: 1px solid var(--bdr); border-radius: 100px; transition: all 0.2s; }
.ft-contact a:hover { border-color: var(--bdr2); color: var(--txt2); }

footer h4 { font-family: var(--f1); font-size: 12px; font-weight: 700; margin-bottom: 12px; color: #fff; text-transform: uppercase; letter-spacing: .5px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 6px; }
footer ul a { font-size: 13px; color: var(--txt3); transition: color 0.2s; }
footer ul a:hover { color: var(--txt2); }

.ft-bottom { text-align: center; padding-top: 16px; border-top: 1px solid var(--bdr); font-size: 11px; color: var(--txt3); }

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


/* =========================
   FLOATING DOTS
   Small purple dots that breathe
========================= */
.float-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--p1), transparent);
  opacity: .4;
  animation: floatDot 8s infinite ease-in-out;
}

.float-dots span:nth-child(1) { top: 10%; left: 15%;  animation-delay: 0s; }
.float-dots span:nth-child(2) { top: 25%; left: 82%;  animation-delay: 2s; }
.float-dots span:nth-child(3) { top: 60%; left: 8%;   animation-delay: 4s; }
.float-dots span:nth-child(4) { top: 75%; left: 72%;  animation-delay: 1s; }
.float-dots span:nth-child(5) { top: 40%; left: 50%;  animation-delay: 3s; }
.float-dots span:nth-child(6) { top: 88%; left: 30%;  animation-delay: 5s; }

@keyframes floatDot {
  0%, 100% { transform: translateY(0) scale(1);     opacity: .3; }
  50%      { transform: translateY(-22px) scale(1.5); opacity: .9; }
}


/* =========================
   GLOW ORBS
   Large blurred floating blobs
========================= */
.glow-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-orbs span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  animation: floatOrb 12s infinite ease-in-out;
}

.glow-orbs span:nth-child(1) {
  width: 200px; height: 200px;
  top: 8%; left: 12%;
  background: radial-gradient(circle, rgba(139,92,246,.3), transparent 70%);
  animation-delay: 0s;
}
.glow-orbs span:nth-child(2) {
  width: 160px; height: 160px;
  top: 55%; left: 72%;
  background: radial-gradient(circle, rgba(236,72,153,.2), transparent 70%);
  animation-delay: 3s;
}
.glow-orbs span:nth-child(3) {
  width: 180px; height: 180px;
  top: 30%; left: 78%;
  background: radial-gradient(circle, rgba(139,92,246,.25), transparent 70%);
  animation-delay: 6s;
}
.glow-orbs span:nth-child(4) {
  width: 140px; height: 140px;
  top: 70%; left: 18%;
  background: radial-gradient(circle, rgba(217,70,239,.2), transparent 70%);
  animation-delay: 9s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1);     opacity: .4; }
  50%      { transform: translateY(-30px) scale(1.1); opacity: .7; }
}


/* =========================
   WHATSAPP FLOAT
========================= */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  z-index: 99;
  transition: 0.3s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
}
.wa-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: waPulse 2s infinite;
  z-index: -1;
}

@keyframes waPulse {
  0%  { transform: scale(1);   opacity: .5; }
  70% { transform: scale(1.5); opacity: 0;  }
  100%{ opacity: 0; }
}


/* =========================
   LIVE POPUP
========================= */
.live-pop {
  position: fixed;
  bottom: 80px;
  left: 16px;
  background: rgba(12,12,26,.95);
  border: 1px solid rgba(139,92,246,.35);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  color: #fff;
  z-index: 98;
  max-width: 280px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s;
  pointer-events: none;
  backdrop-filter: blur(10px);
}
.live-pop.on {
  opacity: 1;
  transform: translateY(0);
}
