/* ============================================================
   NoovaPro Shop — Main Stylesheet v1.0.0
   Design: Dark premium IPTV service
   ============================================================ */

/* ── Google Fonts loaded non-blocking via functions.php ──── */
/* @import removed — preloaded in <head> to eliminate render-blocking */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Background */
  --bg:        #07090f;
  --bg-2:      #0d1117;
  --bg-card:   #111827;
  --bg-card-2: #1a2235;
  --bg-subtle: rgba(255,255,255,0.03);

  /* Brand */
  --primary:    #2563eb;
  --primary-lt: #60a5fa;
  --primary-dk: #1d4ed8;
  --glow:       rgba(37,99,235,0.25);
  --glow-soft:  rgba(37,99,235,0.1);
  --gold:       #f59e0b;
  --gold-lt:    #fcd34d;

  /* Text */
  --text-1: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #64748b;

  /* Border */
  --border:    rgba(255,255,255,0.07);
  --border-md: rgba(255,255,255,0.12);
  --border-blue: rgba(37,99,235,0.25);

  /* Misc */
  --success: #10b981;
  --error:   #ef4444;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-full: 9999px;

  /* Spacing */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px;--sp-16: 64px;--sp-20: 80px;--sp-24: 96px;

  /* Shadow */
  --shadow-sm:  0 1px 4px rgba(0,0,0,.4);
  --shadow-md:  0 4px 20px rgba(0,0,0,.5);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.6);
  --shadow-blue:0 4px 30px rgba(37,99,235,.25);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --t150: 150ms var(--ease);
  --t300: 300ms var(--ease);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; }

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--sp-6); }
.container--wide   { max-width: 1400px; margin: 0 auto; padding: 0 var(--sp-6); }

/* ── Typography ───────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary-lt);
  margin-bottom: var(--sp-4);
}
.section-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--primary-lt); border-radius: 2px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; color: var(--text-1);
  line-height: 1.2; margin-bottom: var(--sp-4);
}
.section-title span { color: var(--primary-lt); }
.section-subtitle {
  font-size: 1.0625rem; color: var(--text-2);
  max-width: 600px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-eyebrow { margin: 0 auto var(--sp-4); }
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--primary-lt) 60%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2); padding: 14px 28px;
  font-size: .9375rem; font-weight: 600; border-radius: var(--r-full);
  border: none; transition: all var(--t300); white-space: nowrap;
  position: relative; overflow: hidden; cursor: pointer;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { background: var(--primary-dk); transform: translateY(-1px); box-shadow: 0 6px 40px rgba(37,99,235,.4); }
.btn--ghost {
  background: rgba(255,255,255,.06);
  color: var(--text-1);
  border: 1px solid var(--border-md);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); transform: translateY(-1px); }
.btn--gold {
  background: var(--gold);
  color: #000;
  font-weight: 700;
}
.btn--gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--primary-lt);
  border: 1.5px solid var(--border-blue);
}
.btn--outline:hover { background: var(--glow-soft); border-color: var(--primary); }
.btn--full { width: 100%; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: .875rem; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Header ───────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all var(--t300);
  padding: 0;
}
#site-header.scrolled {
  background: rgba(7,9,15,.95);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: var(--sp-8);
}
.header-logo {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: 1.375rem; font-weight: 800; color: var(--text-1);
  flex-shrink: 0;
}
.header-logo img, .header-logo svg { height: 36px; width: auto; }
.logo-dot { color: var(--primary-lt); }

.header-nav { display: flex; align-items: center; gap: var(--sp-2); }
.nav-link {
  padding: 8px 14px; border-radius: var(--r-md);
  font-size: .9rem; font-weight: 500; color: var(--text-2);
  transition: all var(--t150);
}
.nav-link:hover, .nav-link.active { color: var(--text-1); background: rgba(255,255,255,.06); }

.header-cta { display: flex; align-items: center; gap: var(--sp-3); }
.trial-badge {
  font-size: .75rem; font-weight: 700; color: var(--success);
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2);
  padding: 4px 10px; border-radius: var(--r-full);
}

/* Mobile Nav */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  color: var(--text-1); transition: background var(--t150);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.mobile-nav {
  display: none; flex-direction: column;
  background: rgba(13,17,23,.98); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  gap: var(--sp-2);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 1rem; padding: 12px 16px; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: var(--sp-3); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
  padding-top: 72px;
}

/* Slider BG */
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 { background: linear-gradient(135deg, #0a0c14 0%, #0d1428 30%, #0a1a3a 60%, #051030 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #0c0a14 0%, #1a0d28 30%, #2a0a3a 60%, #100515 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #080c14 0%, #0d2028 30%, #0a2a2a 60%, #051020 100%); }

/* Animated channel grid in background */
.hero-channel-grid {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden; pointer-events: none;
}
.hero-channel-grid::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 30% 30%, rgba(245,158,11,.05) 0%, transparent 60%);
}
.channel-pill {
  position: absolute;
  padding: 6px 14px; border-radius: var(--r-full);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  animation: pillFloat 8s infinite ease-in-out;
  white-space: nowrap;
}
@keyframes pillFloat {
  0%,100% { transform: translateY(0px); opacity: .4; }
  50% { transform: translateY(-12px); opacity: .7; }
}
.cp-1  { top: 15%; left: 8%;  animation-delay: 0s;   }
.cp-2  { top: 22%; left: 60%; animation-delay: .5s;  }
.cp-3  { top: 35%; left: 78%; animation-delay: 1s;   }
.cp-4  { top: 55%; left: 72%; animation-delay: 1.5s; }
.cp-5  { top: 68%; left: 55%; animation-delay: 2s;   }
.cp-6  { top: 75%; left: 82%; animation-delay: 2.5s; }
.cp-7  { top: 18%; left: 85%; animation-delay: 3s;   }
.cp-8  { top: 42%; left: 88%; animation-delay: 3.5s; }
.cp-9  { top: 80%; left: 10%; animation-delay: 4s;   }
.cp-10 { top: 10%; left: 35%; animation-delay: 4.5s; }
.cp-11 { top: 62%; left: 15%; animation-delay: 5s;   }
.cp-12 { top: 48%; left: 4%;  animation-delay: 5.5s; }

/* Hero overlay gradient */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to right,
    rgba(7,9,15,.95) 0%,
    rgba(7,9,15,.8) 50%,
    rgba(7,9,15,.4) 80%,
    rgba(7,9,15,.6) 100%
  );
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

/* Hero content */
.hero-content {
  position: relative; z-index: 4;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-12); align-items: center;
  padding: var(--sp-16) 0;
  min-height: calc(100vh - 72px);
}
.hero-left { display: flex; flex-direction: column; gap: var(--sp-6); }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 6px 16px; border-radius: var(--r-full);
  background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.25);
  font-size: .8rem; font-weight: 600; color: var(--primary-lt);
  width: fit-content;
}
.hero-badge .badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary-lt);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.02em;
}
.hero-title .line-accent { color: var(--primary-lt); }
.hero-title .line-gold { color: var(--gold); }
.hero-desc {
  font-size: 1.0625rem; color: var(--text-2); line-height: 1.7;
  max-width: 520px;
}
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center;
  font-size: .8125rem; color: var(--text-3);
}
.hero-trust-item { display: flex; align-items: center; gap: 6px; }
.hero-trust-item svg { width: 14px; height: 14px; color: var(--success); flex-shrink: 0; }

/* Hero right — animated screen */
.hero-right {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-screen {
  width: 100%; max-width: 520px; position: relative;
}
.screen-frame {
  background: var(--bg-card-2); border: 1px solid var(--border-md);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(37,99,235,.15);
  aspect-ratio: 16/10;
  position: relative;
}
.screen-bar {
  height: 36px; background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
}
.screen-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.sd-red { background: #ef4444; }
.sd-yellow { background: #f59e0b; }
.sd-green { background: #10b981; }
.screen-body {
  padding: 16px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 10px;
  height: calc(100% - 36px);
}
.screen-channel-card {
  border-radius: var(--r-md); background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  aspect-ratio: 16/9; overflow: hidden; position: relative;
  transition: transform var(--t300);
}
.screen-channel-card:hover { transform: scale(1.03); }
.screen-channel-card .scc-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 4px 8px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.8);
}
.scc-1 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.scc-2 { background: linear-gradient(135deg, #1a2e1a, #162116); }
.scc-3 { background: linear-gradient(135deg, #2e1a1a, #211616); }
.scc-4 { background: linear-gradient(135deg, #2e2e1a, #211e16); }
.scc-5 { background: linear-gradient(135deg, #1a1a2e, #0d1b4b); }
.scc-6 { background: linear-gradient(135deg, #2e1a2e, #1e0d2e); }

/* Hero slider dots */
.hero-dots {
  position: absolute; bottom: var(--sp-8); left: 0; right: 0; z-index: 5;
  display: flex; justify-content: center; gap: var(--sp-2);
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,.2);
  cursor: pointer; transition: all var(--t300); border: none;
}
.hero-dot.active { background: var(--primary); width: 24px; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) 0;
}
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4); text-align: center;
}
.stat-item {}
.stat-number {
  font-size: 1.75rem; font-weight: 800;
  background: linear-gradient(135deg, var(--text-1), var(--primary-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .8rem; color: var(--text-3); margin-top: 2px; font-weight: 500; }

/* ── Section Base ─────────────────────────────────────────── */
.section {
  padding: var(--sp-20) 0;
}
.section--alt { background: var(--bg-2); }
.section--card-bg {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

/* ── Feature Cards (Why Choose) ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--t300);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--glow-soft) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--t300);
}
.feature-card:hover { border-color: var(--border-blue); transform: translateY(-3px); box-shadow: var(--shadow-blue); }
.feature-card:hover::before { opacity: 1; }
.fc-icon {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5); color: var(--primary-lt);
  flex-shrink: 0;
}
.fc-icon svg { width: 24px; height: 24px; }
.fc-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: var(--sp-2); color: var(--text-1); }
.fc-desc { font-size: .875rem; color: var(--text-2); line-height: 1.6; }

/* ── Content Categories ───────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4); margin-top: var(--sp-12);
}
.category-card {
  border-radius: var(--r-xl); overflow: hidden; position: relative;
  aspect-ratio: 16/9; cursor: pointer;
  transition: transform var(--t300), box-shadow var(--t300);
}
.category-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); }
.cat-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.cat-bg-sports  { background: linear-gradient(135deg, #0d2137 0%, #1a4a2e 100%); }
.cat-bg-movies  { background: linear-gradient(135deg, #1a0d2e 0%, #2a0a1a 100%); }
.cat-bg-news    { background: linear-gradient(135deg, #0d1a2e 0%, #0a2237 100%); }
.cat-bg-kids    { background: linear-gradient(135deg, #2e1a0a 0%, #1a2a0a 100%); }
.cat-bg-series  { background: linear-gradient(135deg, #1a0a2e 0%, #2e0a1a 100%); }
.cat-bg-music   { background: linear-gradient(135deg, #0a1a2e 0%, #1a0a37 100%); }

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.cat-icon-wrapper {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%);
  width: 64px; height: 64px; border-radius: var(--r-xl);
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: transform var(--t300);
}
.category-card:hover .cat-icon-wrapper { transform: translate(-50%,-60%) scale(1.1); }
.cat-icon-wrapper svg { width: 28px; height: 28px; }
.cat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--sp-4) var(--sp-5);
}
.cat-name { font-size: 1rem; font-weight: 700; color: #fff; }
.cat-count { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ── Devices Section ──────────────────────────────────────── */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4); margin-top: var(--sp-12);
}
.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-3);
  display: flex; flex-direction: column;
  align-items: center; gap: var(--sp-3); text-align: center;
  transition: all var(--t300);
}
.device-card:hover {
  border-color: var(--border-blue);
  background: var(--bg-card-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.device-icon {
  width: 48px; height: 48px; color: var(--primary-lt);
  flex-shrink: 0;
}
.device-name { font-size: .8125rem; font-weight: 600; color: var(--text-2); }

/* ── How It Works ─────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8); margin-top: var(--sp-12);
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 36px; left: calc(16.666% + 24px); right: calc(16.666% + 24px);
  height: 1px;
  background: linear-gradient(to right, var(--border-blue), rgba(37,99,235,.05), var(--border-blue));
}
.step-card { text-align: center; }
.step-number {
  width: 72px; height: 72px; border-radius: var(--r-full);
  background: rgba(37,99,235,.12); border: 2px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
  font-size: 1.5rem; font-weight: 900; color: var(--primary-lt);
  position: relative; z-index: 1;
}
.step-title { font-size: 1.125rem; font-weight: 700; margin-bottom: var(--sp-2); }
.step-desc { font-size: .875rem; color: var(--text-2); line-height: 1.6; }

/* ── Pricing ──────────────────────────────────────────────── */
.device-tabs {
  display: flex; justify-content: center; gap: var(--sp-2);
  margin: var(--sp-10) 0 var(--sp-8);
  padding: 4px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-full); width: fit-content; margin-left: auto; margin-right: auto;
}
.device-tab {
  padding: 10px 24px; border-radius: var(--r-full);
  font-size: .9rem; font-weight: 600; color: var(--text-2);
  background: transparent; border: none; transition: all var(--t300); cursor: pointer;
}
.device-tab.active { background: var(--primary); color: #fff; box-shadow: var(--shadow-blue); }
.device-tab:not(.active):hover { color: var(--text-1); background: rgba(255,255,255,.06); }

.plans-group { display: none; }
.plans-group.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  max-width: 980px; margin: 0 auto;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--sp-8) var(--sp-8) var(--sp-10);
  position: relative; overflow: hidden;
  transition: all var(--t300);
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card--featured {
  background: linear-gradient(145deg, rgba(37,99,235,.15) 0%, var(--bg-card) 60%);
  border-color: rgba(37,99,235,.4);
  box-shadow: var(--shadow-blue);
}
.plan-card--featured:hover { box-shadow: 0 8px 50px rgba(37,99,235,.35); }

.plan-badge-pill {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  padding: 5px 18px; border-radius: 0 0 var(--r-lg) var(--r-lg);
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--primary); color: #fff;
}
.plan-badge-pill--gold { background: var(--gold); color: #000; }

.plan-duration {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: var(--sp-4);
}
.plan-price-block { margin-bottom: var(--sp-2); }
.plan-price {
  font-size: 2.75rem; font-weight: 900; color: var(--text-1);
  line-height: 1;
}
.plan-price-currency { font-size: 1.5rem; vertical-align: top; margin-top: 6px; display: inline-block; font-weight: 700; }
.plan-per-mo { font-size: .8125rem; color: var(--text-3); margin-bottom: var(--sp-6); }
.plan-divider { height: 1px; background: var(--border); margin: var(--sp-5) 0; }
.plan-features { display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; margin-bottom: var(--sp-8); }
.plan-feature-item {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: .875rem; color: var(--text-2);
}
.plan-feature-item svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

.pricing-note {
  text-align: center; font-size: .8125rem; color: var(--text-3);
  margin-top: var(--sp-8);
  display: flex; justify-content: center; gap: var(--sp-6); flex-wrap: wrap;
}
.pricing-note-item { display: flex; align-items: center; gap: 6px; }
.pricing-note-item svg { width: 14px; height: 14px; color: var(--success); }

/* ── Testimonials ─────────────────────────────────────────── */
.testi-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5); margin-top: var(--sp-12);
}
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: var(--sp-8);
  transition: border-color var(--t300);
}
.testi-card:hover { border-color: var(--border-blue); }
.testi-stars { display: flex; gap: 3px; margin-bottom: var(--sp-4); }
.testi-star { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.testi-quote { font-size: .9375rem; color: var(--text-2); line-height: 1.7; margin-bottom: var(--sp-6); font-style: italic; }
.testi-author { display: flex; align-items: center; gap: var(--sp-3); }
.testi-avatar {
  width: 42px; height: 42px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.av-blue   { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.av-green  { background: linear-gradient(135deg, #059669, #0d9488); }
.av-orange { background: linear-gradient(135deg, #d97706, #dc2626); }
.av-purple { background: linear-gradient(135deg, #7c3aed, #db2777); }
.testi-name { font-size: .9375rem; font-weight: 700; color: var(--text-1); }
.testi-meta { font-size: .8rem; color: var(--text-3); }
.testi-verified {
  margin-left: auto; display: flex; align-items: center; gap: 4px;
  font-size: .75rem; color: var(--success); font-weight: 600;
}
.testi-verified svg { width: 13px; height: 13px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin-top: var(--sp-12); max-width: 820px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-5) 0; background: transparent; border: none; text-align: left;
  font-size: .9375rem; font-weight: 600; color: var(--text-1); gap: var(--sp-4);
  cursor: pointer; transition: color var(--t150);
}
.faq-question:hover { color: var(--primary-lt); }
.faq-chevron {
  width: 20px; height: 20px; color: var(--text-3); flex-shrink: 0;
  transition: transform var(--t300), color var(--t300);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary-lt); }
.faq-item.open .faq-question { color: var(--primary-lt); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t300), padding var(--t300);
}
.faq-answer-inner {
  padding-bottom: var(--sp-5);
  font-size: .9rem; color: var(--text-2); line-height: 1.7;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0f1c3f 0%, #1a0d2e 50%, #0f1c3f 100%);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(37,99,235,.12) 0%, transparent 70%);
}
.cta-banner-inner {
  position: relative; z-index: 1;
  padding: var(--sp-16) 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-6);
}
.cta-banner-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; }
.cta-banner-subtitle { font-size: 1rem; color: var(--text-2); max-width: 500px; }
.cta-banner-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; justify-content: center; }
.cta-trust {
  display: flex; gap: var(--sp-5); flex-wrap: wrap; justify-content: center;
  font-size: .8125rem; color: var(--text-3);
}
.cta-trust-item { display: flex; align-items: center; gap: 5px; }
.cta-trust-item svg { width: 13px; height: 13px; color: var(--success); }

/* ── Footer ───────────────────────────────────────────────── */
#site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border);
}
.footer-brand .header-logo { margin-bottom: var(--sp-4); }
.footer-brand p { font-size: .875rem; color: var(--text-3); line-height: 1.7; max-width: 280px; }
.footer-badges {
  display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-top: var(--sp-4);
}
.footer-badge {
  padding: 4px 12px; border-radius: var(--r-sm);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--text-3);
}
.footer-col-title {
  font-size: .8125rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-link {
  font-size: .875rem; color: var(--text-2); transition: color var(--t150);
}
.footer-link:hover { color: var(--primary-lt); }
.footer-contact-items { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-contact-item { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: .875rem; color: var(--text-2); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary-lt); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-5) 0; flex-wrap: wrap; gap: var(--sp-4);
}
.footer-copy { font-size: .8125rem; color: var(--text-3); }
.footer-legal { display: flex; gap: var(--sp-4); }
.footer-legal a { font-size: .8125rem; color: var(--text-3); transition: color var(--t150); }
.footer-legal a:hover { color: var(--primary-lt); }
.footer-disclaimer {
  font-size: .75rem; color: var(--text-3); line-height: 1.6;
  border-top: 1px solid var(--border); padding: var(--sp-5) 0;
  text-align: center;
}

/* ── Comparison Table ─────────────────────────────────────── */
.ct-wrap { max-width: 860px; margin: var(--sp-12) auto 0; }
.ct-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
}
.ct-head {
  display: grid; grid-template-columns: 1fr 200px 200px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.ct-head__label { font-size: .8rem; font-weight: 700; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; }
.ct-head__col { text-align: center; }
.ct-head__tag {
  display: inline-block; padding: 5px 14px; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 700;
}
.ct-head__tag--grey { background: rgba(255,255,255,.05); color: var(--text-3); border: 1px solid var(--border); }
.ct-head__tag--blue { background: rgba(37,99,235,.15); color: var(--primary-lt); border: 1px solid rgba(37,99,235,.3); }
.ct-row {
  display: grid; grid-template-columns: 1fr 200px 200px;
  border-bottom: 1px solid var(--border); padding: 0;
}
.ct-row:last-child { border-bottom: none; }
.ct-row--highlight { background: rgba(37,99,235,.04); }
.ct-row__label {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 14px 24px; font-size: .875rem; font-weight: 600; color: var(--text-1);
}
.ct-row__icon { font-size: 1rem; }
.ct-row__them, .ct-row__us {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 16px; font-size: .875rem; text-align: center;
  border-left: 1px solid var(--border);
}
.ct-row__them { color: var(--text-3); }
.ct-row__us { font-weight: 600; background: rgba(37,99,235,.04); border-left-color: rgba(37,99,235,.12); }
.ct-check { width: 16px; height: 16px; color: var(--success); }
.ct-cross { width: 16px; height: 16px; color: var(--error); }

/* ── Reseller page ────────────────────────────────────────── */
.reseller-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5);
  margin-top: var(--sp-12);
}
.reseller-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: var(--sp-8);
  text-align: center; transition: all var(--t300);
}
.reseller-card:hover { border-color: var(--border-blue); transform: translateY(-3px); box-shadow: var(--shadow-blue); }
.reseller-icon {
  width: 60px; height: 60px; border-radius: var(--r-xl);
  background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5); color: var(--primary-lt);
}
.reseller-icon svg { width: 28px; height: 28px; }
.reseller-card-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: var(--sp-2); }
.reseller-card-desc { font-size: .875rem; color: var(--text-2); line-height: 1.6; }

.reseller-packages {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5);
  margin-top: var(--sp-12);
}
.reseller-pkg {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: var(--sp-10) var(--sp-8);
  text-align: center; transition: all var(--t300); position: relative;
}
.reseller-pkg:hover { border-color: var(--border-blue); transform: translateY(-3px); box-shadow: var(--shadow-blue); }
.reseller-pkg--featured { border-color: rgba(37,99,235,.4); background: linear-gradient(145deg, rgba(37,99,235,.12) 0%, var(--bg-card) 60%); }
.pkg-name { font-size: 1.125rem; font-weight: 800; margin-bottom: var(--sp-3); }
.pkg-credits { font-size: 2.5rem; font-weight: 900; color: var(--primary-lt); margin-bottom: var(--sp-1); }
.pkg-credits span { font-size: 1rem; color: var(--text-3); font-weight: 500; }
.pkg-price { font-size: 1.75rem; font-weight: 800; margin: var(--sp-3) 0; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); margin: var(--sp-5) 0; text-align: left; }
.pkg-features li { display: flex; align-items: center; gap: var(--sp-2); font-size: .875rem; color: var(--text-2); }
.pkg-features li svg { width: 15px; height: 15px; color: var(--success); flex-shrink: 0; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); margin-top: var(--sp-12); }
.contact-info { display: flex; flex-direction: column; gap: var(--sp-6); }
.contact-info-card {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-5);
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-lt); flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-title { font-size: .875rem; font-weight: 700; margin-bottom: 2px; }
.contact-info-text { font-size: .875rem; color: var(--text-2); }
.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: var(--sp-8);
}
.form-group { margin-bottom: var(--sp-5); }
.form-label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: var(--sp-2); color: var(--text-1); }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border-md);
  border-radius: var(--r-md); padding: 12px 16px;
  font-size: .9375rem; color: var(--text-1); font-family: inherit;
  transition: border-color var(--t150), box-shadow var(--t150);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px var(--glow-soft);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding: calc(72px + var(--sp-16)) 0 var(--sp-12);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero-tag {
  display: inline-block; padding: 5px 14px; border-radius: var(--r-full);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary-lt); background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.2);
  margin-bottom: var(--sp-4);
}

/* ── Channels Page ────────────────────────────────────────── */
.channels-filter {
  display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center;
  margin-top: var(--sp-8);
}
.channel-filter-btn {
  padding: 8px 18px; border-radius: var(--r-full);
  font-size: .875rem; font-weight: 600; color: var(--text-2);
  background: var(--bg-card); border: 1px solid var(--border);
  cursor: pointer; transition: all var(--t150);
}
.channel-filter-btn:hover, .channel-filter-btn.active {
  color: var(--text-1); background: var(--primary); border-color: var(--primary);
}
.channels-section { padding: var(--sp-10) 0; }
.channels-section-title {
  font-size: 1.125rem; font-weight: 700; color: var(--text-1);
  margin-bottom: var(--sp-5); padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: var(--sp-3);
}
.channels-section-title span {
  background: rgba(37,99,235,.12); color: var(--primary-lt);
  font-size: .75rem; padding: 2px 8px; border-radius: var(--r-sm);
}
.channels-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: var(--sp-3);
}
.channel-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--sp-3) var(--sp-4);
  font-size: .8125rem; font-weight: 500; color: var(--text-2);
  display: flex; align-items: center; gap: var(--sp-2);
  transition: all var(--t150);
}
.channel-item:hover { border-color: var(--border-blue); color: var(--text-1); }
.channel-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* ── Single Post ──────────────────────────────────────────── */
.single-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: var(--sp-10);
  padding: var(--sp-10) 0;
}
.single-article { min-width: 0; }
.single-article__hero {
  width: 100%; aspect-ratio: 16/9; border-radius: var(--r-xl);
  overflow: hidden; background: var(--bg-card); margin-bottom: var(--sp-8);
  border: 1px solid var(--border);
}
.single-article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4);
  margin-bottom: var(--sp-5); font-size: .8125rem; color: var(--text-3);
}
.article-cat {
  color: var(--primary-lt); font-weight: 700;
  background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.2);
  padding: 3px 10px; border-radius: var(--r-sm);
}
.article-h1 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: var(--sp-5); }
.article-author {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-bottom: var(--sp-8); padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700; color: #fff;
}
.entry-content { font-size: .9375rem; color: var(--text-2); line-height: 1.75; }
.entry-content h2 { font-size: 1.375rem; font-weight: 800; color: var(--text-1); margin: var(--sp-8) 0 var(--sp-4); }
.entry-content h3 { font-size: 1.125rem; font-weight: 700; color: var(--text-1); margin: var(--sp-6) 0 var(--sp-3); }
.entry-content p { margin-bottom: var(--sp-5); }
.entry-content a { color: var(--primary-lt); border-bottom: 1px solid rgba(96,165,250,.3); transition: border-color var(--t150); }
.entry-content a:hover { border-color: var(--primary-lt); }
.entry-content ul, .entry-content ol { margin: var(--sp-4) 0 var(--sp-5) var(--sp-6); }
.entry-content li { margin-bottom: var(--sp-2); }
.entry-content blockquote {
  border-left: 3px solid var(--primary); padding: var(--sp-4) var(--sp-6);
  margin: var(--sp-6) 0; background: var(--glow-soft); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic; color: var(--text-1);
}
.entry-content code {
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  padding: 2px 6px; border-radius: var(--r-sm); font-size: .875em; color: var(--primary-lt);
}
.entry-content pre { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--sp-5); overflow-x: auto; margin: var(--sp-5) 0; }
.entry-content pre code { background: none; border: none; padding: 0; }

/* ── Sidebar ──────────────────────────────────────────────── */
.single-sidebar { position: sticky; top: 90px; align-self: start; display: flex; flex-direction: column; gap: var(--sp-5); }
.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--sp-6); }
.sidebar-widget-title { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: var(--sp-4); }

/* ── Reveal Animations ────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Utility ──────────────────────────────────────────────── */
.mt-4  { margin-top: var(--sp-4);  }
.mt-8  { margin-top: var(--sp-8);  }
.mt-12 { margin-top: var(--sp-12); }
.mb-8  { margin-bottom: var(--sp-8); }
.gap-4 { gap: var(--sp-4); }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .hero-content { grid-template-columns: 1fr; min-height: auto; padding: var(--sp-12) 0 var(--sp-8); }
  .hero-right { display: none; }
  .hero-left { align-items: flex-start; }
}
@media (max-width: 900px) {
  .plans-group.active { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reseller-grid { grid-template-columns: repeat(2, 1fr); }
  .reseller-packages { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
  .ct-head, .ct-row { grid-template-columns: 1fr 140px 140px; }
  .ct-head__tag { padding: 4px 10px; font-size: .7rem; }
}
@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .plans-group.active { grid-template-columns: 1fr; max-width: 380px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .reseller-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .device-tabs { flex-wrap: wrap; width: auto; border-radius: var(--r-xl); }
  .ct-head, .ct-row { grid-template-columns: 1fr 110px 110px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .ct-head, .ct-row { grid-template-columns: 1fr 90px 90px; }
  .ct-row__label { padding: 12px 14px; font-size: .8rem; }
  .ct-head { padding: 10px 14px; }
  .section { padding: var(--sp-12) 0; }
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.2); }

/* ── Focus ────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--primary-lt); outline-offset: 2px; border-radius: 2px; }

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: var(--sp-4);
  background: var(--primary); color: #fff; padding: 8px 16px;
  border-radius: var(--r-md); font-weight: 600; z-index: 9999;
  transition: top var(--t150);
}
.skip-link:focus { top: var(--sp-4); }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-6);
  color: var(--text-2);
  line-height: 1.8;
}
.legal-updated {
  font-size: .875rem;
  color: var(--text-3);
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  margin: var(--sp-8) 0 var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.legal-page h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  margin: var(--sp-4) 0 var(--sp-2);
}
.legal-page p {
  margin-bottom: var(--sp-4);
}
.legal-page ul {
  margin: 0 0 var(--sp-4) var(--sp-6);
  padding: 0;
}
.legal-page ul li {
  margin-bottom: var(--sp-2);
  padding-left: var(--sp-2);
  position: relative;
}
.legal-page ul li::marker {
  color: var(--primary-lt);
}
.legal-page a {
  color: var(--primary-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page a:hover {
  color: #fff;
}
.legal-page strong {
  color: var(--text-1);
  font-weight: 600;
}