/* ============================
   IPTV Website - Complete Light Theme Design
   All Dark Colors Converted to Light
============================ */

:root {
  /* ===== LIGHT COLOR PALETTE ===== */
  
  /* Primary Backgrounds - Light & Clean */
  --bg-primary: #ffffff;           /* Pure white for main background */
  --bg-secondary: #f8fafc;         /* Very light gray for sections */
  --bg-tertiary: #f1f5f9;          /* Light gray for contrast */
  --bg-card: #ffffff;              /* White cards */
  --bg-card-hover: #f8fafc;        /* Subtle hover state */
  
  /* Text Colors - Dark on Light */
  --text-primary: #0f172a;         /* Dark slate for headings */
  --text-secondary: #334155;       /* Medium slate for body text */
  --text-tertiary: #64748b;        /* Light slate for muted text */
  --text-accent: #0ea5e9;          /* Sky blue for links */
  
  /* Brand Colors - Bright & Vibrant */
  --brand-primary: #3b82f6;        /* Blue */
  --brand-secondary: #8b5cf6;      /* Purple */
  --brand-accent: #10b981;         /* Emerald */
  --brand-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #10b981 100%);
  --brand-gradient-hover: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #059669 100%);
  
  /* Interactive States */
  --hover-bg: #f1f5f9;
  --active-bg: #e2e8f0;
  --focus-ring: #3b82f6;
  
  /* Borders & Shadows */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark: #94a3b8;
  
  /* Shadows - Light & Subtle */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Spacing System */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  
  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================
   IPTV Themed Animations
============================ */

/* Floating Data Lines Animation */
@keyframes dataFlow {
  0% {
    transform: translateX(-100px) translateY(0px);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(calc(100vw + 100px)) translateY(-20px);
    opacity: 0;
  }
}

/* Channel Signal Wave Animation */
@keyframes signalWave {
  0% {
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(1.2) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}

/* TV Screen Flicker Effect */
@keyframes tvFlicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.95;
  }
}

/* Channel Switching Effect */
@keyframes channelSwitch {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  25% {
    transform: translateY(-10px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(0px);
    opacity: 0.9;
  }
  75% {
    transform: translateY(5px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* Signal Bars Animation */
@keyframes signalBars {
  0% {
    height: 20%;
  }
  25% {
    height: 60%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 40%;
  }
  100% {
    height: 20%;
  }
}

/* Floating Channel Icons */
@keyframes floatingChannels {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(2deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Data Stream Background */
.data-stream-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -3;
}

.data-stream-bg::before,
.data-stream-bg::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  animation: dataFlow 8s linear infinite;
}

.data-stream-bg::before {
  top: 20%;
  animation-delay: 0s;
}

.data-stream-bg::after {
  top: 60%;
  animation-delay: 4s;
  background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent);
}

/* Add additional data lines */
.hero::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 0;
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
  animation: dataFlow 6s linear infinite;
  animation-delay: 2s;
  z-index: -3;
}

.hero::after {
  content: '';
  position: absolute;
  top: 80%;
  left: 0;
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--text-accent), transparent);
  animation: dataFlow 10s linear infinite;
  animation-delay: 3s;
  z-index: -3;
}

.floating-channels {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.channel-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  opacity: 0.2;
  animation: floatingChannels 20s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  font-weight: 600;
}

.channel-icon:nth-child(1) { top: 20%; left: 5%; animation-delay: 0s; }
.channel-icon:nth-child(2) { top: 60%; right: 10%; animation-delay: 5s; }
.channel-icon:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 10s; }
.channel-icon:nth-child(4) { bottom: 10%; right: 5%; animation-delay: 15s; }

/* TV Signal Bars */
.tv-signal {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 3px;
  pointer-events: none;
  z-index: -2;
  opacity: 0.4;
}

.signal-bar {
  width: 4px;
  background: var(--brand-primary);
  border-radius: 2px;
  animation: signalBars 2s ease-in-out infinite;
}

.signal-bar:nth-child(1) { animation-delay: 0s; }
.signal-bar:nth-child(2) { animation-delay: 0.2s; }
.signal-bar:nth-child(3) { animation-delay: 0.4s; }
.signal-bar:nth-child(4) { animation-delay: 0.6s; }
.signal-bar:nth-child(5) { animation-delay: 0.8s; }

/* ============================
   Base Styles
============================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-primary);
  color: var(--text-secondary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============================
   Typography
============================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}

h1 { 
  font-size: var(--font-size-5xl); 
  font-weight: 800;
  line-height: 1.1;
}
h2 { 
  font-size: var(--font-size-4xl); 
  font-weight: 700;
}
h3 { 
  font-size: var(--font-size-2xl); 
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.small {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* ============================
   Links & Interactive Elements
============================ */
a {
  color: var(--text-accent);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

a:hover {
  color: var(--brand-primary);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ============================
   Button System
============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease);
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  background: var(--brand-gradient);
  color: #ffffff !important;
  box-shadow: var(--shadow-md);
}

.btn:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: #ffffff !important;
}

.btn-secondary {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: 2px solid var(--brand-primary) !important;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--brand-primary) !important;
  color: white !important;
  border-color: var(--brand-primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(0);
}

/* ============================
   Layout Components
============================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header h2 {
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================
   Header - Light Theme
============================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  margin-bottom: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 800;
  font-size: var(--font-size-xl);
  color: var(--text-primary);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: var(--text-primary);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: var(--font-size-xl);
  color: white;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-normal) var(--ease);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-primary);
  background: rgba(59, 130, 246, 0.05);
  text-decoration: none;
}

/* ============================
   Header Separator - Animated Line
============================ */
.header-separator {
  height: 3px;
  width: 100%;
  background: var(--border-light);
  position: relative;
  overflow: hidden;
}

.animated-line {
  height: 100%;
  width: 100%;
  background: var(--brand-gradient);
  position: relative;
  animation: colorFlow 3s ease-in-out infinite;
}

.animated-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmerLine 2s linear infinite;
}

@keyframes colorFlow {
  0% {
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  }
  33% {
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
  }
  66% {
    background: linear-gradient(90deg, var(--brand-accent), var(--text-accent));
  }
  100% {
    background: linear-gradient(90deg, var(--text-accent), var(--brand-primary));
  }
}

@keyframes shimmerLine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ============================
   Hero Section - Light Theme
============================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-12);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(79, 70, 229, 0.02) 100%);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  margin-top: var(--space-8);
  transform: scale(1.05);
  padding: var(--space-20) 0;
}

.hero-image {
  position: relative;
  height: 500px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
  backdrop-filter: blur(20px);
  animation: morphShape 20s ease-in-out infinite;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  z-index: 3;
  pointer-events: none;
  align-items: center;
  padding-bottom: 8%;
}

/* Custom Trustpilot Badge Styles */
.trustpilot-badge {
  display: flex;
  align-items: center;
  background: #000;
  padding: 6px 10px;
  border-radius: 6px;
  width: fit-content;
  font-family: var(--font-family);
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease);
}

.trustpilot-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.trustpilot-badge .stars {
  display: flex;
  margin-right: 6px;
}

.trustpilot-badge .star {
  width: 20px;
  height: 20px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1px;
  border-radius: 3px;
  transition: transform var(--duration-fast) var(--ease);
}

.trustpilot-badge:hover .star {
  transform: scale(1.05);
}

.trustpilot-badge .star svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

.trustpilot-badge .text {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.trustpilot-badge .trustpilot {
  color: #00b67a;
  font-weight: bold;
  margin-left: 3px;
  display: inline-flex;
  align-items: center;
}

.trustpilot-badge .trustpilot svg {
  width: 12px;
  height: 12px;
  margin-right: 3px;
}

/* HD Quality Badge */
.hd-quality-badge {
  position: absolute; 
  top: -40px;
  right: 60px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transform: scale(0.3) translateZ(-50px);
  transition: all var(--duration-slow) var(--ease);
  box-shadow: 
    0 0 20px rgba(220, 38, 38, 0.3),
    0 0 40px rgba(220, 38, 38, 0.2),
    inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.hd-text {
  color: white;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

/* Hover Animation */
.hero-image:hover .hd-quality-badge {
  opacity: 1;
  transform: scale(1) translateZ(0px);
  z-index: 10;
  animation: hdGlow 2s ease-in-out infinite alternate;
}

/* Glowing Animation */
@keyframes hdGlow {
  0% {
    box-shadow: 
      0 0 20px rgba(220, 38, 38, 0.4),
      0 0 40px rgba(220, 38, 38, 0.3),
      0 0 60px rgba(220, 38, 38, 0.2),
      inset 0 2px 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 
      0 0 30px rgba(220, 38, 38, 0.6),
      0 0 60px rgba(220, 38, 38, 0.4),
      0 0 90px rgba(220, 38, 38, 0.3),
      0 0 120px rgba(220, 38, 38, 0.1),
      inset 0 2px 10px rgba(255, 255, 255, 0.3);
  }
}

/* Image Decorations */
.image-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.decoration-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  right: 10%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
  animation-delay: 0s;
}

.decoration-2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent);
  animation-delay: 2s;
}

.decoration-line {
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
  top: 60%;
  right: 5%;
  transform: rotate(45deg);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: rotate(45deg) scaleX(1);
  }
  50% {
    opacity: 0.8;
    transform: rotate(45deg) scaleX(1.5);
  }
}

/* Organic Shape Morphing Animation */
@keyframes morphShape {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translateY(0) scale(1);
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translateY(-2px) scale(1.005);
  }
  50% {
    border-radius: 70% 30% 60% 40% / 30% 70% 40% 50%;
    transform: translateY(0) scale(1);
  }
  75% {
    border-radius: 40% 70% 30% 60% / 60% 40% 70% 30%;
    transform: translateY(-2px) scale(1.005);
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translateY(0) scale(1);
  }
}

.hero-content h1 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.hero-content p {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

/* Hero Features Section */
.hero-features {
  padding: var(--space-16) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  text-align: left;
  padding: var(--space-6);
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease);
}

.hero-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary);
}

.hero-feature-item .hero-feature-icon {
  font-size: var(--font-size-2xl);
  width: 48px;
  height: 48px;
  background: var(--brand-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.hero-feature-content strong {
  color: var(--text-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-1);
  line-height: 1.3;
}

.hero-feature-content p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  margin: 0;
  line-height: 1.4;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.badge {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--brand-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero Card - Light Theme */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  animation: streamingPulse 6s ease-in-out infinite;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.hero-feature-icon {
  font-size: var(--font-size-2xl);
  width: 40px;
  height: 40px;
  background: var(--brand-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.hero-feature strong {
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-1);
}

.note {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--brand-accent);
  text-align: center;
  margin-bottom: var(--space-6);
}

/* ============================
   Features - Light Theme
============================ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-6);
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
  border-radius: var(--radius-lg);
  filter: blur(0.5px);
}

.feature .feature-icon,
.feature h3,
.feature p {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.feature::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  animation: channelFloat 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-xl);
  background: var(--bg-card-hover);
}

.feature-icon {
  font-size: var(--font-size-3xl);
  width: 64px;
  height: 64px;
  background: var(--brand-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  animation: streamingPulse 3s ease-in-out infinite;
  border-radius: 50%;
}

.feature h3 {
  color: var(--text-primary);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

.feature p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* ============================
   TrustPilot Reviews Section - Light Theme
============================ */
.trustpilot-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.trustpilot-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.trustpilot-logo {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.trustpilot-brand {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: #00b67a;
  letter-spacing: -0.5px;
}

.trustpilot-stars {
  display: flex;
  gap: 2px;
}

.trustpilot-stars .star {
  color: #00b67a;
  font-size: var(--font-size-lg);
  font-weight: 900;
}

.trustpilot-rating {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

/* Reviews Carousel */
.reviews-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: var(--space-8);
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px; /* Space for navigation buttons */
}

/* Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav svg {
  width: 20px;
  height: 20px;
}

.carousel-nav-prev {
  left: 10px;
}

.carousel-nav-next {
  right: 10px;
}

.reviews-carousel {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 300%; /* 3 slides total */
  gap: 0;
  padding: 0 20px;
}

.review-card {
  flex: 0 0 calc(50% - 20px); /* 2 cards per slide */
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin: 0 10px; /* Equal margins on both sides */
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00b67a, var(--brand-primary));
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-base);
  box-shadow: var(--shadow-sm);
}

.reviewer-details h4 {
  margin: 0;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-primary);
}

.review-date {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars .star {
  color: #ffd700;
  font-size: var(--font-size-lg);
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.review-stars .star.gray {
  color: var(--border-medium);
}

.review-content h5 {
  margin: 0 0 var(--space-3) 0;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
}

.review-content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.review-footer {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}

.review-verified {
  font-size: var(--font-size-sm);
  color: #00b67a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Carousel Navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-6);
  padding: 0 var(--space-4);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  border-color: var(--primary);
  transform: scale(1.2);
}

.dot.active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.3);
}

/* Tablet and Mobile Responsive */
@media (max-width: 768px) {
  .reviews-carousel-container {
    padding: 0 60px; /* Smaller padding for mobile */
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
  
  .carousel-nav-prev {
    left: 5px;
  }
  
  .carousel-nav-next {
    right: 5px;
  }
  
  .reviews-carousel {
    padding: 0 10px;
  }
  
  .review-card {
    flex: 0 0 calc(50% - 15px);
    padding: var(--space-4);
    margin: 0 7.5px;
    min-height: 250px;
  }
  
  .carousel-dots {
    margin-top: var(--space-4);
    gap: 8px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .reviews-carousel-container {
    padding: 0 50px;
  }
  
  .carousel-nav {
    width: 35px;
    height: 35px;
  }
  
  .carousel-nav svg {
    width: 16px;
    height: 16px;
  }
  
  .review-card {
    flex: 0 0 calc(50% - 10px);
    margin: 0 5px;
    padding: 16px;
    font-size: 14px;
    min-height: 220px;
  }
  
  .review-card h5 {
    font-size: 16px;
  }
}

.reviews-cta {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.reviews-count {
  font-size: var(--font-size-xl);
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

/* Responsive Reviews */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-4);
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .review-card {
    padding: var(--space-4);
  }
  
  .trustpilot-header {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
  
  .trustpilot-logo {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .review-header {
    flex-direction: column;
    gap: var(--space-3);
    align-items: flex-start;
  }
}

/* ============================
   Plans - Light Theme
============================ */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  max-width: 1400px;
  margin: 0 auto;
}

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease);
  position: relative;
  text-align: center;
}

.plan:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-primary);
}

.plan-popular {
  border: 2px solid var(--brand-primary);
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), var(--bg-card));
  padding-top: var(--space-12);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.plan-popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

/* ============================
   Reseller Banner - Light Theme
============================ */
.reseller-banner {
  margin-top: var(--space-12);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.reseller-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmerBanner 3s linear infinite;
}

@keyframes shimmerBanner {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.reseller-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.reseller-text {
  color: white;
  font-size: var(--font-size-xl);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-reseller {
  background: white !important;
  color: var(--brand-primary) !important;
  border: 2px solid white !important;
  padding: var(--space-4) var(--space-8);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease);
}

.btn-reseller:hover {
  background: var(--bg-card) !important;
  color: var(--brand-primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  text-decoration: none;
}

.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-gradient);
  color: white;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 10;
}

.plan-header {
  margin-bottom: var(--space-6);
}

.plan h3 {
  font-size: var(--font-size-2xl);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  font-size: 24px;
  font-weight: 700;
}

.price {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: var(--space-2);
}

.price span {
  font-size: var(--font-size-lg);
  color: var(--text-tertiary);
  font-weight: 400;
}

.plan ul {
  list-style: none;
  margin: var(--space-6) 0;
  text-align: left;
}

.plan ul li {
  padding: var(--space-3) 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border-bottom: 1px solid var(--border-light);
}

.plan ul li:last-child {
  border-bottom: none;
}

.plan ul li::before {
  content: "✓";
  color: var(--brand-accent);
  font-weight: 700;
  font-size: var(--font-size-lg);
}

/* ============================
   Enhanced Plan Animations
============================ */
.plan:hover .plan-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.1) 50%, transparent 70%);
  animation: signalFlow 2s linear infinite;
}

.plan-header {
  margin-bottom: var(--space-6);
  position: relative;
  overflow: hidden;
}

/* Plans Page Specific Styles */

/* Plan Duration Selector */
.plan-selector {
  display: flex;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.plan-btn {
  padding: var(--space-2) var(--space-4);
  border: 2px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-secondary);
  border-radius: var(--radius-lg);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease);
  min-width: 100px;
}

.plan-btn:hover {
  border-color: var(--border-medium);
  background: var(--bg-secondary);
  color: var(--brand-primary);
  transform: translateY(-2px);
}

.plan-btn.active {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

/* Pricing Grid */
.pricing-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.pricing-grid.show {
  display: grid;
  animation: fadeInUp 0.5s ease-out;
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--duration-normal) var(--ease);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s;
}

.pricing-card:hover::before {
  left: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-medium);
}

.pricing-card.popular {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-secondary));
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.pricing-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.pricing-card .price {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: var(--space-4);
}

.pricing-card .price span {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  text-align: left;
}

.pricing-card ul li {
  padding: var(--space-2) 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  font-size: var(--font-size-base);
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--brand-accent);
  font-weight: bold;
  margin-right: var(--space-2);
  font-size: var(--font-size-lg);
}

.pricing-card .btn {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--brand-primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all var(--duration-normal) var(--ease);
}

.pricing-card .btn:hover {
  background: var(--brand-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin: var(--space-6) 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-4);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
  font-weight: 600;
  position: sticky;
  top: 0;
}

.comparison-table th:first-child {
  text-align: left;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.comparison-table tr:hover {
  background: var(--bg-secondary);
}

/* Guarantee Section */
.guarantee-content {
  text-align: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.1));
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
}

.guarantee-content h2 {
  color: var(--brand-accent);
  margin-bottom: var(--space-4);
}

.guarantee-features {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--brand-accent);
  font-weight: 500;
}

.guarantee-item .check-icon {
  background: var(--brand-accent);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .plan-selector {
    gap: var(--space-2);
  }
  
  .plan-btn {
    min-width: 80px;
    padding: var(--space-2) var(--space-3);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
  
  .guarantee-features {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================
   Category Cards - Light Theme
============================ */
.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease);
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-primary);
}

.category-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(59, 130, 246, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease);
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-icon {
  font-size: var(--font-size-4xl);
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  animation: float 3s ease-in-out infinite;
}

.category-content {
  padding: var(--space-6);
}

.category-content h3 {
  color: var(--text-primary);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.category-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Devices Section */
.devices-section {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(168, 85, 247, 0.02) 100%);
  border-radius: var(--border-radius-lg);
  padding: var(--space-20) var(--space-8);
}

.devices-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.devices-info h2 {
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  font-weight: 700;
}

.devices-info p {
  color: var(--muted);
  margin-bottom: var(--space-8);
  font-size: 1.1rem;
  line-height: 1.6;
}

.device-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.2;
}

.device-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-point {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-primary);
  font-weight: 500;
  display: block;
  margin-top: 8px;
}

.check-icon {
  color: #10b981;
  font-weight: 700;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  font-size: 0.9rem;
}

.devices-grid {
  flex: 1;
}

.devices-grid h2 {
  margin-bottom: var(--space-4);
  text-align: center;
  color: var(--text-primary);
  font-weight: 600;
}

.devices-grid p {
  text-align: center;
  color: var(--muted);
  margin-bottom: var(--space-6);
  font-size: 1rem;
}

.devices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: center;
  justify-items: center;
}

.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  padding: var(--space-6);
  border-radius: 12px;
  min-width: calc(100% - var(--space-6));
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-right: 24px;
  width: calc(50% - 12px);
  transition: all 0.3s ease;
  scroll-snap-align: start;
  text-align: center;
  width: 100%;
  height: 120px;
}

.device:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.device::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  transition: left 0.6s ease;
}

.device:hover::before {
  left: 100%;
}

.device-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-icon svg {
  width: 40px;
  height: 40px;
  stroke: #2563eb;
  fill: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-icon svg [fill] {
  fill: #dbeafe;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.device:hover .device-icon svg {
  stroke: #1d4ed8;
  transform: scale(1.1);
}

.device:hover .device-icon svg [fill] {
  fill: #bfdbfe;
}

.device span {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  margin-top: var(--space-2);
  line-height: 1.2;
}

/* Responsive Design for Devices Section */
@media (max-width: 768px) {
  .devices-two-column {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .device-stats {
    grid-template-columns: 1fr;
  }
  
  .devices {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

/* Trial Section */
.section-highlight {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.trial-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.08;
}

.trial-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}

.trial-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-8);
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.trial-content h2 {
  font-size: var(--font-size-4xl);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.trial-content p {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-10);
}

/* ============================
   FAQ - Light Theme
============================ */
.faq-container {
  display: grid;
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  width: 100%;
  padding: var(--space-6);
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  transition: all var(--duration-fast) var(--ease);
  position: relative;
}

.faq-question:hover {
  background: var(--hover-bg);
}

.faq-question:focus {
  outline: 2px solid var(--focus-ring);
  outline-offset: -2px;
}

.faq-question h3 {
  color: var(--text-primary);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  transition: all var(--duration-normal) var(--ease);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease);
  background: rgba(59, 130, 246, 0.02);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  border-top-color: var(--border-light);
}

.faq-content {
  padding: var(--space-6);
  padding-top: var(--space-4);
}

.faq-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: var(--font-size-base);
}

/* Enhanced animations for better UX */
.faq-question::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gradient);
  transition: width var(--duration-normal) var(--ease);
}

.faq-item.active .faq-question::after {
  width: 100%;
}

/* Responsive FAQ design */
@media (max-width: 768px) {
  .faq-question {
    padding: var(--space-4);
  }
  
  .faq-question h3 {
    font-size: var(--font-size-base);
  }
  
  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: var(--font-size-lg);
  }
  
  .faq-content {
    padding: var(--space-4);
  }
}

/* ============================
   CTA Section - Light Theme
============================ */
.section-cta {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: var(--font-size-5xl);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.cta-content p {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-12);
}

/* ============================
   Footer - Light Theme
============================ */
footer {
  background: linear-gradient(135deg, 
    var(--brand-primary) 0%, 
    var(--brand-secondary) 50%, 
    var(--brand-accent) 100%
  );
  border-top: 3px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-24) 0 var(--space-12);
  position: relative;
  overflow: hidden;
  color: white;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: footerShimmer 4s linear infinite;
}

@keyframes footerShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

footer::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: footerFloat 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes footerFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.5; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
  position: relative;
  z-index: 2;
}

.footer-brand {
  position: relative;
}

.footer-brand .brand {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all var(--duration-normal) var(--ease);
}

.footer-brand .brand:hover {
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  color: white !important;
  text-decoration: none;
}

.footer-brand .brand-logo {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.footer-brand .brand:hover .brand-logo {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.footer-brand .small {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
  font-size: var(--font-size-base);
}

.footer-links h3 {
  color: white;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-full);
  transition: width var(--duration-normal) var(--ease);
}

.footer-links:hover h3::after {
  width: 60px;
  background: rgba(255, 255, 255, 0.9);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: var(--space-3);
  transform: translateX(0);
  transition: all var(--duration-fast) var(--ease);
}

.footer-links ul li:hover {
  transform: translateX(8px);
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 500;
  transition: all var(--duration-fast) var(--ease);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
}

.footer-links ul li a:hover {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.footer-links ul li a::before {
  content: '▶';
  position: absolute;
  left: -20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--duration-fast) var(--ease);
  color: var(--brand-accent);
  font-size: var(--font-size-sm);
}

.footer-links ul li:hover a::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-8);
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom .small {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-base);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced Footer Animations */
.footer-links {
  position: relative;
}

.footer-links::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%
  );
  border-radius: var(--radius-full);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease);
}

.footer-links:hover::before {
  opacity: 1;
}

/* Responsive Footer Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: var(--space-6);
  }
}

@media (max-width: 768px) {
  footer {
    padding: var(--space-16) 0 var(--space-8);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }
  
  .footer-brand {
    grid-column: auto;
  }
  
  .footer-links h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links:hover h3::after {
    width: 80px;
  }
  
  .footer-links ul li a::before {
    display: none;
  }
  
  .footer-links ul li:hover {
    transform: translateY(-2px);
  }
}