/* OTT Premium — Design System v3.0 | Premium human-crafted streaming */

/* ===== VARIABLES ===== */
:root {
  --bg: #080815;
  --bg2: #0c0c1f;
  --surface: rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.09);
  --border-hover: rgba(124,58,237,0.45);
  --primary: #7c3aed;
  --primary-hover: #6d28d9;
  --primary-light: rgba(124,58,237,0.12);
  --primary-glow: rgba(124,58,237,0.25);
  --gold: #e8a020;
  --gold-hover: #d49018;
  --gold-glow: rgba(232,160,32,0.25);
  --text: #f0f0fa;
  --muted: #7878a0;
  --green: #22c55e;
  --red: #ef4444;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
table { border-collapse: collapse; width: 100%; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.3rem); }
h4 { font-size: 1.05rem; }
p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }
.lead { font-size: 1.1rem; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-white { color: #fff; }
.fw-bold { font-weight: 700; }
.fs-sm { font-size: 0.875rem; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-hero { padding: 7rem 0 5rem; }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Flex */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }

/* Spacing */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-5{margin-top:3rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}.mb-5{margin-bottom:3rem}

/* ===== EYEBROW / LABEL ===== */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ===== AMBIENT BACKGROUND ANIMATION ===== */
@keyframes orb-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(60px, -40px) scale(1.08); }
  66%  { transform: translate(-30px, 50px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orb-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-70px, 30px) scale(1.1); }
  70%  { transform: translate(40px, -60px) scale(0.92); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orb-drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(50px, 70px) scale(1.06); }
  100% { transform: translate(0, 0) scale(1); }
}
.bg-ambient {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); will-change: transform;
}
.bg-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: orb-drift-1 22s ease-in-out infinite;
}
.bg-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.13) 0%, transparent 70%);
  top: 40%; right: -120px;
  animation: orb-drift-2 28s ease-in-out infinite;
}
.bg-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%);
  bottom: -100px; left: 35%;
  animation: orb-drift-3 35s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .bg-orb { animation: none; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 1rem;
  height: 68px; display: flex; align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,8,21,0.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.navbar.scrolled::before {
  background: rgba(8,8,21,0.92);
  border-bottom-color: rgba(255,255,255,0.1);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  position: relative; z-index: 1;
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; gap: 2px; }
.logo-ott {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 60%, #6d28d9 100%);
  color: #fff; font-weight: 900; font-size: 0.82rem;
  letter-spacing: 3px; padding: 5px 10px; border-radius: 7px; text-transform: uppercase;
  box-shadow: 0 0 16px rgba(124,58,237,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.logo-sep {
  width: 1px; height: 18px; background: rgba(255,255,255,0.12); margin: 0 10px;
}
.logo-name {
  font-size: 0.95rem; font-weight: 700; color: var(--text); letter-spacing: 0.01em;
  line-height: 1;
}
.logo-name em { font-style: normal; color: var(--gold); }
/* legacy logo-premium kept for footer */
.logo-premium { color: var(--text); font-weight: 600; font-size: 1rem; padding-left: 8px; letter-spacing: 0.3px; }
.logo-premium span { color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-link {
  position: relative;
  display: block; padding: 0.45rem 0.8rem;
  color: rgba(240,240,250,0.6); font-size: 0.84rem; font-weight: 500;
  white-space: nowrap; letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  border-radius: 2px; transition: left 0.2s, right 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { left: 0.8rem; right: 0.8rem; }
.nav-link.active { color: var(--text); }
.nav-cta { margin-left: 0.75rem; }
.nav-cta .btn-gold {
  background: linear-gradient(135deg, var(--gold), #f0b030);
  box-shadow: 0 4px 14px rgba(232,160,32,0.3);
  border: none;
}
.nav-cta .btn-gold:hover {
  background: linear-gradient(135deg, #f0b030, var(--gold));
  box-shadow: 0 6px 20px rgba(232,160,32,0.45);
  color: #080815;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 9px;
  border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer; position: relative; z-index: 1;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.5rem; border-radius: 10px; font-weight: 600;
  font-size: 0.9rem; cursor: pointer; border: 1px solid transparent; white-space: nowrap; line-height: 1.4;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); color: #fff; border-color: var(--primary-hover); }
.btn-gold { background: var(--gold); color: #080815; border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-hover); color: #080815; border-color: var(--gold-hover); }
.btn-outline { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.15); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 0.85rem 2.25rem; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.8rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; border: 1px solid;
}
.badge-primary { background: var(--primary-light); color: #a78bfa; border-color: rgba(124,58,237,0.25); }
.badge-green { background: rgba(34,197,94,0.1); color: var(--green); border-color: rgba(34,197,94,0.25); }
.badge-gold { background: rgba(232,160,32,0.1); color: var(--gold); border-color: rgba(232,160,32,0.25); }
.badge-muted { background: rgba(255,255,255,0.05); color: var(--muted); border-color: var(--border); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header .label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* ===== HERO (legacy, kept for inner pages) ===== */
.hero {
  padding: 9rem 0 6rem;
  background:
    radial-gradient(ellipse 90% 70% at 15% 50%, rgba(124,58,237,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(168,85,247,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 60% 95%, rgba(20,184,166,0.07) 0%, transparent 60%),
    var(--bg);
}
.hero-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.75rem; }
.hero h1 { text-align: center; margin-bottom: 1.25rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.hero-sub { text-align: center; font-size: 1.15rem; color: var(--muted); max-width: 580px; margin: 0 auto 2.5rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  max-width: 680px; margin: 0 auto; overflow: hidden;
}
.hero-stat {
  text-align: center; padding: 1.5rem 2rem; flex: 1; min-width: 130px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong { display: block; font-size: 1.9rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.hero-stat:nth-child(3) strong { color: var(--gold); }
.hero-stat span { font-size: 0.78rem; color: var(--muted); }

/* ===== IMAGE-BASED HERO ===== */
.hero-visual {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,8,21,0.97) 0%, rgba(8,8,21,0.82) 55%, rgba(8,8,21,0.35) 100%),
              linear-gradient(to top, rgba(8,8,21,1) 0%, transparent 35%);
}
.hero-visual-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 6rem;
  max-width: 680px;
}
.hero-visual-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-visual-content h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-visual-sub {
  font-size: 1.15rem;
  color: rgba(240,240,250,0.75);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-trust-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-trust-item span {
  font-size: 0.78rem;
  color: rgba(240,240,250,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-trust-item:nth-child(3) strong { color: var(--gold); }

/* ===== SPLIT SECTIONS ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-section.reverse > :first-child { order: 2; }
.split-section.reverse > :last-child { order: 1; }
.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-visual-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(8,8,21,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.split-visual-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.split-text h2 { margin-bottom: 1rem; }
.split-text p { margin-bottom: 1.25rem; }
.check-list { margin: 1.5rem 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li svg { flex-shrink: 0; margin-top: 2px; }

/* ===== CINEMATIC FULL-BLEED ===== */
.cinematic {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8rem 0;
}
.cinematic-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,21,0.78);
}
.cinematic-content {
  position: relative;
  z-index: 1;
}
.cinematic-content h2 { color: #fff; margin-bottom: 1rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cinematic-content p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.1rem; }

/* ===== IMAGE CARDS ===== */
.img-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.img-card:hover { border-color: var(--border-hover); }
.img-card-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.img-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.img-card-body h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.img-card-body p { font-size: 0.875rem; flex: 1; margin-bottom: 1rem; }
.img-card-meta { font-size: 0.78rem; color: var(--muted); margin-top: auto; }

/* ===== CARD ICONS ===== */
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.card-icon svg { width: 22px; height: 22px; stroke-width: 1.75; fill: none; }
.ci-primary { background: var(--primary-light); }
.ci-primary svg { stroke: #a78bfa; }
.ci-gold { background: rgba(232,160,32,0.12); }
.ci-gold svg { stroke: var(--gold); }
.ci-green { background: rgba(34,197,94,0.1); }
.ci-green svg { stroke: var(--green); }
.ci-teal { background: rgba(20,184,166,0.1); }
.ci-teal svg { stroke: #2dd4bf; }
.ci-rose { background: rgba(244,63,94,0.1); }
.ci-rose svg { stroke: #fb7185; }
.ci-amber { background: rgba(245,158,11,0.1); }
.ci-amber svg { stroke: #fbbf24; }

/* ===== CARDS ===== */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.card:hover { border-color: var(--border-hover); }
.card-title { font-size: 1.15rem; margin-bottom: 0.75rem; }

/* ===== PRICING CARDS ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; position: relative;
  display: flex; flex-direction: column;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.pricing-card:hover { border-color: var(--border-hover); }
.pricing-card.featured {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 0 60px rgba(124,58,237,0.18), 0 0 120px rgba(124,58,237,0.07);
}
.pricing-featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #a855f7);
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 0.25rem 1rem; border-radius: 100px; white-space: nowrap; letter-spacing: 0.5px;
}
.pricing-name { font-size: 0.78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.75rem; }
.pricing-card.featured .pricing-name { color: #a78bfa; }
.pricing-price { display: flex; align-items: flex-end; gap: 0.25rem; margin-bottom: 0.5rem; }
.pricing-price .amount { font-size: 2.75rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.pricing-price .currency { font-size: 1.1rem; font-weight: 700; color: var(--muted); margin-bottom: 0.6rem; }
.pricing-price .period { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.45rem; }
.pricing-desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.pricing-features { flex: 1; margin-bottom: 2rem; }
.pricing-feature {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0; font-size: 0.875rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature svg { width: 15px; height: 15px; stroke: var(--green); fill: none; flex-shrink: 0; stroke-width: 2.5; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.feature-item:hover { border-color: var(--border-hover); }
.feature-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
.feature-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-item p { font-size: 0.875rem; margin: 0; }

/* ===== STEPS / HOW-TO ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), #a855f7);
  color: #fff; font-weight: 800; font-size: 1.1rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; }
.steps-numbered { counter-reset: step; }
.step-item {
  padding: 1.5rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 1rem; display: flex; gap: 1.25rem;
  backdrop-filter: blur(8px);
}
.step-item:last-child { margin-bottom: 0; }
.step-num-box {
  flex-shrink: 0; width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), #a855f7);
  color: #fff; font-weight: 800; font-size: 0.9rem;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.step-content h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.step-content p { font-size: 0.875rem; }

/* ===== TESTIMONIALS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.review-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 3px; }
.review-text { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.25rem; font-style: italic; line-height: 1.7; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #a855f7);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 0.9rem; flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.review-author-info strong { display: block; font-size: 0.9rem; color: var(--text); }
.review-author-info span { font-size: 0.78rem; color: var(--muted); }

/* Rating summary */
.rating-summary {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
}
.rating-big { font-size: 4rem; font-weight: 800; color: var(--text); line-height: 1; letter-spacing: -0.03em; }
.rating-stars-big { font-size: 1.4rem; color: #fbbf24; margin: 0.5rem 0; letter-spacing: 3px; }
.rating-count { color: var(--muted); font-size: 0.875rem; }
.rating-bars { max-width: 280px; margin: 1.5rem auto 0; }
.rating-bar-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; font-size: 0.8rem; color: var(--muted); }
.rating-bar-track { flex: 1; height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: #fbbf24; border-radius: 3px; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; background: none; border: none;
  color: var(--text); font-size: 1rem; font-weight: 600; cursor: pointer; text-align: left; gap: 1rem;
}
.faq-question:hover { color: #a78bfa; }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1.5px solid rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--muted); font-weight: 400; line-height: 1;
}
.faq-answer { display: none; padding: 0 0 1.25rem; color: var(--muted); font-size: 0.9rem; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { border-color: var(--primary); color: #a78bfa; }

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap { overflow-x: auto; }
.compare-table { min-width: 640px; }
.compare-table th {
  background: rgba(255,255,255,0.05); color: var(--text); font-weight: 700;
  padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.875rem;
}
.compare-table th.highlight { background: var(--primary-light); color: #a78bfa; }
.compare-table td { padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--border); font-size: 0.875rem; color: var(--muted); }
.compare-table td.highlight { background: rgba(124,58,237,0.06); color: var(--text); font-weight: 600; }
.compare-table tr:hover td { background: rgba(255,255,255,0.025); }
.check { color: var(--green); }
.cross { color: var(--red); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--text); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #3b0764 0%, #4c1d95 40%, #6d28d9 100%);
  border-radius: var(--radius-lg); padding: 4rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(232,160,32,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; position: relative; }
.cta-section .btn-gold { box-shadow: 0 4px 24px rgba(232,160,32,0.4); }

/* ===== DEVICE ICONS ===== */
.devices-grid { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.device-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 100px;
  backdrop-filter: blur(8px); cursor: default;
}
.device-item:hover { border-color: var(--border-hover); }
.device-item svg { width: 30px; height: 30px; stroke: #a78bfa; fill: none; stroke-width: 1.5; }
.device-item span { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

/* ===== APP CARDS ===== */
.app-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column; backdrop-filter: blur(8px);
}
.app-card:hover { border-color: var(--border-hover); }
.app-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1rem;
}
.app-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.app-card p { font-size: 0.875rem; flex: 1; }
.app-platforms { display: flex; gap: 0.4rem; flex-wrap: wrap; margin: 0.75rem 0 1rem; }
.app-rating { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }
.app-rating span { color: #fbbf24; }

/* ===== PROBLEM/SOLUTION ===== */
.problem-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.problem-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem; backdrop-filter: blur(8px);
}
.problem-card .problem-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.problem-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.problem-card .solution-steps { margin-top: 1rem; }
.problem-card .solution-steps li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.85rem; color: var(--muted); padding: 0.35rem 0;
}
.problem-card .solution-steps li::before { content: "→"; color: #a78bfa; flex-shrink: 0; margin-top: 1px; }

/* ===== ALERT/STATUS ===== */
.alert {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.875rem;
}
.alert-success { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); }
.alert-warning { background: rgba(232,160,32,0.08); border: 1px solid rgba(232,160,32,0.2); color: var(--gold); }
.alert-info { background: var(--primary-light); border: 1px solid rgba(124,58,237,0.2); }
.alert-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.alert-content { color: var(--text); }
.alert-content strong { color: inherit; }

/* ===== CODE BLOCK ===== */
.code-block {
  background: rgba(0,0,0,0.45); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  font-family: 'Courier New', Courier, monospace; font-size: 0.875rem;
  color: #7dd3fc; overflow-x: auto; margin: 1rem 0;
}

/* ===== BLOG ===== */
.article-header { padding: 6rem 0 3rem; }
.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.article-meta span { font-size: 0.8rem; color: var(--muted); }
.article-body h2 { margin: 2.5rem 0 1rem; }
.article-body h3 { margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { color: var(--muted); margin-bottom: 0.5rem; font-size: 0.95rem; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-toc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0;
}
.article-toc h4 { margin-bottom: 1rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.article-toc ol { padding-left: 1.25rem; }
.article-toc li { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.4rem; }
.article-toc a { color: #a78bfa; }
.snippet-box {
  background: rgba(124,58,237,0.07); border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.snippet-box p { color: var(--text); font-size: 0.95rem; }

/* ===== PAYMENT ===== */
.payment-methods { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.25rem 0; }
.payment-badge {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.8rem; color: var(--muted);
}
.payment-badge .pm-icon { font-size: 1.1rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon {
  width: 44px; height: 44px; background: var(--primary-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}

/* ===== WHATSAPP HELP BAND ===== */
.wa-help-band {
  background: linear-gradient(135deg, rgba(37,211,102,.07) 0%, rgba(37,211,102,.03) 100%);
  border-top: 1px solid rgba(37,211,102,.15);
  border-bottom: 1px solid rgba(37,211,102,.12);
  padding: 2rem 0;
}
.wa-help-inner {
  display: flex; align-items: center; gap: 1.5rem;
}
.wa-help-icon {
  width: 56px; height: 56px; background: rgba(37,211,102,.12); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-help-body { flex: 1; }
.wa-help-title { font-weight: 700; font-size: 1.05rem; margin: 0 0 .2rem; }
.wa-help-sub { color: var(--muted); font-size: .875rem; margin: 0; }
.wa-help-actions { display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; flex-shrink: 0; }
.btn-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25d366; color: #fff; font-weight: 700; font-size: .9rem;
  padding: .6rem 1.25rem; border-radius: 8px; text-decoration: none;
  white-space: nowrap; transition: background .2s, transform .15s;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); text-decoration: none; color: #fff; }
.wa-help-modes {
  display: flex; gap: 1rem;
}
.wa-help-modes span {
  display: flex; align-items: center; gap: .3rem;
  font-size: .75rem; color: var(--muted);
}
@media(max-width: 768px){
  .wa-help-inner { flex-direction: column; align-items: flex-start; }
  .wa-help-actions { align-items: flex-start; }
  .wa-help-modes { flex-wrap: wrap; gap: .6rem; }
}

/* ===== FOOTER ===== */
.footer {
  background: #04040f; border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; color: var(--muted); margin: 1rem 0; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--muted); font-size: 0.875rem; }
.footer-col a:hover { color: #a78bfa; }
.footer-contact p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; display: flex; gap: 0.5rem; align-items: center; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); margin: 0; }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 0.8rem; color: var(--muted); }
.footer-legal a:hover { color: #a78bfa; }

/* ===== PURCHASE POPUP ===== */
@keyframes pp-slide-in {
  from { transform: translateY(20px) translateX(-8px); opacity: 0; }
  to   { transform: translateY(0) translateX(0); opacity: 1; }
}
@keyframes pp-slide-out {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(12px); opacity: 0; }
}
#purchase-popup {
  position: fixed; bottom: 5.5rem; left: 1.25rem; z-index: 9998;
  width: 290px; pointer-events: none; opacity: 0;
}
#purchase-popup.pp-visible {
  pointer-events: auto; opacity: 1;
  animation: pp-slide-in 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
#purchase-popup:not(.pp-visible) {
  animation: pp-slide-out 0.3s ease forwards;
}
.pp-inner {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(12,12,31,0.94); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
  padding: 0.85rem 1rem; box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.15);
  position: relative;
}
.pp-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid rgba(124,58,237,0.4); object-fit: cover;
}
.pp-body { flex: 1; min-width: 0; }
.pp-name { font-size: 0.82rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pp-city { font-weight: 400; color: var(--muted); font-size: 0.78rem; }
.pp-action { font-size: 0.78rem; color: var(--muted); margin: 1px 0; }
.pp-plan { font-size: 0.78rem; font-weight: 700; }
.pp-close {
  position: absolute; top: 0.5rem; right: 0.6rem;
  width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.08);
  color: var(--muted); font-size: 0.85rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; padding: 0;
}
.pp-close:hover { background: rgba(255,255,255,0.15); color: var(--text); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 56px; height: 56px; background: #25d366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35); cursor: pointer;
}
.whatsapp-btn:hover { background: #1fb855; color: #fff; }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ===== STATUS INDICATOR ===== */
.status-indicator { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.status-dot.offline { background: var(--red); }

/* ===== DIVIDER ===== */
.divider { height: 1px; background: var(--border); margin: 2.5rem 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-section.reverse > :first-child { order: 0; }
  .split-section.reverse > :last-child { order: 0; }
  .split-visual { aspect-ratio: 16/9; }
  .hero-trust { gap: 1.5rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 6.5rem 0 3.5rem; }
  .hero-visual-content h1 { font-size: 2rem; }
  .cinematic { padding: 5rem 0; }
  .nav-menu {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(8,8,21,0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 1rem 0;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 0.75rem 1.5rem; border-radius: 0; }
  .nav-link::after { display: none; }
  .nav-cta { margin: 0.5rem 1.5rem; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .problem-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stat { padding: 1.25rem 1rem; }
  .hero-stat strong { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.75rem; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .pricing-card { padding: 1.5rem; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-trust { gap: 1.25rem; }
  .hero-trust-item strong { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-orb { animation: none !important; }
  #purchase-popup, #purchase-popup.pp-visible, #purchase-popup:not(.pp-visible) { animation: none !important; }
}
