/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8B5CF6;
    --dark-purple: #5B21B6;
    --light-purple: #A78BFA;
    --neon-purple: #C084FC;
    --neon-pink: #F472B6;
    --dark-bg: #0F0F23;
    --darker-bg: #0A0A1A;
    --card-bg: #1A1A2E;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8D1;
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--neon-pink));
    --gradient-dark: linear-gradient(135deg, var(--darker-bg), var(--card-bg));
    --neon-glow: 0 0 20px var(--neon-purple), 0 0 40px var(--neon-purple), 0 0 60px var(--neon-purple);
    --neon-glow-pink: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6), 0 0 40px rgba(244, 114, 182, 0.4);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { 
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.6), 0 0 40px rgba(244, 114, 182, 0.4);
    }
    100% { 
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.8), 0 0 50px rgba(244, 114, 182, 0.6);
    }
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    animation: brandGlow 2s ease-in-out infinite alternate;
}

@keyframes brandGlow {
    0% { 
        filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
    }
    100% { 
        filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.9)) drop-shadow(0 0 35px rgba(244, 114, 182, 0.5));
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    padding: 140px 3rem 60px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 6rem;
    width: 100%;
    flex: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(244, 114, 182, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 60% 40%, rgba(192, 132, 252, 0.06) 0%, transparent 40%);
    animation: heroGlow 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@media (min-width: 769px) {
    .hero::before {
        background: 
            radial-gradient(circle at 15% 25%, rgba(139, 92, 246, 0.15) 0%, transparent 35%),
            radial-gradient(circle at 85% 75%, rgba(244, 114, 182, 0.15) 0%, transparent 35%),
            radial-gradient(circle at 65% 45%, rgba(192, 132, 252, 0.08) 0%, transparent 45%);
    }
}

@keyframes heroGlow {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    100% { 
        transform: rotate(3deg) scale(1.05);
        opacity: 1;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 100%;
    padding-right: 2rem;
}

.hero-title {
    font-size: clamp(3.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.neon-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
    animation: neonPulse 3s ease-in-out infinite alternate;
    position: relative;
}

.neon-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(10px);
    opacity: 0.7;
    z-index: -1;
}

@keyframes neonPulse {
    0% { 
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.8)) drop-shadow(0 0 40px rgba(244, 114, 182, 0.4));
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 95%;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 48px rgba(139, 92, 246, 0.6);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(26, 26, 46, 0.8);
    color: var(--text-primary);
    border: 2px solid var(--primary-purple);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
    transform: translateY(-3px) scale(1.02);
}

/* Icons */
.play-icon {
    width: 0;
    height: 0;
    border-left: 12px solid currentColor;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 2px;
}

.info-icon {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
}

.info-icon::before {
    content: 'i';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 769px) {
    .hero-image {
        justify-content: flex-end;
        padding-right: 2rem;
    }
}

.tv-mockup {
    width: 550px;
    height: 350px;
    background: linear-gradient(145deg, var(--card-bg), #252545);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(139, 92, 246, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
    transition: transform 0.6s ease;
}

.tv-mockup:hover {
    transform: perspective(1200px) rotateY(-4deg) rotateX(1deg) scale(1.03);
}

.tv-mockup::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: linear-gradient(145deg, var(--card-bg), #252545);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tv-mockup::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    filter: blur(8px);
}

.tv-screen {
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.tv-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    animation: screenGlow 4s ease-in-out infinite;
}

@keyframes screenGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.channel-item {
    background: var(--gradient-primary);
    border-radius: 12px;
    opacity: 0.6;
    animation: channelFlicker 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.channel-item::before {
    content: attr(data-channel);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.channel-item.active {
    opacity: 1;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

.channel-item:nth-child(1) { animation-delay: 0s; }
.channel-item:nth-child(2) { animation-delay: 0.7s; }
.channel-item:nth-child(3) { animation-delay: 1.4s; }
.channel-item:nth-child(4) { animation-delay: 2.1s; }
.channel-item:nth-child(5) { animation-delay: 2.8s; }
.channel-item:nth-child(6) { animation-delay: 3.5s; }

@keyframes channelFlicker {
    0%, 85%, 100% { 
        opacity: 0.6; 
        transform: scale(1);
    }
    5%, 80% { 
        opacity: 1; 
        transform: scale(1.05);
        box-shadow: 
            0 0 20px rgba(139, 92, 246, 0.6),
            0 0 40px rgba(139, 92, 246, 0.3);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--primary-purple);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hd-icon::before {
    content: 'HD';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.channels-icon::before {
    content: '';
    width: 30px;
    height: 20px;
    background: white;
    border-radius: 4px;
    position: relative;
}

.channels-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background: var(--primary-purple);
    box-shadow: 0 -4px 0 var(--primary-purple), 0 4px 0 var(--primary-purple);
}

.speed-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.support-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}

.support-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.mobile-icon::before {
    content: '';
    width: 20px;
    height: 32px;
    border: 2px solid white;
    border-radius: 6px;
    position: relative;
}

.mobile-icon::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.security-icon::before {
    content: '';
    width: 20px;
    height: 24px;
    border: 3px solid white;
    border-top: 8px solid white;
    border-radius: 0 0 6px 6px;
    position: relative;
}

.security-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
}

/* Apps Section */
.apps {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.apps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(244, 114, 182, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.app-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.app-card:hover::before {
    transform: scaleX(1);
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.25);
    border-color: var(--primary-purple);
}

.app-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: var(--text-primary);
    font-weight: 600;
}

.app-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* App Icons */
.app-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.ss-iptv-icon::before {
    content: 'SS';
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.iptv-smarters-icon::before {
    content: 'IS';
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.tivimate-icon::before {
    content: 'TM';
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.vlc-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 3px;
}

.kodi-icon::before {
    content: '';
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    position: relative;
}

.kodi-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--primary-purple);
    border-radius: 50%;
}

.perfect-player-icon::before {
    content: 'PP';
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.mx-player-icon::before {
    content: 'MX';
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.gse-smart-icon::before {
    content: 'GSE';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.lazy-iptv-icon::before {
    content: 'LZ';
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.ott-navigator-icon::before {
    content: 'OTT';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.duplex-iptv-icon::before {
    content: 'DX';
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.smart-iptv-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 3px solid white;
    border-radius: 6px;
    position: relative;
}

.smart-iptv-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 8px;
    background: white;
    border-radius: 2px;
}

/* Desktop Large */
@media (min-width: 1400px) {
    .hero {
        min-height: 85vh;
        padding: 160px 4rem 80px;
    }
    
    .hero-container {
        gap: 8rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .tv-mockup {
        width: 600px;
        height: 380px;
    }
    
    .hero-stats {
        gap: 4rem;
    }
    
    .hero-stat-number {
        font-size: 3rem;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        min-height: 75vh;
        padding: 120px 2rem 50px;
    }
    
    .hero-container {
        gap: 4rem;
        grid-template-columns: 1fr 0.8fr;
    }
    
    .hero-content {
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: clamp(3rem, 5vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .tv-mockup {
        width: 400px;
        height: 260px;
        transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
    }
    
    .tv-mockup:hover {
        transform: perspective(1000px) rotateY(-3deg) rotateX(1deg) scale(1.02);
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 2px solid var(--primary-purple);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        text-align: center;
        padding: 100px 1.5rem 2rem;
        min-height: auto;
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .tv-mockup {
        width: 350px;
        height: 220px;
        transform: perspective(800px) rotateY(0deg) rotateX(0deg);
    }
    
    .tv-mockup:hover {
        transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.02);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 1rem 2rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .tv-mockup {
        width: 280px;
        height: 180px;
        padding: 16px;
    }
    
    .channel-grid {
        gap: 8px;
    }
    
    .channel-item {
        font-size: 0.7rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
}/* P
lans Section */
.plans {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.plan-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card.featured {
    border-color: var(--primary-purple);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: var(--neon-glow-pink);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.plan-duration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.duration-number {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.duration-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.check-icon::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.plan-btn {
    width: 100%;
    justify-content: center;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--darker-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neon-purple);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA Icons */
.rocket-icon {
    width: 16px;
    height: 16px;
    background: currentColor;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.star-icon {
    width: 16px;
    height: 16px;
    background: var(--neon-purple);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.shield-icon {
    width: 16px;
    height: 16px;
    background: var(--neon-purple);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.clock-icon {
    width: 16px;
    height: 16px;
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    position: relative;
}

.clock-icon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 6px;
    background: var(--neon-purple);
}

.clock-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    width: 4px;
    height: 1px;
    background: var(--neon-purple);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--card-bg);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--darker-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.25);
    border-color: var(--primary-purple);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: var(--primary-purple);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.final-cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.final-cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

.final-cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 300px;
    background: white;
    color: var(--primary-purple);
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.final-cta-guarantee {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Final CTA Icons */
.check-icon-large {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.check-icon-large::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 14px;
}

.whatsapp-icon-large {
    width: 24px;
    height: 24px;
    background: #25D366;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.whatsapp-icon-large::after {
    content: '💬';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.devices-icon-large {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.devices-icon-large::after {
    content: '📱';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.quality-icon-large {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.quality-icon-large::after {
    content: '4K';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 10px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Tablet Responsiveness */
@media (max-width: 768px) and (min-width: 601px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .final-cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .app-card {
        padding: 1.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .duration-number {
        font-size: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .final-cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-large {
        min-width: 280px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-content p {
        font-size: 1.1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
}

/* Performance Optimizations */
* {
    will-change: auto;
}

.hero::before,
.plans::before,
.cta::before {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}