/* ================================================================
   GlotvIPTV — Main Stylesheet | glotviptv.com | v1.0
   ================================================================ */

/* Fonts loaded via <link> in header.php */

/* ── CSS Custom Properties ────────────────────────────────────── */
:root {
  --bg:            #0B0B0F;
  --surface:       #15151D;
  --surface-2:     #1C1C28;
  --primary:       #FF2D55;
  --primary-dark:  #CC2344;
  --primary-dim:   rgba(255, 45, 85, 0.12);
  --accent:        #00E5FF;
  --accent-dim:    rgba(0, 229, 255, 0.08);
  --text:          #F5F5F7;
  --muted:         #8A8A93;
  --border:        rgba(255, 255, 255, 0.08);
  --border-hover:  rgba(255, 255, 255, 0.16);
  --success:       #4ADE80;

  --font-heading:  'Sora', system-ui, sans-serif;
  --font-body:     'Manrope', system-ui, sans-serif;

  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --shadow-card:    0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-primary: 0 0 48px rgba(255, 45, 85, 0.22);
  --shadow-accent:  0 0 48px rgba(0, 229, 255, 0.15);

  --transition:     0.25s ease;
  --transition-slow: 0.5s ease;

  --max-w:  1240px;
  --px:     clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #0B0B0F;
  background-color: var(--bg);
  color: #F5F5F7;
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* noise texture removed for performance */

img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', system-ui, sans-serif;
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F5F5F7;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.75rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p  { color: var(--muted); line-height: 1.75; }

.text-gradient {
  background: linear-gradient(130deg, var(--primary) 0%, #FF6E8A 45%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-accent  { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white   { color: var(--text); }

/* ── Layout Utilities ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.06);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.section-badge.red {
  border-color: rgba(255, 45, 85, 0.3);
  background: rgba(255, 45, 85, 0.06);
  color: var(--primary);
}
.section-badge.red .dot { background: var(--primary); }

.section-sub {
  max-width: 620px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  min-height: 48px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(255, 45, 85, 0.3);
}
.btn-primary:hover {
  background: #e8263e;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255, 45, 85, 0.5);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -100%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: 0.65s;
}
.btn-primary:hover::after { left: 180%; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hover);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
  font-weight: 700;
}
.btn-accent:hover {
  background: #00cce5;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 229, 255, 0.45);
}

.btn-lg { padding: 1.05rem 2.25rem; font-size: 1.05rem; }

.btn-full { width: 100%; }

/* ── Navigation ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem var(--px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(11, 11, 15, 0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  flex-shrink: 0;
}

.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.45);
  flex-shrink: 0;
}

.nav-logo-text { color: var(--text); }
.nav-logo-text span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links a.nav-reseller { color: var(--accent); font-weight: 600; }
.nav-links a.nav-reseller:hover { color: var(--accent); background: rgba(0,229,255,0.08); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,0.06); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 15, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.6rem 2rem;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile a.mobile-reseller { color: var(--accent); }
.nav-mobile .btn { margin-top: 1.5rem; font-size: 1rem; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(84px + 3rem) var(--px) 5rem;
}

.hero-orb-1 {
  position: absolute;
  top: -10%; left: -12%;
  width: min(750px, 80vw); height: min(750px, 80vw);
  background: radial-gradient(circle, rgba(255,45,85,0.11) 0%, transparent 65%);
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  bottom: -15%; right: -8%;
  width: min(650px, 70vw); height: min(650px, 70vw);
  background: radial-gradient(circle, rgba(0,229,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 5rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 1rem;
  border-radius: 100px;
  background: rgba(255, 45, 85, 0.1);
  border: 1px solid rgba(255, 45, 85, 0.28);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.live-dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-live 1.6s ease-in-out infinite;
}

.hero-title { margin-bottom: 1.35rem; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.75rem;
  max-width: 530px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  display: block;
}
.hero-stat-label {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 0.15rem;
}

/* Channel Mosaic */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-glow {
  position: absolute;
  width: 110%; height: 110%;
  background: radial-gradient(ellipse at center, rgba(255,45,85,0.1) 0%, rgba(0,229,255,0.05) 50%, transparent 75%);
  pointer-events: none;
}

.channel-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  transform: perspective(1100px) rotateY(-12deg) rotateX(6deg);
  animation: float-mosaic 7s ease-in-out infinite;
  width: 100%;
  max-width: 420px;
}

.channel-tile {
  aspect-ratio: 16/10;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.channel-tile:hover { transform: scale(1.06); z-index: 2; box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.channel-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.channel-tile svg { width: 20px; height: 20px; position: relative; z-index: 1; }
.channel-tile span { position: relative; z-index: 1; }

.tile-sports { background: linear-gradient(135deg, #1a0a1a 0%, #7a0030 100%); border-color: rgba(255,45,85,0.4); }
.tile-movies { background: linear-gradient(135deg, #0a0a1f 0%, #002080 100%); border-color: rgba(0,80,255,0.4); }
.tile-kids   { background: linear-gradient(135deg, #0a1a0a 0%, #006600 100%); border-color: rgba(0,180,0,0.4); }
.tile-news   { background: linear-gradient(135deg, #12001f 0%, #5000b0 100%); border-color: rgba(140,0,255,0.4); }
.tile-ent    { background: linear-gradient(135deg, #1f0a00 0%, #cc5500 100%); border-color: rgba(255,140,0,0.4); }
.tile-ppv    { background: linear-gradient(135deg, #1f0000 0%, #cc0020 100%); border-color: rgba(255,45,85,0.6); }
.tile-uk     { background: linear-gradient(135deg, #00001a 0%, #003399 100%); border-color: rgba(70,130,220,0.4); }
.tile-us     { background: linear-gradient(135deg, #1a0000 0%, #880000 100%); border-color: rgba(200,0,0,0.4); }
.tile-int    { background: linear-gradient(135deg, #001515 0%, #007088 100%); border-color: rgba(0,180,200,0.4); }

/* ── Trust Strip ──────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  overflow: hidden;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  padding: 0 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; width: 18px; height: 18px; }

.trust-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ── Features Grid ────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: rgba(255,45,85,0.22);
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,45,85,0.08);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--primary-dim);
  border: 1px solid rgba(255, 45, 85, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  color: var(--primary);
}
.feature-icon.icon-accent {
  background: var(--accent-dim);
  border-color: rgba(0, 229, 255, 0.22);
  color: var(--accent);
}
.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.feature-card p  { font-size: 0.88rem; line-height: 1.65; }

/* ── Devices Section ──────────────────────────────────────────── */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.device-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: var(--transition);
}
.device-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.device-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-icon svg { width: 36px; height: 36px; }

.device-info h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.device-info p  { font-size: 0.78rem; }

.mac-notice {
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.mac-notice svg  { color: var(--accent); flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.mac-notice p    { font-size: 0.9rem; color: var(--text); margin: 0; line-height: 1.65; }
.mac-notice strong { color: var(--accent); }

/* ── Channels Section ─────────────────────────────────────────── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.channel-cat {
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.channel-cat:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.channel-cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.channel-cat-icon {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.channel-cat-icon svg { width: 22px; height: 22px; color: #fff; }

.channel-cat-info { position: relative; z-index: 1; }
.channel-cat-info h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.channel-cat-info p  { font-size: 0.76rem; color: rgba(255,255,255,0.72); margin: 0; }

.cat-sports { background: linear-gradient(135deg, #1a0530 0%, #FF2D55 140%); }
.cat-movies { background: linear-gradient(135deg, #050525 0%, #1a40cc 140%); }
.cat-kids   { background: linear-gradient(135deg, #051a05 0%, #00aa44 140%); }
.cat-news   { background: linear-gradient(135deg, #100522 0%, #7722ee 140%); }
.cat-ent    { background: linear-gradient(135deg, #1f0800 0%, #ee7700 140%); }
.cat-ppv    { background: linear-gradient(135deg, #1f0008 0%, #ee0040 140%); }
.cat-int    { background: linear-gradient(135deg, #001520 0%, #0099bb 140%); }
.cat-live   { background: linear-gradient(135deg, #141400 0%, #aaaa00 140%); }

/* ── Pricing Section ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing-card.popular {
  border-color: rgba(255, 45, 85, 0.45);
  background: linear-gradient(175deg, rgba(255,45,85,0.08) 0%, var(--surface) 60%);
  box-shadow: 0 0 0 1px rgba(255,45,85,0.12), 0 20px 60px rgba(255,45,85,0.12);
  padding: 2.5rem 1.75rem;
  margin: -12px 0;
}
.pricing-card.best {
  border-color: rgba(0, 229, 255, 0.35);
  background: linear-gradient(175deg, rgba(0,229,255,0.06) 0%, var(--surface) 60%);
}

.pricing-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  padding: 0.22rem 0.72rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-popular { background: var(--primary); color: #fff; }
.badge-best    { background: var(--accent);  color: #000; }

.pricing-plan {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.35rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.35rem;
}
.pricing-currency {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  align-self: flex-start;
  margin-top: 0.55rem;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-sublabel {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: block;
}
.pricing-saving {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74,222,128,0.2);
  padding: 0.18rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.pricing-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  margin-bottom: 2rem;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: var(--text);
}
.check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--success);
}
.check-icon svg { width: 10px; height: 10px; }

.check-icon.accent { background: rgba(0, 229, 255, 0.12); color: var(--accent); }

/* ── How It Works ─────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 42px; left: calc(16.66% + 2rem);
  width: calc(66.66% - 4rem);
  height: 1px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.2;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 28px rgba(255,45,85,0.2);
}

.step-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}
.step-icon-wrap svg { width: 26px; height: 26px; }

.step-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.step-card p  { font-size: 0.875rem; }

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.stars { display: flex; gap: 3px; margin-bottom: 1.1rem; color: #FBBF24; }
.stars svg { width: 16px; height: 16px; fill: currentColor; }

.testimonial-text {
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.72;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  flex-shrink: 0;
}
.av-red    { background: linear-gradient(135deg, #FF2D55, #FF8A9A); }
.av-cyan   { background: linear-gradient(135deg, #00B4D8, #00E5FF); }
.av-purple { background: linear-gradient(135deg, #7B2FFF, #B06FFF); }
.av-gold   { background: linear-gradient(135deg, #D97706, #FBBF24); }

.author-name { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.author-role { font-size: 0.76rem; color: var(--muted); }

/* ── FAQ Section ──────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(255,45,85,0.25); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.025); }

.faq-toggle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,45,85,0.1);
  border: 1px solid rgba(255,45,85,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.faq-toggle svg { width: 14px; height: 14px; }
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}
.faq-answer-inner {
  padding: 1rem 1.5rem 1.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
  border-top: 1px solid var(--border);
}

/* ── CTA Section ──────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) var(--px);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,45,85,0.1) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p  { margin-bottom: 2.75rem; font-size: 1.05rem; }

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding-top: 4.5rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand .nav-logo { margin-bottom: 1.1rem; display: inline-flex; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.72;
  margin-bottom: 1.6rem;
  max-width: 270px;
}

.footer-social { display: flex; gap: 0.7rem; }

.social-link {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(255,45,85,0.1);
  border-color: rgba(255,45,85,0.3);
  color: var(--primary);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.35rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.875rem; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--text); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: inherit; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--text); }

/* Payment strip */
.payment-strip {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.payment-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.payment-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
.payment-icons { display: flex; gap: 0.65rem; align-items: center; flex-wrap: wrap; }
.payment-icon {
  height: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.22rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

/* Footer bottom */
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--text); }

.footer-disclaimer {
  background: rgba(0,229,255,0.025);
  border-top: 1px solid var(--border);
  padding: 1.1rem var(--px);
  text-align: center;
}
.footer-disclaimer p {
  font-size: 0.74rem;
  color: var(--muted);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Reseller Page Specific ───────────────────────────────────── */
.reseller-hero {
  background: linear-gradient(180deg, rgba(0,229,255,0.05) 0%, transparent 70%);
}
.reseller-hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: min(700px, 80vw); height: min(700px, 80vw);
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,229,255,0.08);
}

.benefit-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem;
  color: var(--accent);
}
.benefit-icon svg { width: 28px; height: 28px; }

.benefit-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.benefit-card p  { font-size: 0.875rem; }

/* Reseller Steps */
.reseller-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.reseller-steps::before {
  content: '';
  position: absolute;
  top: 38px; left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0.2;
}

.reseller-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.reseller-step:hover { border-color: rgba(0,229,255,0.2); transform: translateY(-3px); }

.reseller-step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 22px rgba(0,229,255,0.15);
}
.reseller-step h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.reseller-step p  { font-size: 0.82rem; }

/* Panel features grid */
.panel-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.panel-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.panel-feature:hover { border-color: rgba(0,229,255,0.2); }

.panel-feature .check-icon {
  background: rgba(0,229,255,0.1);
  color: var(--accent);
  width: 22px; height: 22px;
  margin-top: 1px;
}

.panel-feature-text h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.panel-feature-text p  { font-size: 0.8rem; }

/* Reseller pricing uses .pricing-card.best-accent */
.pricing-card.best-accent {
  border-color: rgba(0,229,255,0.35);
  background: linear-gradient(175deg, rgba(0,229,255,0.07) 0%, var(--surface) 60%);
  box-shadow: 0 0 0 1px rgba(0,229,255,0.1), 0 20px 60px rgba(0,229,255,0.08);
}

/* ── Animations ───────────────────────────────────────────────── */
@keyframes float-mosaic {
  0%, 100% { transform: perspective(1100px) rotateY(-12deg) rotateX(6deg) translateY(0px); }
  50%       { transform: perspective(1100px) rotateY(-12deg) rotateX(6deg) translateY(-14px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,45,85,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(255,45,85,0); }
}

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

/* Scroll reveal — disabled, all content always visible */
.reveal,
.js-ready .reveal,
.reveal.visible { opacity: 1 !important; transform: none !important; visibility: visible !important; }

/* ── Media Queries ────────────────────────────────────────────── */

/* ≤ 1280px — clamp grid gaps */
@media (max-width: 1280px) {
  .hero-inner { grid-template-columns: 1fr 400px; gap: 3.5rem; }
}

/* ≤ 1024px — tablet landscape */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-visual        { display: none; }
  .hero               { min-height: auto; padding-top: calc(84px + 4rem); }
  .hero-sub           { max-width: 100%; }

  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .devices-grid       { grid-template-columns: repeat(2, 1fr); }
  .channels-grid      { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid       { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { margin: 0; }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }

  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .reseller-steps     { grid-template-columns: repeat(2, 1fr); }
  .reseller-steps::before { display: none; }
  .steps-grid::before { display: none; }
  .steps-grid         { grid-template-columns: 1fr; }
}

/* ≤ 768px — tablet portrait */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }

  /* Reseller panel 2-col section collapses */
  #panel .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }

  .pricing-grid       { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .channels-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .benefits-grid      { grid-template-columns: 1fr; }
  .panel-features     { grid-template-columns: 1fr; }
  .steps-grid         { grid-template-columns: 1fr; gap: 1rem; }
  .reseller-steps     { grid-template-columns: 1fr; gap: 1rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .footer-bottom      { flex-direction: column; text-align: center; }
  .payment-strip-inner { justify-content: center; flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn  { width: 100%; }
  .hero-stats   { gap: 1.5rem; }

  .cta-actions  { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
}

/* ≤ 480px — mobile */
@media (max-width: 480px) {
  :root { --px: 1rem; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }

  .features-grid      { grid-template-columns: 1fr; }
  .devices-grid       { grid-template-columns: 1fr; }
  .channels-grid      { grid-template-columns: 1fr; }

  .pricing-price      { font-size: 3.2rem; }

  .footer-grid        { grid-template-columns: 1fr; }

  .section { padding: clamp(3rem, 7vw, 5rem) 0; }
}

/* ≤ 360px — small phones */
@media (max-width: 360px) {
  .nav-logo-text { font-size: 1.1rem; }
  .hero-stat-value { font-size: 1.3rem; }
}
