/* ========================================
   WizTV UK - Premium IPTV Design System
   2026 Neo-Glassmorphism Theme
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Brand Colors */
  --cyan: #00e5ff;
  --cyan-light: #67ffff;
  --cyan-dark: #00b2cc;
  --cyan-glow: rgba(0, 229, 255, 0.3);
  --cyan-subtle: rgba(0, 229, 255, 0.08);

  /* Backgrounds */
  --bg-primary: #07080f;
  --bg-secondary: #0c0e1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);

  /* Borders */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 229, 255, 0.2);

  /* Spacing */
  --section-pad: clamp(40px, 5vw, 80px);
  --container-max: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.text-center { text-align: center; }
.text-cyan { color: var(--cyan); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle.centered {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--cyan-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* ---------- Glass Cards ---------- */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
}

.glass:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glow);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-med);
}

.navbar.scrolled {
  background: rgba(7, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.nav-logo:hover .logo-icon {
  transform: scale(1.05);
}

.nav-logo {
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-trial {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  contain: strict;
  will-change: contents;
}

/* Diagonal light beams */
.hero-beam {
  position: absolute;
  width: 200%;
  height: 2px;
  top: 50%;
  left: -50%;
  opacity: 0;
}

.hero-beam:nth-child(1) {
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 30%, transparent 60%);
  transform: rotate(-35deg) translateY(-200px);
  animation: hero-beam-sweep 8s ease-in-out infinite;
  filter: blur(1px);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6), 0 0 60px rgba(0, 229, 255, 0.3);
}

.hero-beam:nth-child(2) {
  background: linear-gradient(90deg, transparent 0%, #007cf0 40%, transparent 70%);
  transform: rotate(-35deg) translateY(100px);
  animation: hero-beam-sweep 10s ease-in-out 2s infinite;
  filter: blur(2px);
  box-shadow: 0 0 30px rgba(0, 124, 240, 0.5), 0 0 80px rgba(0, 124, 240, 0.2);
}

.hero-beam:nth-child(3) {
  background: linear-gradient(90deg, transparent 0%, var(--cyan-light) 50%, transparent 80%);
  transform: rotate(-35deg) translateY(350px);
  animation: hero-beam-sweep 12s ease-in-out 4s infinite;
  filter: blur(1.5px);
  box-shadow: 0 0 15px rgba(103, 255, 255, 0.4);
}

/* Floating glow ribbons */
.hero-ribbon {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-ribbon:nth-child(4) {
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.18), transparent 70%);
  top: -15%;
  left: -10%;
  animation: hero-ribbon-1 15s ease-in-out infinite;
}

.hero-ribbon:nth-child(5) {
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 124, 240, 0.15), transparent 70%);
  bottom: -10%;
  right: -10%;
  animation: hero-ribbon-2 18s ease-in-out infinite;
}

.hero-ribbon:nth-child(6) {
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(103, 255, 255, 0.1), transparent 70%);
  top: 40%;
  left: 50%;
  animation: hero-ribbon-3 12s ease-in-out infinite;
}

/* Diagonal mesh */
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -35deg,
      transparent,
      transparent 80px,
      rgba(0, 229, 255, 0.03) 80px,
      rgba(0, 229, 255, 0.03) 81px
    );
  animation: hero-mesh-shift 20s linear infinite;
}

/* Rotating spiral — hidden on mobile for performance */
.hero-spiral {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  margin: -400px 0 0 -400px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 229, 255, 0.12) 30deg,
    transparent 60deg,
    rgba(0, 124, 240, 0.08) 120deg,
    transparent 150deg,
    rgba(103, 255, 255, 0.06) 210deg,
    transparent 240deg,
    rgba(0, 229, 255, 0.1) 300deg,
    transparent 330deg
  );
  filter: blur(50px);
  animation: hero-spiral-rotate 30s linear infinite;
  opacity: 0.7;
}

/* Floating particles */
.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan);
}

.hero-particle:nth-child(9) {
  top: 15%;
  left: 20%;
  box-shadow: 0 0 8px var(--cyan), 0 0 20px rgba(0, 229, 255, 0.4);
  animation: hero-p1 6s ease-in-out infinite;
}

.hero-particle:nth-child(10) {
  top: 70%;
  left: 75%;
  box-shadow: 0 0 8px #007cf0, 0 0 20px rgba(0, 124, 240, 0.4);
  animation: hero-p2 8s ease-in-out 1s infinite;
}

.hero-particle:nth-child(11) {
  top: 35%;
  left: 85%;
  width: 2px;
  height: 2px;
  box-shadow: 0 0 6px var(--cyan-light), 0 0 15px rgba(103, 255, 255, 0.3);
  animation: hero-p3 7s ease-in-out 2s infinite;
}

.hero-particle:nth-child(12) {
  top: 80%;
  left: 30%;
  width: 2px;
  height: 2px;
  box-shadow: 0 0 6px var(--cyan), 0 0 15px rgba(0, 229, 255, 0.3);
  animation: hero-p1 9s ease-in-out 3s infinite;
}

.hero-particle:nth-child(13) {
  top: 50%;
  left: 10%;
  box-shadow: 0 0 8px #007cf0, 0 0 20px rgba(0, 124, 240, 0.4);
  animation: hero-p2 5s ease-in-out 0.5s infinite;
}

/* Hero vortex keyframes */
@keyframes hero-beam-sweep {
  0% { opacity: 0; transform: rotate(-35deg) translateY(-200px) translateX(-120%); }
  15% { opacity: 0.8; }
  85% { opacity: 0.8; }
  100% { opacity: 0; transform: rotate(-35deg) translateY(-200px) translateX(120%); }
}

@keyframes hero-ribbon-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(100px, 80px) scale(1.2); opacity: 1; }
}

@keyframes hero-ribbon-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-80px, -60px) scale(1.15); opacity: 0.9; }
}

@keyframes hero-ribbon-3 {
  0%, 100% { transform: translate(0, 0) scale(0.8); opacity: 0.4; }
  50% { transform: translate(-60px, 40px) scale(1.1); opacity: 0.8; }
}

@keyframes hero-mesh-shift {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(81px) translateY(81px); }
}

@keyframes hero-spiral-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes hero-p1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  25% { transform: translate(30px, -40px); opacity: 1; }
  50% { transform: translate(60px, -80px); opacity: 0.6; }
  75% { transform: translate(30px, -40px); opacity: 1; }
}

@keyframes hero-p2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  33% { transform: translate(-40px, -50px); opacity: 1; }
  66% { transform: translate(-20px, -25px); opacity: 0.5; }
}

@keyframes hero-p3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(-50px, 30px); opacity: 1; }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 100%;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-image > img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  display: block;
  position: relative;
  z-index: 1;
  transform: rotateY(-8deg) rotateX(2deg);
  transform-origin: center center;
  transition: transform 0.4s ease;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.4),
              -5px 5px 20px rgba(0, 0, 0, 0.3),
              0 0 40px rgba(0, 229, 255, 0.06);
}

.hero-image:hover > img {
  transform: rotateY(-2deg) rotateX(1deg) scale(1.02);
}

.hero-image-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
}

/* ---------- Logo Strip (infinite scroll) ---------- */
.logo-strip {
  width: 100%;
  overflow: hidden;
  margin: 48px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-strip-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  will-change: transform;
}

.logo-strip-track img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(15, 15, 30, 0.5);
  border: 1px solid rgba(0, 229, 255, 0.1);
  padding: 10px;
  opacity: 0.75;
}

/* ---------- Movie Carousel ---------- */
.movie-carousel-section {
  padding: 80px 0 60px;
}

.movie-carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.movie-carousel-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.movie-carousel-track img {
  width: 280px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--cyan-subtle);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 28px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-payments {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-payments-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.03em;
  margin-right: 4px;
}

.hero-payments img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 14px 18px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: all var(--transition-med);
}

.hero-trust-item:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.hero-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--bg-secondary);
  padding: 28px 20px;
  text-align: center;
  transition: background var(--transition-fast);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- Features Section ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  padding: 28px 24px;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--cyan-subtle);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 1.3rem;
  transition: all var(--transition-med);
}

.feature-card:hover .feature-icon {
  background: rgba(0, 229, 255, 0.15);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- Pricing Section ---------- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.pricing-toggle span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.pricing-toggle span.active {
  color: var(--text-primary);
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--cyan);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  padding: 32px 28px;
  transition: all var(--transition-med);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card.featured {
  border-color: var(--border-glow);
  background: rgba(0, 229, 255, 0.03);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--cyan);
  color: var(--bg-primary);
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-duration {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
}

.pricing-price .amount {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-per {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* ---------- Devices Section ---------- */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.device-card {
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition-med);
}

.device-card:hover {
  transform: translateY(-4px);
}

.device-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--cyan);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.device-card:hover .device-icon {
  opacity: 1;
}

.device-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.device-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(33.33% / 2);
  right: calc(33.33% / 2);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), var(--border-glow), transparent);
}

.step-card {
  text-align: center;
  padding: 0 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cyan-subtle);
  border: 1px solid rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cyan);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- FAQ Section ---------- */
.faq-list {
  max-width: 760px;
  margin: 32px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-glass);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--cyan);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med), padding var(--transition-med);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box {
  padding: 56px 36px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.07;
  pointer-events: none;
}

.cta-section h2 {
  position: relative;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-size: 1.05rem;
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 520px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-contact-row a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-contact-row a:hover {
  color: var(--cyan);
}

.footer-contact-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.footer-main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-main-nav a {
  font-size: 0.9rem;
  color: var(--cyan);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-main-nav a:hover {
  color: var(--cyan-light);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--cyan);
}

.footer-nav .sep {
  color: var(--text-muted);
  font-size: 0.75rem;
  user-select: none;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--border-glass);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.contact-card svg {
  width: 32px;
  height: 32px;
  color: var(--cyan);
}

.contact-card h3 {
  font-size: 1rem;
  margin: 0;
}

.contact-card a {
  color: var(--cyan);
  font-size: 0.95rem;
  word-break: break-all;
}

.contact-card a:hover {
  color: var(--cyan-light);
}

/* (footer contact/legal styles removed — using new single-column footer) */

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 20px 0;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  min-width: 280px;
}

.cookie-inner p a {
  color: var(--cyan);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* Reveal classes kept as no-ops for markup compatibility */
.reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 {}

/* ---------- Keyframes ---------- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* ---------- Page Header (Inner Pages) ---------- */
.page-header {
  padding: 120px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.05;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--cyan);
}

.breadcrumb .sep {
  font-size: 0.7rem;
}

/* ---------- Content Pages ---------- */
.page-content {
  padding-bottom: var(--section-pad);
}

.page-content .content-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
}

.page-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
}

.page-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.page-content ul, .page-content ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

.page-content li {
  color: var(--text-secondary);
  padding: 4px 0;
  line-height: 1.7;
  list-style: disc;
}

.page-content ol li {
  list-style: decimal;
}

.page-content a {
  color: var(--cyan);
  transition: opacity var(--transition-fast);
}

.page-content a:hover {
  opacity: 0.8;
}

/* ---------- Reviews Summary ---------- */
.reviews-summary {
  margin-top: 20px;
}

.reviews-stars-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.reviews-rating-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-left: 12px;
}

/* ---------- Reviews Page ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  padding: 32px 28px;
  transition: all var(--transition-med);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #fbbf24;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- Guides Page ---------- */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.guide-card {
  padding: 32px 28px;
  transition: all var(--transition-med);
  display: flex;
  align-items: start;
  gap: 20px;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

.guide-icon {
  width: 48px;
  height: 48px;
  background: var(--cyan-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}

.guide-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.guide-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ---------- Checkout ---------- */
.checkout-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.checkout-step {
  margin-bottom: 36px;
}

.checkout-step h2 {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.checkout-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checkout-plan {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.checkout-plan input[type="radio"] {
  accent-color: var(--cyan);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkout-plan .plan-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-plan .plan-info strong {
  font-size: 0.95rem;
}

.checkout-plan .plan-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.checkout-plan .plan-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
  white-space: nowrap;
}

.checkout-plan:hover {
  border-color: var(--border-glow);
  background: var(--bg-glass-hover);
}

.checkout-plan.selected {
  border-color: var(--cyan);
  background: var(--cyan-subtle);
}

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.field-hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.field-group input {
  padding: 12px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast);
}

.field-group input::placeholder {
  color: var(--text-muted);
}

.field-group input:focus {
  border-color: var(--cyan);
}

.checkout-error {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff6b6b;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.checkout-submit {
  width: 100%;
  margin-top: 8px;
}

.checkout-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Sidebar */
.checkout-sidebar {
  position: sticky;
  top: 100px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.checkout-sidebar h3 {
  font-size: 1rem;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 8px 0;
}

.summary-row span {
  color: var(--text-secondary);
}

.summary-divider {
  height: 1px;
  background: var(--border-glass);
  margin: 8px 0;
}

.summary-total {
  font-size: 1.1rem;
}

.summary-total strong {
  color: var(--cyan);
  font-size: 1.2rem;
}

.summary-includes {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-glass);
}

.summary-includes li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.summary-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.5;
}

/* Thank You */
.checkout-thankyou {
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-box {
  text-align: center;
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 229, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thankyou-icon svg {
  width: 32px;
  height: 32px;
  color: var(--cyan);
}

.thankyou-box h2 {
  margin-bottom: 12px;
}

.thankyou-order-id {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.thankyou-order-id strong {
  color: var(--cyan);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.thankyou-instructions {
  background: var(--bg-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 28px;
}

.thankyou-instructions p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.order-id-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.order-id-row strong {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
}

.copy-btn {
  font-size: 0.75rem;
  padding: 6px 14px;
}

.thankyou-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  margin-bottom: 12px;
}

.thankyou-wa:hover {
  background: #1fb855;
  border-color: #1fb855;
  color: #fff;
}

.thankyou-wa svg {
  fill: #fff;
}

.thankyou-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.thankyou-summary {
  text-align: left;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

.thankyou-summary .summary-row {
  font-size: 0.85rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .checkout-wrap { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { max-width: 500px; margin: 40px auto 0; }
  .hero-trust { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 8, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 24px;
    gap: 16px;
  }

  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  .hero-image { max-width: 400px; margin: 32px auto 0; }
  .hero-desc { max-width: 100%; }
  .hero-payments { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { grid-template-columns: 1fr 1fr; justify-items: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }

  .movie-carousel-track img { width: calc(50vw - 28px); height: auto; }
  .logo-strip-track img { width: 60px; height: 60px; }
  .logo-strip-track { gap: 30px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-plans { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; text-align: center; }
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ---------- Performance: reduce GPU paint on mobile ---------- */
@media (max-width: 768px) {
  .hero-spiral,
  .hero-mesh,
  .hero-beam,
  .hero-particle {
    display: none;
  }
  .hero-ribbon {
    animation: none;
  }
}

/* ---------- Accessibility: respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
