/*
Theme Name:  Smarton TV
Theme URI:   https://smartontv.com
Description: Premium IPTV website theme for Smarton TV. Fully Elementor-compatible. Dark modern design with 4K streaming aesthetic.
Version:     1.0.0
Author:      Smarton TV
Author URI:  https://smartontv.com
Text Domain: smarton-tv
License:     GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags:        dark, modern, iptv, streaming, one-column, elementor-compatible
*/

/* ================================================================
   SMARTON TV — Shared Stylesheet v2.0
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@600;700;800;900&display=swap');

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

:root {
  --bg:       #03030d;
  --bg2:      #06061a;
  --bg3:      #0a0a22;
  --card:     #0d0d28;
  --red:      #e50914;
  --red2:     #ff2d2d;
  --gold:     #f5c518;
  --blue:     #3b82f6;
  --purple:   #8b5cf6;
  --green:    #10b981;
  --text:     #f0f0ff;
  --muted:    #8888aa;
  --border:   rgba(255,255,255,0.07);
  --r:        12px;
  --r-lg:     20px;
  --shadow:   0 30px 80px rgba(0,0,0,0.6);
  --glow-red: 0 0 40px rgba(229,9,20,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-red    { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red2); transform: translateY(-2px); box-shadow: var(--glow-red); }
.btn-gold   { background: var(--gold); color: #000; font-weight: 800; }
.btn-gold:hover { opacity: .88; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.15); }
.btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover { opacity: .88; transform: translateY(-2px); }
.btn-lg   { padding: 15px 36px; font-size: 1.05rem; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ================================================================
   NAVBAR
================================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease;
}
#navbar.scrolled {
  background: rgba(3,3,13,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.logo .red { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ================================================================
   MOBILE MENU
================================================================ */
#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(3,3,13,0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s;
}
#mobileMenu a:hover { color: var(--text); }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: var(--text); font-size: 1.55rem;
  cursor: pointer;
}

/* ================================================================
   ANNOUNCEMENT TICKER
================================================================ */
.ticker-wrap {
  background: linear-gradient(90deg, var(--red), #c00008);
  padding: 9px 0;
  overflow: hidden;
  margin-top: 72px;
}
.ticker-track {
  display: flex;
  gap: 56px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0.3px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   PAGE INTRO (non-hero inner pages)
================================================================ */
.page-intro {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(229,9,20,0.08) 0%, transparent 70%),
    var(--bg2);
}
.page-intro > * { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--muted); transition: color .3s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb i { font-size: 0.65rem; }

/* ================================================================
   SECTION HELPERS
================================================================ */
section { padding: 92px 0; }

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.sec-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}
.sec-desc {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 600px;
  line-height: 1.85;
}
.sec-header { text-align: center; margin-bottom: 56px; }
.sec-header .sec-desc { margin: 0 auto; }

/* ================================================================
   STATS BAR
================================================================ */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.sbar-item { position: relative; padding: 10px; }
.sbar-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; height: 70%;
  width: 1px; background: var(--border);
}
.sbar-num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
}
.sbar-lbl { font-size: 0.8rem; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* ================================================================
   FEATURE CARDS
================================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--purple));
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229,9,20,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(229,9,20,0.08);
}
.feat-card:hover::after { opacity: 1; }
.feat-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.feat-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.feat-card p  { font-size: 0.87rem; color: var(--muted); line-height: 1.75; }

/* ================================================================
   CONTENT TABS + POSTER GRID
================================================================ */
.tab-row {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.tab-btn {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  display: flex; align-items: center; gap: 7px;
}
.tab-btn.active, .tab-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 13px;
}
.poster-card {
  border-radius: 11px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 2/3;
  transition: transform 0.3s, box-shadow 0.3s;
  background: linear-gradient(160deg, #0d0d28, #1a0a2e);
}
.poster-card:hover { transform: scale(1.05); box-shadow: 0 20px 50px rgba(0,0,0,0.6); z-index: 2; }
.poster-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.poster-card-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.3;
}
.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,0.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 11px;
  z-index: 1;
}
.poster-title { font-size: 0.8rem; font-weight: 700; margin-bottom: 4px; }
.poster-meta  { font-size: 0.68rem; color: var(--muted); display: flex; gap: 5px; align-items: center; flex-wrap: wrap; }
.q-badge   { background: var(--gold); color: #000; padding: 1px 5px; border-radius: 3px; font-size: 0.6rem; font-weight: 800; }
.new-badge { background: var(--green); color: #fff; padding: 1px 5px; border-radius: 3px; font-size: 0.6rem; font-weight: 800; }

/* Sports */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.sport-card {
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/9;
  transition: transform 0.3s;
  background: linear-gradient(135deg, #0a0015, #1a0030);
}
.sport-card:hover { transform: scale(1.03); }
.sport-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sport-card-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.25;
}
.sport-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 40%, rgba(0,0,0,0.78) 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 15px;
  z-index: 1;
}
.sport-live-pill {
  align-self: flex-start;
  background: var(--red);
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.sport-info h4 { font-size: 0.98rem; font-weight: 700; }
.sport-info p  { font-size: 0.76rem; color: rgba(255,255,255,0.7); }

/* Kids */
.kids-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 15px; }
.kids-card { border-radius: 13px; overflow: hidden; cursor: pointer; transition: transform 0.3s; aspect-ratio: 3/2; }
.kids-card:hover { transform: scale(1.04); }
.kids-bg { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; font-size: 0.9rem; font-weight: 700; }
.kids-bg i { font-size: 2.3rem; }

/* ================================================================
   CHANNEL CATEGORIES
================================================================ */
.ch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 15px; }
.ch-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 14px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.ch-card:hover { border-color: rgba(229,9,20,0.4); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.4); }
.ch-icon  { font-size: 1.9rem; margin-bottom: 8px; display: block; }
.ch-name  { font-size: 0.86rem; font-weight: 700; margin-bottom: 3px; }
.ch-count { font-size: 0.73rem; color: var(--muted); }

/* ================================================================
   PRICING CARDS
================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
}
.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  position: relative;
  transition: all 0.35s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price-card.popular {
  border-color: var(--red);
  background: linear-gradient(170deg, rgba(229,9,20,0.07) 0%, var(--card) 100%);
  box-shadow: 0 0 60px rgba(229,9,20,0.1);
  transform: scale(1.03);
}
.price-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.price-card.best {
  border-color: var(--gold);
  background: linear-gradient(170deg, rgba(245,197,24,0.06) 0%, var(--card) 100%);
}
.badge-pop {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  padding: 5px 16px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 1px; white-space: nowrap;
}
.badge-best {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000;
  padding: 5px 16px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 1px; white-space: nowrap;
}
.plan-dur { font-size: 0.76rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 9px; }
.price-cur { font-size: 1.2rem; font-weight: 700; color: var(--muted); vertical-align: super; }
.price-amt { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 900; }
.price-per { font-size: 0.76rem; color: var(--muted); }
.plan-save {
  display: inline-block;
  background: rgba(16,185,129,0.12); color: var(--green);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 3px 9px; border-radius: 4px;
  font-size: 0.7rem; font-weight: 700;
  margin-bottom: 20px;
}
.plan-divider { height: 1px; background: var(--border); margin: 16px 0; }
.plan-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.plan-feat  { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; }
.plan-feat i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }
.plan-feat.off { opacity: 0.4; }
.plan-feat.off i { color: var(--muted); }

/* ================================================================
   HOW IT WORKS
================================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 33px;
  left: calc(16.67% + 8px);
  right: calc(16.67% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--purple), var(--blue));
}
.step { text-align: center; }
.step-num {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem; font-weight: 900; color: var(--red);
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.step h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 9px; }
.step p   { font-size: 0.87rem; color: var(--muted); line-height: 1.75; }

/* ================================================================
   DEVICE CARDS
================================================================ */
.dev-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.dev-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px 16px;
  text-align: center; transition: all 0.3s;
}
.dev-card:hover { border-color: rgba(229,9,20,0.3); transform: translateY(-4px); }
.dev-ico { font-size: 2.4rem; margin-bottom: 11px; display: block; }
.dev-card h3 { font-size: 0.93rem; font-weight: 700; margin-bottom: 5px; }
.dev-card p  { font-size: 0.77rem; color: var(--muted); }

/* ================================================================
   TESTIMONIALS
================================================================ */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  transition: all 0.3s;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(229,9,20,0.2); }
.stars { color: var(--gold); font-size: 0.86rem; margin-bottom: 13px; display: flex; gap: 3px; }
.review-text { font-size: 0.88rem; color: var(--muted); font-style: italic; line-height: 1.8; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.r-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.r-name { font-size: 0.86rem; font-weight: 700; }
.r-loc  { font-size: 0.72rem; color: var(--muted); }

/* Trust badges */
.trust-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .trust-icon { font-size: 1.8rem; }
.trust-item .trust-text { font-size: 0.8rem; color: var(--muted); }
.trust-item .trust-text strong { display: block; font-size: 1rem; color: var(--text); font-weight: 700; }

/* ================================================================
   FAQ
================================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: rgba(229,9,20,0.3); }
.faq-q { padding: 17px 20px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-size: 0.92rem; font-weight: 600; gap: 14px; user-select: none; }
.faq-q i { color: var(--red); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.35s ease; font-size: 0.87rem; color: var(--muted); line-height: 1.85; }
.faq-item.open .faq-a { padding: 0 20px 17px; max-height: 400px; }

/* ================================================================
   FINAL CTA SECTION
================================================================ */
.cta-sec {
  background: linear-gradient(135deg, rgba(229,9,20,0.08) 0%, rgba(139,92,246,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-btns { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 58px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.85; margin: 13px 0 20px; max-width: 265px; }
.socials { display: flex; gap: 8px; }
.soc-btn { width: 36px; height: 36px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.86rem; color: var(--muted); transition: all 0.3s; }
.soc-btn:hover { border-color: var(--red); color: var(--red); background: rgba(229,9,20,0.08); }
.footer-col h4 { font-size: 0.87rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.82rem; color: var(--muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { padding-top: 26px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-bl { display: flex; gap: 18px; }
.footer-bl a { font-size: 0.78rem; color: var(--muted); transition: color 0.3s; }
.footer-bl a:hover { color: var(--text); }

.footer-contact { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.footer-contact a { font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.footer-contact a:hover { color: var(--text); }
.footer-contact i { color: var(--red); width: 14px; }

/* ================================================================
   FLOATING BUTTONS
================================================================ */
.float-btns { position: fixed; bottom: 26px; right: 26px; z-index: 900; display: flex; flex-direction: column; gap: 9px; align-items: flex-end; }
.fb { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; cursor: pointer; border: none; color: #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.45); transition: all 0.3s; }
.fb:hover { transform: scale(1.12); }
.fb-wa { background: #25d366; }
.fb-tg { background: #0088cc; }
.scroll-up { position: fixed; bottom: 26px; left: 26px; z-index: 900; width: 40px; height: 40px; background: var(--card); border: 1px solid var(--border); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 0.92rem; color: var(--muted); cursor: pointer; transition: all 0.3s; opacity: 0; pointer-events: none; }
.scroll-up.show { opacity: 1; pointer-events: all; }
.scroll-up:hover { border-color: var(--red); color: var(--red); }

/* ================================================================
   UTILITY / HELPERS
================================================================ */
.grad { background: linear-gradient(135deg, var(--red), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-center { text-align: center; }
.text-muted   { color: var(--muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ================================================================
   SCROLL REVEAL
================================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

.pulse-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: pulseDot 1.8s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.4); } }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1080px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 900px) {
  .feat-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .sbar-item:not(:last-child)::after { display: none; }
  .steps-grid  { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid::before { display: none; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .dev-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta-d { display: none; }
  .hamburger { display: flex; }
  .ticker-wrap { margin-top: 60px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 370px; margin: 0 auto; }
  .pricing-grid-2 { grid-template-columns: 1fr; max-width: 370px; margin: 0 auto; }
  .feat-grid   { grid-template-columns: 1fr; }
  .poster-grid { grid-template-columns: repeat(auto-fill, minmax(125px, 1fr)); }
  .sports-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ch-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .sec-title  { font-size: 1.52rem; }
  .sbar-num   { font-size: 1.7rem; }
  .poster-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .dev-grid   { grid-template-columns: repeat(2, 1fr); }
  .kids-grid  { grid-template-columns: repeat(2, 1fr); }
  .ch-grid    { grid-template-columns: repeat(2, 1fr); }
  .float-btns { bottom: 16px; right: 16px; }
  .scroll-up  { bottom: 16px; left: 16px; }
  .trust-row  { gap: 20px; }
}
