/* ==========================================================
   FelizTV 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: #07111F;
  --bg2: #0A1524;
  --card: #111827;

  /* Borders */
  --bdr: #374151;
  --bdr2: #4B5563;

  /* Text */
  --txt: #FFFFFF;
  --txt2: rgba(255,255,255,.72);
  --txt3: rgba(255,255,255,.52);

  /* Brand */
  --p1: #F5C542;
  --p2: #E63946;
  --p3: #1D4ED8;

  /* Gradients */
  --g1: linear-gradient(135deg, #E63946 0%, #B91C1C 100%);
  --g2: linear-gradient(135deg, #F5C542 0%, #E63946 55%, #1D4ED8 100%);

  /* Accents */
  --green: #16A34A;
  --orange: #F5C542;

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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(245,197,66,.08);
  border: 1px solid rgba(245,197,66,.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(230,57,70,.28);
}
.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(230,57,70,.4);
}

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

.btn-w {
  background: #16A34A;
  color: #fff;
  box-shadow: 0 4px 16px rgba(22,163,74,.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,17,31,.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;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  padding: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.mob-tog:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(230,57,70,.45);
}
.mob-tog span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity .2s, transform .2s;
}
.mob-tog.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mob-tog.is-open span:nth-child(2) {
  opacity: 0;
}
.mob-tog.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-l { display: none; }
  .mob-tog { display: grid; }
  .nav-l.is-open {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(7,17,31,.97);
    border-bottom: 1px solid var(--bdr);
    box-shadow: 0 18px 44px rgba(0,0,0,.3);
  }
}


/* =========================
   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(245,197,66,.1) 0%,
    rgba(230,57,70,.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 24px;
  line-height: 1.7;
}

.channel-showcase {
  width: min(100%, 1120px);
  margin: 6px auto 28px;
  padding: 30px 0 18px;
  border: 1px solid rgba(55,65,81,.78);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(245,197,66,.12), transparent 34%),
    linear-gradient(180deg, rgba(17,24,39,.74), rgba(7,17,31,.96));
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
  position: relative;
}

.channel-showcase::before,
.channel-showcase::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.channel-showcase::before {
  left: 0;
  background: linear-gradient(90deg, #07111F, rgba(7,17,31,0));
}

.channel-showcase::after {
  right: 0;
  background: linear-gradient(270deg, #07111F, rgba(7,17,31,0));
}

.channel-showcase-head {
  max-width: 820px;
  margin: 0 auto 26px;
  padding: 0 26px;
  position: relative;
  z-index: 3;
}

.channel-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--p2);
  color: #fff;
  font-family: var(--f1);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(230,57,70,.28);
}

.channel-showcase h2 {
  margin: 0 0 10px;
  font-family: var(--f1);
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 900;
  line-height: 1.02;
  color: var(--txt);
}

.channel-showcase h2::first-letter {
  color: var(--txt);
}

.channel-showcase h2 span,
.channel-showcase h2 em {
  color: var(--p2);
  font-style: normal;
}

.channel-showcase p {
  margin: 0 auto;
  color: var(--txt2);
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.45;
}

.channel-rail {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.channel-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding: 4px 18px 10px;
  animation: channel-scroll 34s linear infinite;
}

.channel-showcase:hover .channel-track {
  animation-play-state: paused;
}

.channel-card {
  width: 170px;
  min-height: 96px;
  flex: 0 0 auto;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 16px 28px rgba(0,0,0,.22);
}

.channel-card span {
  justify-self: end;
  margin: -8px -4px 0 0;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(7,17,31,.58);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.channel-card span::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 999px;
  background: var(--p2);
  vertical-align: 1px;
}

.channel-card strong {
  display: block;
  font-family: var(--f1);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.channel-card em {
  display: block;
  color: rgba(255,255,255,.86);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.channel-blue { background: linear-gradient(135deg, #143a63, #1D4ED8); }
.channel-gold { background: linear-gradient(135deg, #5f3a12, #9a661c); }
.channel-green { background: linear-gradient(135deg, #116236, #16A34A); }
.channel-red { background: linear-gradient(135deg, #6f1a1f, #E63946); }
.channel-purple { background: linear-gradient(135deg, #42165f, #7c2fb3); }

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

.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;
}

@media (max-width: 620px) {
  .channel-showcase {
    margin-top: 2px;
    padding: 24px 0 14px;
    border-radius: 18px;
  }

  .channel-showcase::before,
  .channel-showcase::after {
    width: 38px;
  }

  .channel-showcase-head {
    margin-bottom: 18px;
    padding: 0 18px;
  }

  .channel-count {
    min-height: 34px;
    padding: 0 16px;
    font-size: 12px;
  }

  .channel-showcase h2 {
    font-size: clamp(27px, 9vw, 38px);
  }

  .channel-track {
    gap: 12px;
    padding-inline: 12px;
    animation-duration: 28s;
  }

  .channel-card {
    width: 146px;
    min-height: 86px;
    padding: 13px 12px;
  }

  .channel-card strong {
    font-size: 17px;
  }
}


/* =========================
   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(245,197,66,.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(245,197,66,.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(245,197,66,.1);
}

.pc.feat {
  border: 2px solid rgba(245,197,66,.5);
  background: linear-gradient(160deg, rgba(245,197,66,.06), transparent);
  box-shadow: 0 0 60px rgba(245,197,66,.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; }
.pricing-more {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(245,197,66,.22);
  border-radius: var(--r);
  background: linear-gradient(135deg, rgba(245,197,66,.08), rgba(29,78,216,.05));
}
.pricing-more p {
  color: var(--txt2);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.pricing-more .btn {
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .pricing-more {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
}


/* =========================
   LIFETIME CARD
========================= */
.lt-card {
  background: linear-gradient(160deg, rgba(245,197,66,.06), transparent);
  border: 2px solid rgba(245,197,66,.4);
  border-radius: var(--r3);
  padding: 40px;
  box-shadow: 0 0 80px rgba(245,197,66,.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(245,197,66,.1); border: 1px solid rgba(245,197,66,.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(22,163,74,.06); border: 1px solid rgba(22,163,74,.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); }

.help-card {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  padding: 34px;
  border: 1px solid rgba(22,163,74,.18);
  border-radius: var(--r3);
  background: linear-gradient(135deg, rgba(22,163,74,.09), rgba(245,197,66,.06));
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.help-copy h3 {
  font-family: var(--f1);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.help-copy p,
.help-action p {
  color: var(--txt2);
  font-size: 14px;
  line-height: 1.65;
}

.help-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.help-pills span {
  padding: 6px 12px;
  border: 1px solid var(--bdr);
  border-radius: 100px;
  background: rgba(255,255,255,.035);
  color: var(--txt2);
  font-size: 12px;
  font-weight: 700;
}

.help-action {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r2);
  background: rgba(7,17,31,.48);
  text-align: center;
}

.help-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #16A34A;
  font-size: 24px;
}

.help-action h4 {
  font-family: var(--f1);
  font-size: 18px;
  margin-bottom: 4px;
}

.help-action .btn {
  width: 100%;
  margin-top: 16px;
}

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


/* =========================
   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(245,197,66,.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(245,197,66,.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(245,197,66,.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
========================= */
.trust-proof {
  scroll-margin-top: 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 34%, rgba(245,197,66,.13), transparent 22%),
    radial-gradient(circle at 88% 72%, rgba(29,78,216,.16), transparent 25%),
    linear-gradient(180deg, rgba(7,17,31,.72), rgba(17,24,39,.94)),
    var(--bg);
}

.trust-proof-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.trust-proof-kicker {
  margin: 14px auto 2px;
  color: #fff;
  font-family: var(--f1);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-stars {
  color: var(--p1);
  font-size: 18px;
  line-height: 1;
  margin: 8px 0 18px;
}

.trust-proof-head h2 {
  font-family: var(--f1);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 12px;
}

.trust-proof-head h2 em {
  font-style: normal;
  color: var(--p2);
}

.trust-proof-head > p:last-child {
  max-width: 640px;
  margin: 0 auto;
  color: var(--txt2);
  font-size: 15px;
  line-height: 1.65;
}

.proof-chat-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,197,66,.45) transparent;
  padding: 4px 2px 12px;
  -webkit-overflow-scrolling: touch;
}

.proof-chat-rail::-webkit-scrollbar {
  height: 8px;
}

.proof-chat-rail::-webkit-scrollbar-thumb {
  background: rgba(245,197,66,.45);
  border-radius: 999px;
}

.proof-phone {
  position: relative;
  min-width: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid var(--bdr);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(7,17,31,.9), rgba(17,24,39,.98)),
    var(--card);
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}

.proof-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 34%),
    radial-gradient(circle at 20% 10%, rgba(245,197,66,.12), transparent 32%);
}

.proof-phone-top,
.proof-phone-foot {
  position: relative;
  z-index: 1;
}

.proof-phone-top {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: rgba(7,17,31,.72);
  border-bottom: 1px solid rgba(55,65,81,.72);
}

.proof-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--g1);
  color: #fff;
  font-family: var(--f1);
  font-size: 14px;
  font-weight: 900;
}

.proof-avatar::before {
  content: attr(data-initial);
}

.proof-phone-top strong {
  display: block;
  font-family: var(--f1);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.proof-phone-top span:not(.proof-avatar):not(.proof-time) {
  display: block;
  color: var(--txt3);
  font-size: 11px;
  line-height: 1.25;
}

.proof-time {
  color: var(--txt3);
  font-size: 11px;
  font-weight: 700;
}

.proof-chat {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
  padding: 18px 12px;
}

.bubble {
  max-width: 88%;
  padding: 9px 11px;
  border-radius: 14px;
  color: #fff;
  font-size: 12px;
  line-height: 1.38;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.bubble.in {
  align-self: flex-start;
  background: rgba(55,65,81,.88);
  border-top-left-radius: 5px;
}

.bubble.out {
  align-self: flex-end;
  background: linear-gradient(135deg, #16A34A, #0F8A3E);
  border-top-right-radius: 5px;
}

.proof-phone-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px 13px;
  background: rgba(7,17,31,.72);
  border-top: 1px solid rgba(55,65,81,.72);
  color: var(--txt2);
  font-size: 11px;
  font-weight: 800;
}

.proof-phone-foot span:last-child {
  color: var(--p1);
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .proof-chat-rail {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 238px;
    margin: 0 -20px;
    padding: 4px 20px 14px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 118px;
  }

  .trust-proof {
    scroll-margin-top: 118px;
    padding: 58px 0 62px;
  }

  .trust-proof-head {
    max-width: 360px;
    margin-bottom: 24px;
  }

  .trust-proof-kicker {
    max-width: 300px;
    font-size: 11px;
    line-height: 1.35;
  }

  .trust-proof-head h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .trust-proof-head > p:last-child {
    font-size: 13px;
    line-height: 1.55;
  }

  .proof-chat-rail {
    grid-auto-columns: 78%;
    gap: 12px;
  }

  .proof-phone {
    min-height: 342px;
    border-radius: 16px;
  }

  .proof-phone-top {
    grid-template-columns: 34px 1fr auto;
    padding: 11px;
  }

  .proof-avatar {
    width: 34px;
    height: 34px;
  }

  .bubble {
    font-size: 11px;
  }
}

.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(245,197,66,.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(245,197,66,.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(29,78,216,.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(245,197,66,.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(230,57,70,.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: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 8px 26px rgba(0,0,0,.38);
  z-index: 99;
  transition: 0.3s;
}
.wa-float img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.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,.28);
  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; }
}

@media (max-width: 640px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .wa-float img {
    width: 30px;
    height: 30px;
  }
}


/* =========================
   LIVE POPUP
========================= */
.live-pop {
  position: fixed;
  bottom: 80px;
  left: 16px;
  background: rgba(17,24,39,.95);
  border: 1px solid rgba(245,197,66,.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);
}
