﻿/* ==========================================================
   FireViewTV 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;
}

.hero-video-card {
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  margin: 0 auto 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245,197,66,.16), rgba(230,57,70,.08)),
    rgba(255,255,255,.04);
  box-shadow:
    0 24px 80px rgba(0,0,0,.36),
    0 0 52px rgba(245,197,66,.18);
  position: relative;
}

.hero-video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  z-index: 1;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050510;
}

.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) {
  .hero-video-card {
    width: min(100%, 340px);
    border-radius: 16px;
    margin-bottom: 24px;
  }
}


/* =========================
   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
========================= */
.client-stories {
  scroll-margin-top: 86px;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(245,197,66,.035), rgba(255,255,255,.012) 55%, transparent),
    var(--bg);
}

.client-stories .sec-hdr {
  margin-bottom: 26px;
}

.client-stories .sec-hdr p {
  max-width: 700px;
  font-size: 14px;
  line-height: 1.55;
}

.story-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 54px 30px;
}

.story-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 14px;
  justify-content: start;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  padding: 4px 0 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.story-scroll::-webkit-scrollbar {
  display: none;
}

.story-card {
  scroll-snap-align: start;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  background: #111827;
  box-shadow: 0 18px 54px rgba(0,0,0,.22);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.story-card:hover {
  border-color: rgba(245,197,66,.28);
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(245,197,66,.12);
}

.story-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #050510;
}

.story-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 14px;
}

.story-copy strong {
  font-family: var(--f1);
  font-size: 15px;
  font-weight: 800;
}

.story-copy span {
  color: var(--txt3);
  font-size: 12px;
  white-space: nowrap;
}

.story-nav {
  position: absolute;
  top: 43%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bdr2);
  border-radius: 50%;
  background: rgba(17,24,39,.92);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  z-index: 3;
  transition: transform .2s ease, opacity .2s ease, border-color .2s ease;
}

.story-nav:hover {
  border-color: rgba(230,57,70,.45);
  transform: translateY(-2px);
}

.story-nav:disabled {
  cursor: default;
  opacity: .35;
  transform: none;
}

.story-nav span {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-top: -3px;
}

.story-nav-prev { left: 0; }
.story-nav-next { right: 0; }

.story-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.story-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  transition: width .2s ease, background .2s ease;
}

.story-dot.is-active {
  width: 24px;
  background: var(--g1);
}

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

  .client-stories {
    scroll-margin-top: 118px;
    padding: 56px 0 58px;
  }

  .client-stories .sec-hdr {
    margin-bottom: 22px;
  }

  .client-stories .sec-hdr h2 {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(24px, 7vw, 30px);
  }

  .client-stories .sec-hdr p {
    max-width: 360px;
    font-size: 13px;
    line-height: 1.55;
  }

  .story-slider {
    max-width: none;
    margin: 0 -20px;
    padding: 0 44px 26px;
  }

  .story-scroll {
    grid-auto-columns: clamp(184px, 58vw, 220px);
    gap: 12px;
    padding-bottom: 8px;
  }

  .story-video {
    aspect-ratio: 3 / 4;
    object-position: center top;
  }

  .story-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px 12px;
  }

  .story-copy strong {
    font-size: 14px;
  }

  .story-copy span {
    font-size: 11px;
  }

  .story-nav {
    top: 44%;
    width: 36px;
    height: 36px;
  }

  .story-nav-prev { left: 4px; }
  .story-nav-next { right: 4px; }

  .story-nav span {
    font-size: 26px;
  }
}

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