/*
Theme Name: MultiStream IPTV
Theme URI: https://multistreamiptv.com
Author: MultiStream IPTV
Author URI: https://multistreamiptv.com
Description: Premium IPTV service theme — advanced dark UI, Elementor compatible, animated hero, pricing tables, auto-scrolling reviews, FAQ accordion, floating WhatsApp CTA. Built for multistreamiptv.com
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: multistream-iptv
Tags: dark, one-page, elementor, custom-logo, custom-menu, responsive-layout
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Core backgrounds — deeper, richer */
  --bg:            #020509;
  --bg2:           #050c14;
  --surface:       #0a1628;
  --surface2:      #0e1e35;
  --surface3:      #122240;

  /* Borders */
  --border:        rgba(56,189,248,.12);
  --border-hover:  rgba(56,189,248,.3);

  /* Brand colours — electric cyan/sapphire palette */
  --primary:       #0ea5e9;
  --primary-dark:  #0284c7;
  --primary-glow:  rgba(14,165,233,.35);
  --accent:        #38bdf8;
  --accent2:       #7dd3fc;
  --violet:        #818cf8;
  --gold:          #f59e0b;
  --gold2:         #fbbf24;
  --success:       #10b981;
  --danger:        #f43f5e;
  --text:          #e2eeff;
  --muted:         #7ea8c9;
  --dim:           #3d6080;
  --white:         #ffffff;

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #0ea5e9, #6366f1);
  --grad-accent:   linear-gradient(135deg, #38bdf8, #0ea5e9);
  --grad-card:     linear-gradient(160deg, #0a1628 0%, #0e1e35 100%);
  --grad-gold:     linear-gradient(135deg, #f59e0b, #f97316);
  --grad-hero:     linear-gradient(135deg, #0ea5e9 0%, #6366f1 50%, #8b5cf6 100%);
  --grad-violet:   linear-gradient(135deg, #818cf8, #a78bfa);

  /* Shadows & Glows */
  --shadow-sm:     0 4px 16px rgba(0,0,0,.4);
  --shadow-md:     0 8px 32px rgba(0,0,0,.5);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.65);
  --shadow-xl:     0 32px 80px rgba(0,0,0,.7);
  --glow-primary:  0 0 40px rgba(14,165,233,.28), 0 0 80px rgba(14,165,233,.12);
  --glow-accent:   0 0 30px rgba(56,189,248,.22);
  --glow-gold:     0 0 30px rgba(245,158,11,.3);

  /* Radius */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 36px;
  --r-full: 9999px;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;

  /* Easing */
  --ease-out:     cubic-bezier(.16,1,.3,1);
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);
  --ease-smooth:  cubic-bezier(.4,0,.2,1);

  /* Layout */
  --container:    1300px;
  --pad:          clamp(1.25rem,5vw,3rem);
  --sec-pad:      clamp(5rem,10vw,9rem);
  --nav-h:        74px;
  --z-nav:        1000;
}

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Rich ambient background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(14,165,233,.07) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(99,102,241,.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(14,165,233,.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button,input,select,textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -.02em;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section-pad { padding-block: var(--sec-pad); }
.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-hero {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }

/* ============================================================
   BUTTONS — Classy, multi-layered
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 2.1rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .015em;
  cursor: pointer;
  border: none;
  transition: all .3s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .3s ease;
  z-index: -1;
}
.btn:hover::before { background: rgba(255,255,255,.06); }
.btn:active { transform: scale(.97); }

/* Shimmer effect on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .6s ease;
  z-index: 0;
}
.btn:hover::after { left: 150%; }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 24px rgba(14,165,233,.45), 0 1px 0 rgba(255,255,255,.1) inset;
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(14,165,233,.6), 0 1px 0 rgba(255,255,255,.1) inset;
  color: #fff;
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--grad-accent);
  color: var(--bg);
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(56,189,248,.4);
}
.btn-accent:hover {
  box-shadow: 0 8px 40px rgba(56,189,248,.6);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(56,189,248,.25);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--accent);
  background: rgba(14,165,233,.07);
  box-shadow: 0 0 20px rgba(14,165,233,.15);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.15);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
}
.btn-whatsapp:hover {
  box-shadow: 0 8px 35px rgba(37,211,102,.65);
  color: #fff;
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--grad-gold);
  color: #1a0800;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(245,158,11,.4);
}
.btn-gold:hover {
  box-shadow: 0 8px 35px rgba(245,158,11,.65);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.05rem 2.6rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.3rem; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: linear-gradient(90deg, rgba(14,165,233,.1), rgba(99,102,241,.07), rgba(14,165,233,.1));
  border-bottom: 1px solid var(--border);
  padding: .5rem 0;
  font-size: .77rem;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}
.topbar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.05), transparent);
  animation: topbar-shine 6s ease-in-out infinite;
}
@keyframes topbar-shine {
  0% { left: -100%; }
  100% { left: 200%; }
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-item { display: flex; align-items: center; gap: .4rem; }
.topbar a { color: var(--muted); transition: color .2s; }
.topbar a:hover { color: var(--accent); }
.topbar-badge {
  background: var(--grad-primary);
  color: #fff;
  padding: .15rem .7rem;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .04em;
  animation: badge-pulse 2.5s ease infinite;
  box-shadow: 0 0 15px rgba(14,165,233,.4);
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(14,165,233,.4); }
  50% { box-shadow: 0 0 25px rgba(14,165,233,.7); }
}

/* ============================================================
   NAVBAR — Luxury glassmorphism
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: var(--z-nav); }
.navbar {
  height: var(--nav-h);
  background: rgba(2,5,9,.7);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(56,189,248,.08);
  transition: all .4s ease;
}
.navbar.scrolled {
  background: rgba(2,5,9,.92);
  border-bottom-color: rgba(56,189,248,.15);
  box-shadow: 0 4px 40px rgba(0,0,0,.6), 0 1px 0 rgba(56,189,248,.08) inset;
}
.navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .85; color: var(--white); }
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--grad-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 16px rgba(14,165,233,.5), 0 0 0 1px rgba(56,189,248,.2) inset;
  flex-shrink: 0;
  transition: all .3s ease;
}
.nav-logo:hover .nav-logo-icon { box-shadow: 0 6px 24px rgba(14,165,233,.7), 0 0 0 1px rgba(56,189,248,.3) inset; }
.nav-logo span { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: .15rem; }
.nav-link {
  padding: .45rem .9rem;
  border-radius: var(--r-full);
  font-size: .86rem;
  font-weight: 600;
  color: var(--muted);
  transition: all .2s ease;
  text-decoration: none;
  letter-spacing: .01em;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%; right: 50%;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  transition: all .3s var(--ease-out);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(14,165,233,.08);
}
.nav-link:hover::after, .nav-link.active::after {
  left: 30%; right: 30%;
}
.nav-actions { display: flex; align-items: center; gap: .7rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s ease;
}
.hamburger:hover { background: rgba(14,165,233,.1); border-color: var(--primary); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .35s var(--ease-out);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(2,5,9,.97);
  backdrop-filter: blur(28px);
  z-index: calc(var(--z-nav) - 1);
  padding: 2rem var(--pad);
  overflow-y: auto;
  flex-direction: column;
  gap: .4rem;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out);
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-nav-link {
  display: block;
  padding: .95rem 1.1rem;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(56,189,248,.07);
  text-decoration: none;
  transition: all .2s ease;
  letter-spacing: .01em;
}
.mobile-nav-link:hover { background: rgba(14,165,233,.07); color: var(--accent); border-color: var(--border); padding-left: 1.4rem; }
.mobile-menu-actions { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }

/* ============================================================
   FLOATING WHATSAPP — Elegant with label
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: calc(var(--z-nav) + 50);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.wa-float-tip {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: .4rem 1rem;
  font-size: .78rem;
  color: var(--muted);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all .3s ease;
  pointer-events: none;
}
.wa-float:hover .wa-float-tip {
  opacity: 1;
  transform: translateX(0);
}
.wa-float-btn {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4);
  cursor: pointer;
  transition: all .3s var(--ease-out);
  text-decoration: none;
  animation: wa-float 3.5s ease-in-out infinite, wa-ping 3.5s ease infinite;
}
.wa-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,.7);
  animation: none;
}
@keyframes wa-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes wa-ping {
  0% { box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
  70% { box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}
/* Legacy .wa-float-label alias */
.wa-float-label { display: none; }

/* ============================================================
   SECTION HEADERS — Refined
   ============================================================ */
.sec-header { max-width: 660px; }
.sec-header.center { margin-inline: auto; text-align: center; }
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.sec-label::before, .sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  min-width: 20px;
}
.sec-label::before { background: linear-gradient(90deg, transparent, var(--primary)); }
.sec-label::after  { background: linear-gradient(90deg, var(--primary), transparent); }
.sec-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
  line-height: 1.08;
}
.sec-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   HERO — Full cinematic treatment
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(3rem, 8vw, 6rem);
}

/* Animated mesh background */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 80%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(14,165,233,.14) 0%, transparent 65%);
  animation: orb1 14s ease-in-out infinite alternate;
  border-radius: 50%;
  filter: blur(40px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -15%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(99,102,241,.1) 0%, transparent 65%);
  animation: orb2 18s ease-in-out infinite alternate;
  border-radius: 50%;
  filter: blur(40px);
}
@keyframes orb1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(6%, 4%) scale(1.15); } }
@keyframes orb2 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-6%, -4%) scale(1.2); } }

/* Premium grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black, transparent);
}

/* Noise texture for depth */
.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { max-width: 600px; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem 1.1rem;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.22);
  border-radius: var(--r-full);
  font-size: .77rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(14,165,233,.1);
}
.hero-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: dot-pulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.6; transform:scale(1.4); } }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 1.3rem;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.75;
}

/* Stats row */
.hero-stats { display: flex; gap: 2rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.hero-stat { position: relative; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .22rem;
  font-weight: 600;
}

/* CTA row */
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* Trust bar */
.hero-trust { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .77rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-trust-item svg { color: var(--success); flex-shrink: 0; }

.hero-contact-row { margin-top: 1.5rem; font-size: .8rem; color: var(--muted); }
.hero-contact-row a { color: var(--muted); transition: color .2s; }
.hero-contact-row a:hover { color: var(--accent); }

/* ============================================================
   HERO VISUAL — Cinematic TV mockup
   ============================================================ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-tv-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-tv {
  background: var(--surface);
  border: 1px solid rgba(56,189,248,.18);
  border-radius: var(--r-xl);
  padding: 1.4rem;
  box-shadow:
    var(--shadow-xl),
    0 0 60px rgba(14,165,233,.15),
    0 1px 0 rgba(255,255,255,.06) inset;
  position: relative;
  overflow: hidden;
}
.hero-tv::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.4), transparent);
}
.hero-tv-screen {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0a1628 0%, #1a2550 50%, #0d1f3a 100%);
  position: relative;
}
/* Animated scanlines for authentic TV feel */
.hero-tv-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,.03) 2px,
    rgba(0,0,0,.03) 4px
  );
  pointer-events: none;
  z-index: 2;
}
.tv-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .9rem;
  z-index: 3;
}
.tv-top { display: flex; justify-content: space-between; align-items: center; }
.tv-ch-badge {
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
  padding: .25rem .6rem;
  border-radius: 6px;
  font-size: .67rem;
  font-weight: 800;
  color: var(--accent);
  border: 1px solid rgba(56,189,248,.25);
  letter-spacing: .04em;
}
.tv-live {
  background: var(--danger);
  padding: .2rem .5rem;
  border-radius: 5px;
  font-size: .62rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .3rem;
  letter-spacing: .06em;
  animation: live-blink 1.8s ease infinite;
  box-shadow: 0 0 10px rgba(244,63,94,.5);
}
.tv-live-dot { width: 5px; height: 5px; background: #fff; border-radius: 50%; }
@keyframes live-blink { 0%,100% { opacity:1; } 50% { opacity:.65; } }
.tv-play { flex: 1; display: flex; align-items: center; justify-content: center; }
.tv-play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 2px solid rgba(255,255,255,.25);
  transition: all .3s var(--ease-spring);
  cursor: pointer;
  box-shadow: 0 0 30px rgba(14,165,233,.2);
}
.tv-play-btn:hover {
  background: rgba(14,165,233,.45);
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(14,165,233,.5);
}
.tv-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(10px);
  padding: .5rem .7rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.06);
}
.tv-info { font-size: .67rem; color: rgba(255,255,255,.8); }
.tv-info strong { color: #fff; font-family: var(--font-display); font-weight: 700; }
.tv-qual {
  font-size: .66rem;
  font-weight: 800;
  color: var(--gold);
  border: 1.5px solid currentColor;
  padding: .1rem .42rem;
  border-radius: 5px;
  letter-spacing: .04em;
  background: rgba(245,158,11,.08);
}
.hero-tv-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .95rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
  font-size: .7rem;
  color: var(--muted);
}
.hero-tv-footer-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
  margin-right: .35rem;
  box-shadow: 0 0 6px var(--success);
  animation: dot-pulse 2s ease infinite;
}

/* Floating badge cards */
.float-card {
  position: absolute;
  background: rgba(10,22,40,.9);
  border: 1px solid rgba(56,189,248,.18);
  border-radius: var(--r-lg);
  padding: .75rem 1rem;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(14,165,233,.1);
  backdrop-filter: blur(12px);
}
.float-card.bottom-left {
  left: -1.4rem;
  bottom: 1.5rem;
  animation: float-anim 4.5s ease-in-out infinite;
}
.float-card.top-right {
  right: -1rem;
  top: -.8rem;
  animation: float-anim 4.5s ease-in-out infinite;
  animation-delay: -2.25s;
}
@keyframes float-anim { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
.float-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--success);
  line-height: 1;
}
.float-lbl { font-size: .67rem; color: var(--muted); margin-top: .2rem; font-weight: 500; }

.device-pills {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  position: absolute;
  right: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.device-pill {
  background: rgba(10,22,40,.9);
  border: 1px solid rgba(56,189,248,.15);
  border-radius: var(--r-md);
  padding: .52rem .85rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease-out);
  backdrop-filter: blur(8px);
}
.device-pill:hover { transform: translateX(-5px); border-color: var(--primary); color: var(--accent); }

/* ============================================================
   PARTNERS STRIP — Sleek ticker
   ============================================================ */
.partners-strip {
  padding: 2.5rem 0;
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.01);
  position: relative;
  overflow: hidden;
}
.partners-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.partners-lbl {
  font-size: .73rem;
  font-weight: 700;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
  flex-shrink: 0;
}
.partner-logos { display: flex; align-items: center; gap: 2.25rem; flex-wrap: wrap; justify-content: center; }
.partner-logo {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--dim);
  opacity: .5;
  filter: grayscale(1);
  transition: all .3s ease;
  letter-spacing: .02em;
}
.partner-logo:hover { opacity: 1; filter: none; color: var(--text); transform: translateY(-1px); }

/* ============================================================
   FEATURES GRID — Premium cards
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.feat-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}
/* Glowing top accent line */
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
/* Inner glow on hover */
.feat-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse 40% 30% at 50% 50%, rgba(14,165,233,.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.feat-card:hover {
  border-color: rgba(14,165,233,.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--glow-primary);
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-card:hover::after { opacity: 1; }

.feat-icon {
  width: 54px;
  height: 54px;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.18);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: all .35s var(--ease-out);
  position: relative;
  z-index: 1;
}
.feat-card:hover .feat-icon {
  background: rgba(14,165,233,.18);
  border-color: var(--primary);
  box-shadow: 0 0 24px rgba(14,165,233,.35);
  transform: scale(1.08);
}
.feat-title { font-size: 1.07rem; font-weight: 700; margin-bottom: .6rem; position: relative; z-index: 1; }
.feat-desc { font-size: .87rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.65; position: relative; z-index: 1; }
.feat-list { display: flex; flex-direction: column; gap: .4rem; position: relative; z-index: 1; }
.feat-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--muted);
  transition: color .2s;
}
.feat-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--accent);
  transition: all .2s;
}
.feat-card:hover .feat-list li { color: var(--text); }
.feat-card:hover .feat-list li::before { box-shadow: 0 0 10px var(--accent); }

/* ============================================================
   STATS BAND — High-impact numbers
   ============================================================ */
.stats-band {
  background: var(--grad-card);
  border-block: 1px solid var(--border);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 20% 50%, rgba(14,165,233,.05) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(99,102,241,.04) 0%, transparent 65%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
  transition: all .3s ease;
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(14,165,233,.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: var(--r-md);
}
.stat-item:hover::before { opacity: 1; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-lbl { font-size: .82rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }

/* ============================================================
   CHANNELS — Modern grid cards
   ============================================================ */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.ch-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: all .35s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.ch-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transition: transform .35s var(--ease-out);
}
.ch-card:hover {
  border-color: rgba(14,165,233,.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--glow-accent);
}
.ch-card:hover::before { transform: scaleX(1); }
.ch-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.ch-emoji { font-size: 2rem; line-height: 1; }
.ch-count {
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(56,189,248,.08);
  border: 1px solid rgba(56,189,248,.18);
  padding: .2rem .58rem;
  border-radius: var(--r-full);
}
.ch-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); }
.ch-examples { display: flex; flex-direction: column; gap: .32rem; }
.ch-example {
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .42rem;
  transition: color .2s;
}
.ch-example::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.ch-card:hover .ch-example { color: var(--text); }
.ch-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: all .2s;
}
.ch-card:hover .ch-link { color: var(--accent); gap: .6rem; }

/* ============================================================
   PRICING — Luxury cards
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.price-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: all .35s var(--ease-out);
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.3), transparent);
  transition: opacity .3s;
}
.price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14,165,233,.08) 0%, transparent 70%);
  transition: opacity .35s ease;
  pointer-events: none;
}
.price-card:hover {
  border-color: rgba(14,165,233,.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card:hover::after { opacity: 1; }
.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #0f2050, #0a1628);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl), var(--glow-primary);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.price-card.featured::before {
  background: linear-gradient(90deg, transparent, rgba(14,165,233,.6), transparent);
  opacity: 1;
}

.price-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: #1a0800;
  padding: .3rem 1.3rem;
  border-radius: 0 0 8px 8px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245,158,11,.4);
}
.price-period {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .9rem;
}
.price-row { display: flex; align-items: baseline; gap: .35rem; flex-wrap: wrap; margin-bottom: .45rem; }
.price-cur { font-size: 1.2rem; font-weight: 700; color: var(--muted); }
.price-amt {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.04em;
}
.price-per { font-size: .82rem; color: var(--muted); align-self: flex-end; padding-bottom: .3rem; }
.price-orig { font-size: .87rem; color: var(--dim); text-decoration: line-through; margin-bottom: .38rem; }
.price-save {
  display: inline-flex;
  align-items: center;
  padding: .2rem .6rem;
  background: rgba(16,185,129,.09);
  border: 1px solid rgba(16,185,129,.22);
  border-radius: var(--r-full);
  font-size: .7rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 12px rgba(16,185,129,.1);
}
.price-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.price-features { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.75rem; }
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: .58rem;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.45;
  transition: color .2s;
}
.price-card:hover .price-feature { color: var(--text); }
.price-check {
  width: 18px;
  height: 18px;
  background: rgba(16,185,129,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
  color: var(--success);
  font-size: .72rem;
  font-weight: 800;
}
.price-feature.hl { color: var(--white); font-weight: 600; }
.price-feature.hl .price-check { background: rgba(14,165,233,.15); color: var(--primary); }

/* Guarantees */
.price-guarantees {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.guarantee-item { display: flex; align-items: center; gap: .7rem; max-width: 240px; }
.guarantee-icon {
  width: 44px;
  height: 44px;
  background: rgba(14,165,233,.07);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all .3s ease;
}
.guarantee-item:hover .guarantee-icon {
  background: rgba(14,165,233,.14);
  border-color: var(--primary);
  box-shadow: 0 0 16px rgba(14,165,233,.2);
}
.guarantee-text strong { display: block; font-size: .87rem; color: var(--white); margin-bottom: .12rem; }
.guarantee-text span { font-size: .76rem; color: var(--muted); }

.payment-row { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.payment-lbl { font-size: .76rem; color: var(--dim); font-weight: 600; }
.payment-icons { display: flex; gap: .65rem; flex-wrap: wrap; }
.payment-icon {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .32rem .78rem;
  font-size: .73rem;
  color: var(--muted);
  font-weight: 700;
  transition: all .2s ease;
  letter-spacing: .02em;
}
.payment-icon:hover { border-color: var(--primary); color: var(--accent); background: rgba(14,165,233,.06); }

/* ============================================================
   REVIEWS MARQUEE — Polished infinite scroll
   ============================================================ */
.reviews-wrap {
  overflow: hidden;
  position: relative;
}
.reviews-wrap::before, .reviews-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 14%;
  z-index: 1;
  pointer-events: none;
}
.reviews-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.reviews-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scroll-l 32s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
.reviews-track-r { animation-direction: reverse; animation-duration: 38s; }
@keyframes scroll-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  width: 300px;
  flex-shrink: 0;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.25), transparent);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.review-card:hover { border-color: rgba(14,165,233,.28); box-shadow: var(--shadow-sm), var(--glow-accent); }
.review-card:hover::before { transform: scaleX(1); }
.review-stars { display: flex; gap: .2rem; margin-bottom: .7rem; font-size: .85rem; }
.review-text { font-size: .86rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; gap: .7rem; }
.review-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(14,165,233,.3);
}
.review-name { font-size: .87rem; font-weight: 700; color: var(--white); }
.review-role { font-size: .73rem; color: var(--muted); }
.review-verified {
  margin-left: auto;
  font-size: .68rem;
  color: var(--success);
  background: rgba(16,185,129,.08);
  padding: .2rem .5rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(16,185,129,.2);
  flex-shrink: 0;
}

/* ============================================================
   FAQ — Accordion
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: .7rem; }
.faq-item {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .3s ease;
}
.faq-item:hover, .faq-item.open {
  border-color: rgba(14,165,233,.3);
  box-shadow: 0 4px 24px rgba(14,165,233,.06);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: .93rem;
  color: var(--white);
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color .2s;
  letter-spacing: .01em;
}
.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(14,165,233,.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  transition: all .35s var(--ease-spring);
  color: var(--primary);
  font-weight: 700;
  border: 1px solid rgba(14,165,233,.18);
}
.faq-item.open .faq-icon {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(45deg);
  border-color: transparent;
  box-shadow: 0 0 16px rgba(14,165,233,.4);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease-out), padding .3s ease;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.3rem; }

/* FAQ Side Card */
.faq-side-card {
  background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(99,102,241,.05));
  border: 1px solid rgba(14,165,233,.2);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  text-align: center;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  box-shadow: 0 8px 40px rgba(14,165,233,.08);
}
.faq-side-card h3 { font-size: 1.4rem; margin-bottom: .75rem; }
.faq-side-card p { color: var(--muted); margin-bottom: 1.75rem; font-size: .9rem; line-height: 1.65; }
.faq-contact-btns { display: flex; flex-direction: column; gap: .7rem; }
.faq-contact-meta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.faq-meta-item { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.faq-meta-item span:first-child { color: var(--success); }

/* ============================================================
   CTA BANNER — Dramatic
   ============================================================ */
.cta-banner-inner {
  background: linear-gradient(135deg, #051226, #0f1d50, #0c0d30);
  border-block: 1px solid rgba(14,165,233,.18);
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -25%;
  width: 90%;
  height: 220%;
  background: radial-gradient(ellipse, rgba(14,165,233,.16) 0%, transparent 60%);
  pointer-events: none;
  animation: cta-orb1 10s ease-in-out infinite alternate;
}
.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -60%;
  right: -25%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(99,102,241,.12) 0%, transparent 60%);
  pointer-events: none;
  animation: cta-orb2 14s ease-in-out infinite alternate;
}
@keyframes cta-orb1 { from { transform: translate(0,0) scale(1); } to { transform: translate(5%,5%) scale(1.1); } }
@keyframes cta-orb2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-5%,-5%) scale(1.1); } }
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
  line-height: 1.06;
}
.cta-desc { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-trust { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: .42rem;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   FOOTER — Refined dark
   ============================================================ */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); }
.footer-top { padding: 4.5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 2.75rem; }
.footer-brand-desc {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.75;
  margin-block: 1rem;
  max-width: 280px;
}
.footer-socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social-btn {
  width: 38px;
  height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--muted);
  text-decoration: none;
  transition: all .3s var(--ease-out);
}
.social-btn:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14,165,233,.35);
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: .83rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -.4rem;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-link {
  font-size: .83rem;
  color: var(--muted);
  text-decoration: none;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .1rem 0;
}
.footer-link:hover { color: var(--accent); gap: .55rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .83rem;
  color: var(--muted);
  margin-bottom: .85rem;
}
.footer-contact-item a { color: var(--muted); transition: color .2s; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-contact-icon {
  width: 28px;
  height: 28px;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: all .2s ease;
}
.footer-contact-item:hover .footer-contact-icon {
  background: rgba(14,165,233,.15);
  border-color: var(--primary);
}
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: .78rem; color: var(--dim); }
.footer-copy a { color: var(--muted); }
.footer-copy a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a, .footer-bottom-link {
  font-size: .78rem;
  color: var(--dim);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover, .footer-bottom-link:hover { color: var(--text); }

/* Footer bottom links nav */
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ============================================================
   REVEAL ANIMATIONS — Smooth entrance
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* CTA banner compatibility */
.cta-banner-content { text-align: center; }
.cta-banner-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
}
.cta-banner-desc { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-trust-row { display: flex; justify-content: center; gap: 1.75rem; flex-wrap: wrap; }
.cta-trust-row .cta-trust-item { font-size: .8rem; color: var(--muted); }

/* Badge reuse */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .38rem 1rem;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.22);
  border-radius: var(--r-full);
  font-size: .77rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .device-pills { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { max-width: 100%; }
  .nav-menu, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-side-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --sec-pad: 3.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(5) { grid-column: span 2; border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .hero-stats { gap: 1.25rem; }
  .float-card { display: none; }
  .pricing-grid { gap: 1rem; }
}

/* ============================================================
   WP / GUTENBERG COMPAT
   ============================================================ */
.wp-block-image img { border-radius: var(--r-md); }
.alignwide { max-width: 1100px; margin-inline: auto; }
.widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   CUSTOM SCROLLBAR — Classy
   ============================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--violet));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background: rgba(14,165,233,.25); color: var(--white); }
