/*
Theme Name: Daak-Pro
Theme URI: https://daakpro.com/
Author: Daak Team
Author URI: https://daakpro.com/
Description: Ultra-lightweight, SEO-optimized IPTV WordPress theme. Modern 2026 design, blazing fast performance, conversion-focused. No page builders, pure performance.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: daak-pro
Tags: iptv, streaming, business, responsive, modern, lightweight, seo-optimized, custom-menu, featured-images
*/

/* ========================================
   CSS VARIABLES - 2026 Modern Design
   ======================================== */
:root {
  /* Colors - Modern Vonwik Style */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #8b5cf6;
  --accent: #06b6d4;
  --dark: #0f172a;
  --darker: #020617;
  --light: #ffffff;
  --white: #ffffff;
  --text-dark: #1e293b;
  --text-light: #f1f5f9;
  --text-gray: #475569;
  --border: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --bg-light: #f8fafc;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  --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: 2rem;
  --font-size-4xl: 2.5rem;
  
  /* Effects */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-colored: 0 10px 40px -10px rgba(99, 102, 241, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
  :root {
    --light: #0f172a;
    --white: #1e293b;
    --text-dark: #f1f5f9;
    --border: #475569;
  }
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 85px !important;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-wide {
  max-width: 1400px;
}

.container-narrow {
  max-width: 800px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px -10px rgba(99, 102, 241, 0.5);
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--font-size-lg);
}

/* ========================================
   HEADER - LEVTRAX STYLE - FIXED POSITION
   ======================================== */
header.site-header,
header.levtrax-header,
.site-header,
.levtrax-header {
  background: rgba(255, 255, 255, 0.95) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  margin: 0 !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

/* Logo Styles */
.site-branding {
  flex-shrink: 0;
}

.site-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  color: var(--text-dark);
}

.logo-img {
  max-height: 60px;
  width: auto;
  height: auto;
  transition: var(--transition);
  object-fit: contain;
}

.site-logo:hover {
  color: var(--primary);
}

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

/* Logo Mobile Responsive */
@media (max-width: 768px) {
  .logo-img {
    max-height: 50px;
  }
  
  .site-logo {
    font-size: 1.5rem;
  }
}

/* Navigation - Center */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.main-nav a:hover {
  color: var(--primary);
}

/* Active Menu Item - Underline */
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav li:first-child > a {
  color: var(--primary);
}

.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after,
.main-nav li:first-child > a::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

/* Discount Button - Right */
.header-cta {
  flex-shrink: 0;
}

.btn-discount {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: var(--shadow-colored);
  position: relative;
  overflow: hidden;
}

.btn-discount::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  opacity: 0;
  transition: var(--transition);
}

.btn-discount:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px -10px rgba(99, 102, 241, 0.5);
  color: var(--white);
}

.btn-discount:hover::before {
  opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: var(--space-md);
    display: none;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  .main-nav li {
    border-bottom: 1px solid var(--border);
  }
  
  .main-nav li:last-child {
    border-bottom: none;
  }
  
  .main-nav a {
    display: block;
    padding: 1rem 0;
  }
  
  .main-nav .current-menu-item > a::after,
  .main-nav .current_page_item > a::after,
  .main-nav li:first-child > a::after {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
}

/* ========================================
   HEADER - LEVTRAX STYLE
   ======================================== */
.hero-levtrax {
  background: #ffffff;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  font-weight: 800;
  color: var(--text-dark);
}

.brand-highlight {
  color: var(--primary);
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.hero-description {
  font-size: var(--font-size-base);
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

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

.devices-showcase {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.cyan-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.9;
}

.devices-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Fallback if no image - REMOVED ICONS */
.devices-showcase::after {
  content: '';
  display: none;
}

/* Old Hero Styles (for other pages) */
.hero:not(.hero-levtrax) {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--text-light);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero:not(.hero-levtrax)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero:not(.hero-levtrax) h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
  font-weight: 800;
}

.hero:not(.hero-levtrax) p {
  font-size: var(--font-size-base);
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: var(--transition);
}

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

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

.pricing-card {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-xl) var(--space-lg);
  background: #ffffff;
  border: 2px solid #e8e8f5;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
  border-color: var(--primary-light);
}

.pricing-card.featured {
  border-color: var(--primary);
  border-width: 3px;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.25), 0 0 0 1px rgba(99, 102, 241, 0.1);
  transform: scale(1.03);
  z-index: 10;
  position: relative;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.15;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 15px 50px rgba(99, 102, 241, 0.35);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 0.5rem 1.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
  }
  50% {
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.7);
  }
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: var(--space-sm);
  margin-top: 0;
}

.pricing-price {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: var(--space-md) 0 var(--space-xs);
  line-height: 1;
  letter-spacing: -1px;
}

.pricing-period {
  font-size: 0.85rem;
  color: #5a5a6e;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-lg);
}

.pricing-features {
  list-style: none;
  margin: 0 0 var(--space-xl);
  text-align: left;
  flex-grow: 1;
  padding: 0;
}

.pricing-features li {
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: #2d3748;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: auto;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ========================================
   GRID SYSTEM
   ======================================== */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (min-width: 1024px) {
  .grid-pricing {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-pricing {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .grid-pricing {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 400px;
    margin: 0 auto;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .pricing-badge {
    font-size: 0.75rem;
    padding: 0.45rem 1.5rem;
  }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--space-2xl) 0;
  background: #ffffff;
}

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

.section-dark {
  background: #ffffff;
  color: var(--text-dark);
}

/* ========================================
   FOOTER - LEVTRAX STYLE
   ======================================== */
.site-footer {
  background: #000000;
  color: #ffffff;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: var(--space-md);
}

.footer-brand-name {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

.footer-menu li {
  margin-bottom: var(--space-sm);
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  display: inline-block;
}

.footer-menu a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom .footer-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

.footer-bottom .footer-link:hover {
  color: var(--primary);
}

/* ========================================
   FORMS
   ======================================== */
input, textarea, select {
  width: 100%;
  padding: 0.875rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-group {
  margin-bottom: var(--space-md);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.hidden { display: none; }
.block { display: block; }

/* ========================================
   EASY TO USE SECTION
   ======================================== */
.section-easy {
  background: #ffffff;
}

.easy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

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

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

.easy-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.easy-content h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-lg);
}

.easy-content p {
  color: var(--text-gray);
  line-height: 1.6;
}

.easy-image {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-mockup {
  max-width: 85%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.devices-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
}

.devices-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  object-fit: contain;
}

/* Responsive image sizing */
@media (max-width: 1200px) {
  .tv-mockup {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .tv-mockup {
    max-width: 100%;
  }
}

/* ========================================
   SPORTS VOD SECTION
   ======================================== */
.sports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.laptop-mockup {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.floating-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem;
}

.content-item {
  font-size: 4rem;
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.content-item:nth-child(2) {
  animation-delay: 0.5s;
}

.content-item:nth-child(3) {
  animation-delay: 1s;
}

.content-item:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

.sports-feature h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-lg);
}

.sports-feature p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* ========================================
   STEPS SECTION
   ======================================== */
.steps-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-check {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-colored);
}

.step-content h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.step-content p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: var(--font-size-base);
}

.steps-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-image .devices-showcase {
  max-width: 500px;
}

/* Responsive */
@media (max-width: 968px) {
  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .steps-image {
    order: -1;
  }
}

/* ========================================
   FAQ SECTION - Professional Accordion
   ======================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 2px solid #e8e8f5;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1e293b;
  background: transparent;
  border: none;
  text-align: left;
  transition: var(--transition);
}

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

.faq-icon {
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-md);
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  color: #64748b;
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.95rem;
  }
  
  .faq-icon {
    font-size: 1.5rem;
  }
  
  .faq-answer {
    padding: 0 var(--space-lg);
  }
  
  .faq-item.active .faq-answer {
    padding: 0 var(--space-lg) var(--space-md);
  }
}

/* ========================================
   INSTALLATION PAGE - Tabbed Design
   ======================================== */
.device-tabs {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  padding: var(--space-md) 0;
}

.device-tab {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
  white-space: nowrap;
}

.device-tab:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.device-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.installation-content {
  max-width: 900px;
  margin: 0 auto;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

.install-card {
  background: #ffffff;
  border: 2px solid #e8e8f5;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.install-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid #e8e8f5;
}

.install-step {
  padding: var(--space-md) 0;
  color: #2d3748;
  line-height: 1.8;
  font-size: 1rem;
}

.install-step strong {
  color: #1e293b;
  font-weight: 600;
}

.install-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
}

.install-link:hover {
  text-decoration: underline;
}

.install-note {
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
}

.install-note strong {
  display: block;
  margin-bottom: var(--space-sm);
  color: #1e293b;
  font-size: 1.05rem;
}

.install-note ol {
  margin: var(--space-sm) 0 0 var(--space-lg);
  padding: 0;
}

.install-note li {
  padding: 0.25rem 0;
  color: #475569;
}

/* Installation Page Mobile Responsive */
@media (max-width: 768px) {
  .device-tabs {
    gap: 0.5rem;
    padding: var(--space-sm) 0;
  }
  
  .device-tab {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .install-card {
    padding: var(--space-lg);
  }
  
  .install-title {
    font-size: 1.25rem;
  }
  
  .install-step {
    font-size: 0.95rem;
  }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* Mobile positioning */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-card {
  text-align: center;
  padding: var(--space-xl);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: #ffc107;
}

.testimonial-card h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.testimonial-card p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: var(--space-sm);
}

.author-info {
  text-align: left;
}

.author-info strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.author-info span {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.text-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.text-link:hover {
  color: var(--primary-dark);
}

/* ========================================
   FEATURE CARDS & LEGACY
   ======================================== */
.feature-card {
  text-align: center;
  transition: var(--transition);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-lg);
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  :root {
    --space-3xl: 2rem;
    --space-2xl: 1.5rem;
    --space-xl: 1.5rem;
  }
  
  .hero, .hero-levtrax {
    padding: var(--space-lg) 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .hero-image {
    order: -1;
    margin-bottom: var(--space-md);
  }
  
  .hero-text {
    text-align: center;
    order: 1;
  }
  
  .brand-highlight {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .cyan-circle {
    width: 250px;
    height: 250px;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .grid {
    gap: var(--space-md);
  }
  
  .easy-grid {
    grid-template-columns: 1fr;
  }
  
  .sports-grid {
    grid-template-columns: 1fr;
  }
  
  .sports-image {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu a:hover {
    transform: none;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--font-size-sm);
}

.breadcrumbs ul {
  display: flex;
  gap: var(--space-xs);
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumbs li::after {
  content: '/';
  margin-left: var(--space-xs);
  color: var(--text-gray);
}

.breadcrumbs li:last-child::after {
  display: none;
}

/* ========================================
   ACCORDION (Pure CSS)
   ======================================== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.accordion-header {
  background: #ffffff;
  padding: var(--space-md);
  cursor: pointer;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-input {
  display: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content-inner {
  padding: var(--space-md);
  background: #ffffff;
}

.accordion-input:checked ~ .accordion-content {
  max-height: 1000px;
}

.accordion-input:checked ~ .accordion-header::after {
  content: '−';
}

/* ========================================
   TABLE
   ======================================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
}

th, td {
  padding: var(--space-sm);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: #f8fafc;
  font-weight: 600;
}

tr:hover {
  background: #f8fafc;
}

@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
  }
}

/* ========================================
   FINAL HEADER FIX - OVERRIDE ALL
   ======================================== */
header[class*="header"] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
}

/* Ensure body has padding for fixed header */
body {
  padding-top: 85px !important;
}

html body {
  padding-top: 85px !important;
}
