/* ==========================================================================
   CLE IPTV PREMIUM STYLESHEET (GLASSMORPHIC CYBER-STREAM THEME)
   ========================================================================== */

/* --- Design Tokens & CSS Custom Properties --- */
:root {
    /* Color Palette (HSL Tailored for vibrant cosmic theme) */
    --color-bg: #050508;
    --color-bg-card: rgba(15, 15, 23, 0.6);
    --color-bg-card-hover: rgba(20, 20, 32, 0.85);
    --color-nav: rgba(5, 5, 8, 0.85);
    
    --color-text-main: #FFFFFF;
    --color-text-muted: #8E8EA8;
    --color-text-light: #E2E2EC;
    
    /* Primary brand neon glow */
    --color-cyan: #00F2FE;
    --color-cyan-rgb: 0, 242, 254;
    --color-purple: #9B51E0;
    --color-purple-rgb: 155, 81, 224;
    --color-pink: #FF2E93;
    --color-gold: #FFB800;
    --color-green: #10B981;
    
    /* Sleek borders & separators */
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-active: rgba(0, 242, 254, 0.3);
    
    /* Font Families */
    --font-headings: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing Scale */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 80px;
    --space-xxl: 120px;
    
    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    
    /* Blur intensities */
    --blur-normal: 16px;
    --blur-heavy: 30px;
    
    /* Transits */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-headings);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: var(--space-xs);
}

p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* --- High-End CSS Utilities & Visual Effects --- */
.gradient-text-primary {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 60%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--blur-normal));
    -webkit-backdrop-filter: blur(var(--blur-normal));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(0, 242, 254, 0.05);
    transform: translateY(-6px);
}

/* Cosmic Ambient Background Glows */
.cosmic-glow-wrapper {
    position: relative;
}

.cosmic-glow-1 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(155, 81, 224, 0.05) 50%, rgba(0,0,0,0) 100%);
    border-radius: var(--radius-full);
    filter: blur(var(--blur-heavy));
    pointer-events: none;
    z-index: 0;
}

.cosmic-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.12) 0%, rgba(255, 46, 147, 0.03) 60%, rgba(0,0,0,0) 100%);
    border-radius: var(--radius-full);
    filter: blur(var(--blur-heavy));
    pointer-events: none;
    z-index: 0;
}

/* --- Premium Buttons & Micro-Animations --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 18px 40px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: #020204;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.25);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.4), 
                0 0 25px rgba(155, 81, 224, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(var(--blur-normal));
    -webkit-backdrop-filter: blur(var(--blur-normal));
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* --- Badges --- */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--color-cyan);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

/* --- Keyframe Animations --- */
@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(142, 142, 168, 0.3);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-cyan);
}

/* ==========================================================================
   NAVIGATION BAR STYLING
   ========================================================================== */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-nav);
    backdrop-filter: blur(var(--blur-normal));
    -webkit-backdrop-filter: blur(var(--blur-normal));
    border-bottom: 1px solid var(--border-glass);
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.03em;
}

.logo-box {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: #020204;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 1.1rem;
}

.logo-highlight {
    color: var(--color-cyan);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--color-text-muted);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-cyan);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.btn-nav-cta {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.btn-nav-cta:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Mobile menu drawer can be implemented later if needed */
    }
}

/* ==========================================================================
   HERO SECTION STYLING
   ========================================================================== */
#hero-section {
    padding: 200px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-cyan);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--color-cyan);
    animation: pulse-glow 2s infinite ease-in-out;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.hero-lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    max-width: 750px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
    color: var(--color-text-muted);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.arrow-icon {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

/* Trust Score */
.hero-trust-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin: 0 auto;
}

.trust-stars {
    color: var(--color-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.trust-text strong {
    color: var(--color-text-main);
}

/* ==========================================================================
   INFINITE TRUST MARQUEE
   ========================================================================== */
.marquee-wrapper {
    margin-top: 80px;
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
    gap: 60px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--color-text-light);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--color-cyan);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--color-cyan);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   BENTO GRID FEATURES STYLING
   ========================================================================== */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-head p {
    color: var(--color-text-muted);
}

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

.bento-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.bento-span-2 {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
}

.bento-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: var(--space-md);
}

.bento-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.bento-card:hover .bento-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Specific glows */
.cyan-glow {
    color: var(--color-cyan);
    background: rgba(0, 242, 254, 0.05);
    border-color: rgba(0, 242, 254, 0.2);
}

.purple-glow {
    color: var(--color-purple);
    background: rgba(155, 81, 224, 0.05);
    border-color: rgba(155, 81, 224, 0.2);
}

.pink-glow {
    color: var(--color-pink);
    background: rgba(255, 46, 147, 0.05);
    border-color: rgba(255, 46, 147, 0.2);
}

.gold-glow {
    color: var(--color-gold);
    background: rgba(255, 184, 0, 0.05);
    border-color: rgba(255, 184, 0, 0.2);
}

.bento-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--color-text-muted);
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.bento-info h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.bento-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Animations within Bento Grid */
.bento-visual {
    position: relative;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    overflow: hidden;
}

.visual-stream {
    width: 200px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    flex-shrink: 0;
}

.stream-line {
    height: 4px;
    background: linear-gradient(to right, rgba(0, 242, 254, 0.4), transparent);
    width: 100%;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.stream-line::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 30%;
    background: var(--color-cyan);
    top: 0;
    left: -30%;
    border-radius: var(--radius-full);
    animation: data-stream 2s infinite linear;
}

.stream-line:nth-child(2)::after {
    animation-delay: 0.6s;
}

.stream-line:nth-child(3)::after {
    animation-delay: 1.2s;
}

@keyframes data-stream {
    0% {
        left: -30%;
    }
    100% {
        left: 100%;
    }
}

/* Media Queries for Bento */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-span-2 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-span-2 {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .visual-stream {
        width: 100%;
        height: 100px;
    }
}

/* ==========================================================================
   INTERACTIVE PRICING MATRIX STYLING
   ========================================================================== */
.toggle-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    margin-top: 30px;
}

.toggle-label {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.toggle-label.active {
    color: var(--color-text-main);
}

.toggle-discount-badge {
    background: linear-gradient(135deg, var(--color-pink) 0%, #FF8A00 100%);
    color: #020204;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 6px;
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 46, 147, 0.3);
}

.pricing-toggle-btn {
    width: 56px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pricing-toggle-btn:hover {
    border-color: rgba(0, 242, 254, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.pricing-toggle-btn.active {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    border-color: transparent;
}

.toggle-slider {
    width: 22px;
    height: 22px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pricing-toggle-btn.active .toggle-slider {
    left: 28px;
    background: #020204;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.price-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    padding: var(--space-lg) var(--space-md);
}

.price-card.price-popular {
    border-color: var(--color-cyan);
    background: radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.04) 0%, rgba(15, 15, 23, 0.8) 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 
                0 0 35px rgba(0, 242, 254, 0.08);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: #020204;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.price-card h3 {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.price-wrapper .currency {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-right: 2px;
}

.price-wrapper .price-val {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-text-main);
    letter-spacing: -0.03em;
    transition: var(--transition-smooth);
}

.price-wrapper .duration {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-left: 4px;
}

.price-monthly-equiv {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.price-monthly-equiv .equiv-val {
    color: var(--color-cyan);
    font-weight: 700;
}

.card-separator {
    height: 1px;
    background: var(--border-glass);
    width: 100%;
    margin-bottom: var(--space-md);
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features li {
    font-size: 0.9rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-cyan);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--color-cyan);
    flex-shrink: 0;
}

.price-popular .price-features li::before {
    background: var(--color-purple);
    box-shadow: 0 0 6px var(--color-purple);
}

.price-btn {
    width: 100%;
    padding: 14px 28px;
    font-size: 0.95rem;
}

/* Secure checkout widgets */
.payment-trust-row {
    margin-top: 60px;
}

.payment-row-title {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.payment-badges-flex {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--color-text-light);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.payment-badge:hover {
    border-color: rgba(0, 242, 254, 0.2);
    background: rgba(0, 242, 254, 0.03);
    color: var(--color-text-main);
}

/* Responsive pricing layout */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card {
        padding: var(--space-md) var(--space-sm);
    }
}

/* ==========================================================================
   DEVICE COMPATIBILITY & SETUP STYLING
   ========================================================================== */
.device-tabs-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

/* Hide horizontal scrollbar */
.device-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.device-tabs {
    display: flex;
    gap: 12px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
}

.device-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.device-tab-btn:hover {
    color: var(--color-text-main);
    background: rgba(255, 255, 255, 0.03);
}

.device-tab-btn.active {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: #020204;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

.device-content-box {
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
}

.device-pane {
    display: none;
}

.device-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pane-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.pane-info h3 {
    font-size: 1.75rem;
    color: var(--color-text-main);
    margin-bottom: var(--space-sm);
}

.pane-info p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.setup-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.setup-steps li {
    display: flex;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.setup-steps li strong {
    color: var(--color-cyan);
}

.setup-steps li span {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: #020204;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ==========================================================================
   CSS MOCKUP DRAWINGS
   ========================================================================== */
.pane-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* TV Mockup */
.mockup-tv {
    width: 100%;
    max-width: 320px;
}

.tv-screen {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #020204;
    border: 10px solid #14141d;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.tv-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0A0C 0%, #151520 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
    position: relative;
}

.tv-logo {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 900;
    color: #FFF;
}

.tv-channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 12px;
}

.channel-box-mini {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    padding: 6px;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    text-align: center;
    color: var(--color-text-light);
    font-weight: 700;
}

.tv-stand {
    width: 80px;
    height: 16px;
    background: #14141d;
    margin: 0 auto;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    position: relative;
}

.tv-stand::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 6px;
    background: #0a0a0f;
    bottom: -6px;
    left: -30px;
    border-radius: var(--radius-full);
}

/* Smartphone Mockup */
.mockup-phone {
    width: 180px;
    height: 320px;
    background: #020204;
    border: 8px solid #14141d;
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0A0A0C 0%, #161622 100%);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
    position: relative;
}

.phone-logo {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 900;
    color: #FFF;
}

.phone-app-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 24px;
}

.phone-btn-action {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(155, 81, 224, 0.1) 100%);
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 8px;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    color: var(--color-cyan);
    font-weight: 800;
    text-align: center;
}

/* Smart TV progress loaders */
.progress-bar-mini {
    width: 80%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-full);
    margin-top: var(--space-md);
    overflow: hidden;
}

.progress-fill-mini {
    height: 100%;
    width: 65%;
    background: linear-gradient(to right, var(--color-cyan), var(--color-purple));
    border-radius: var(--radius-full);
}

/* MAG Box mockup */
.mockup-mag {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mag-box {
    width: 200px;
    height: 45px;
    background: #14141d;
    border-radius: var(--radius-sm);
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-bottom: 3px solid #08080c;
}

.mag-light {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-cyan);
    border-radius: 50%;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    box-shadow: 0 0 8px var(--color-cyan);
}

/* Responsive device guidelines */
@media (max-width: 900px) {
    .pane-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pane-visual {
        order: -1; /* Display visual on top in tablet/mobile */
    }
}

/* ==========================================================================
   VERIFIED CUSTOMER REVIEWS STYLING
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-stars {
    color: var(--color-gold);
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.review-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
}

.user-avatar-placeholder {
    width: 44px;
    height: 44px;
    background: rgba(0, 242, 254, 0.15);
    color: var(--color-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.user-metadata h4 {
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.user-badge-verified {
    color: var(--color-green);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.user-badge-verified::before {
    content: '✓';
    font-weight: 900;
}

/* Responsive reviews layout */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ ACCORDION STYLING
   ========================================================================== */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 50px;
}

.faq-item {
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    background: rgba(15, 15, 23, 0.4);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(0, 242, 254, 0.25);
    background: rgba(15, 15, 23, 0.6);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-headings);
    font-weight: 750;
    font-size: 1.1rem;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
}

.faq-icon-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-text-muted);
    border-bottom: 2px solid var(--color-text-muted);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    margin-right: 4px;
    flex-shrink: 0;
}

.faq-trigger[aria-expanded="true"] .faq-icon-arrow {
    transform: rotate(-135deg);
    border-color: var(--color-cyan);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    border-top: 1px solid transparent;
}

/* Dynamic FAQ Interface */
.faq-search-container {
    max-width: 600px;
    margin: 0 auto var(--space-md) auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

#faq-search-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 15, 0.6);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    outline: none;
    transition: all 0.3s ease;
}

#faq-search-input:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
    background: rgba(10, 10, 15, 0.8);
}

.faq-categories-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.faq-category-btn {
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.faq-category-btn.active {
    color: #fff !important;
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.faq-show-more-btn {
    display: block;
    margin: 30px auto 0 auto;
    padding: 12px 30px;
    border-radius: 30px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.05);
    color: var(--color-cyan);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.faq-show-more-btn:hover {
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

/* ==========================================================================
   SITE FOOTER STYLING
   ========================================================================== */
#site-footer {
    background: #020204;
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 40px 0;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr;
    gap: var(--space-xl);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

.footer-brand-column p {
    line-height: 1.6;
    max-width: 320px;
}

.footer-links-column h4 {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 750;
    color: var(--color-text-main);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-column ul a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links-column ul a:hover {
    color: var(--color-cyan);
    padding-left: 4px;
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-bar p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
}

/* ==========================================================================
   FLOATING WHATSAPP CHAT WIDGET
   ========================================================================== */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-headings);
    font-weight: 850;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.15);
}

.floating-whatsapp-widget:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
    color: #FFFFFF;
}

.whatsapp-icon {
    flex-shrink: 0;
    animation: phone-shake 2.5s infinite ease-in-out;
}

@keyframes phone-shake {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-8deg); }
    20%, 40%, 60%, 80% { transform: rotate(8deg); }
}

/* Responsive Footer rules */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    #site-footer {
        padding: 50px 0 30px 0;
    }
    
    .floating-whatsapp-widget {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
    }
    
    .floating-whatsapp-widget span {
        display: none; /* Hide text on mobile to save screen space */
    }
}







@media (max-width: 1024px) { .main-nav { display: none !important; } }