/* CSS Variables */
:root {
    --primary-purple: #D4AF37;
    --dark-purple: #8B6B1F;
    --light-purple: #FCD34D;
    --neon-purple: #F59E0B;
    --neon-pink: #FBBF24;
    --dark-bg: #0E0B06;
    --darker-bg: #0B0904;
    --card-bg: #1A1307;
    --text-primary: #FFFFFF;
    --text-secondary: #E5D9A8;
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    --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);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Sora", sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0B1220;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background Grid */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
    animation: gridPulse 4s ease-in-out infinite;
}

.grid-line-vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-purple), transparent);
    animation-delay: calc(var(--i, 0) * 0.2s);
}

.grid-line-horizontal {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
    animation-delay: calc(var(--i, 0) * 0.3s);
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.02);
    }
}

/* Animated Section Dividers */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    position: relative;
}

.divider-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), var(--light-purple), var(--primary-purple), transparent);
    position: relative;
    overflow: hidden;
}

.divider-glow {
    position: absolute;
    top: -2px;
    left: -100px;
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    border-radius: 50%;
    animation: dividerGlow 3s ease-in-out infinite;
    filter: blur(2px);
}

.divider-dots {
    position: absolute;
    display: flex;
    gap: 15px;
    background: var(--dark-bg);
    padding: 0 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-pink);
    animation: dotPulse 2s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dividerGlow {
    0% {
        left: -100px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: calc(100% + 100px);
        opacity: 0;
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 20px var(--neon-pink);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #b8b8b8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #F59E0B, #FBBF24, #FCD34D);
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.btn-secondary:hover {
    background: #D4AF37;
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(11, 18, 32, 0.7) 0%, 
        rgba(9, 14, 24, 0.6) 50%, 
        rgba(11, 18, 32, 0.7) 100%);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    z-index: 1000;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-top: none;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        transparent 50%, 
        rgba(180, 138, 30, 0.05) 100%);
    pointer-events: none;
}

.header.scrolled {
    background: linear-gradient(135deg, 
        rgba(12, 20, 34, 0.8) 0%, 
        rgba(9, 14, 24, 0.75) 50%, 
        rgba(12, 20, 34, 0.8) 100%);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #D4AF37;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #FBBF24;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, rgba(180, 138, 30, 0.05) 40%, rgba(14, 11, 6, 1) 70%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(180, 138, 30, 0.02) 50%, rgba(130, 98, 20, 0.03) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(180, 138, 30, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(130, 98, 20, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    33% { 
        transform: translateY(-15px) scale(1.02);
        opacity: 0.9;
    }
    66% { 
        transform: translateY(-10px) scale(0.98);
        opacity: 1;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-tv {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-device {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.3));
    animation: tvGlow 6s ease-in-out infinite alternate;
}

@keyframes tvGlow {
    from { 
        filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.3));
    }
    to { 
        filter: drop-shadow(0 25px 50px rgba(245, 158, 11, 0.4));
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #FCD34D, #F59E0B, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    to { text-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.6); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #d1d5db;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #D4AF37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* TV Mockup Styles */
.tv-mockup {
    width: 550px;
    height: 350px;
    background: linear-gradient(145deg, var(--card-bg), #2A1E0C, #3A2A12);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(212, 175, 55, 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), #2A1E0C, #3A2A12);
    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(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 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(212, 175, 55, 0.6),
            0 0 40px rgba(212, 175, 55, 0.3);
}
}

/* Sections */
section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #d1d5db;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(14, 11, 6, 1) 100%);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(212, 175, 55, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.18);
}

.feature-icon {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(180, 138, 30, 0.2));
    border-radius: 50%;
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    max-width: 120px;
    max-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    letter-spacing: -0.02em;
    line-height: 1;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.feature-card p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Apps Section */
.apps {
    background: rgba(10, 10, 10, 0.95);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.app-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(180, 138, 30, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.app-card h3 {
    color: #FBBF24;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(14, 11, 6, 1) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.pricing-card.popular {
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37, #FBBF24);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    color: #d1d5db;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(14, 11, 6, 1) 100%);
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.12);
}

.faq-item h3 {
    color: #FBBF24;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B1220 0%, #0E1628 50%, #0B1220 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(180, 138, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #D4AF37, #F59E0B, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.testimonials .section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #b0b0b0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(13, 19, 33, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.3),
        0 0 50px rgba(212, 175, 55, 0.1);
}

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

.testimonial-card .stars {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #FCD34D;
    font-size: 0.9rem;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials .section-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
}

/* Responsive Design - Mobile Fixes */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        padding: 0.75rem 0;
    }
    
    /* Hero section - fix header overlap */
    .hero {
        padding-top: 80px; /* Compensate for fixed header */
        min-height: calc(100vh - 80px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-tv {
        order: 1;
    }
    
    .tv-mockup {
        width: 400px;
        height: 250px;
        transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
    }
    
    .tv-mockup:hover {
        transform: perspective(800px) rotateY(-2deg) rotateX(1deg) scale(1.02);
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Navigation mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(11, 18, 32, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Header adjustments for small screens */
    header {
        padding: 0.5rem 0;
    }
    
    /* Hero section - smaller screens */
    .hero {
        padding-top: 100px;
        min-height: calc(100vh - 100px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tv-mockup {
        width: 300px;
        height: 190px;
        transform: perspective(600px) rotateY(-3deg) rotateX(1deg);
    }
    
    .tv-mockup:hover {
        transform: perspective(600px) rotateY(-1deg) rotateX(0deg) scale(1.01);
    }
    
    .channel-item {
        font-size: 0.7rem;
    }
    
    /* Cards centralization fix for mobile */
    .feature-card,
    .feature-card h3,
    .feature-card p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .feature-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .feature-icon {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        width: 100px !important;
        height: 100px !important;
        min-width: 100px !important;
        min-height: 100px !important;
        max-width: 100px !important;
        max-height: 100px !important;
        font-size: 1.2rem !important;
        background: rgba(212, 175, 55, 0.1) !important;
        color: #ffffff !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
        border: 2px solid rgba(212, 175, 55, 0.4) !important;
        font-weight: 800 !important;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

/* CTA Section */
.cta {
    background: 
        linear-gradient(135deg, rgba(245, 158, 11, 0.10) 0%, rgba(212, 175, 55, 0.12) 50%, rgba(245, 158, 11, 0.08) 100%),
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    text-align: center;
    padding-bottom: 6rem;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
}

.cta-feature .icon {
    font-size: 1.5rem;
}

.cta-guarantee {
    margin-top: 1rem;
    color: #10b981;
    font-weight: 600;
}

.cta .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

/* Footer */
.footer {
    background: rgba(14, 11, 6, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: #6b7280;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(180, 138, 30, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(180, 138, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #FCD34D, #F59E0B, #D4AF37);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    animation: featureFloat 6s ease-in-out infinite;
}

.contact-feature:nth-child(2) {
    animation-delay: -2s;
}

.contact-feature:nth-child(3) {
    animation-delay: -4s;
}

.contact-feature:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37, #F59E0B);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    color: white;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.feature-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #d1d5db;
    font-size: 0.9rem;
    margin: 0;
}

.whatsapp-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(130, 98, 20, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: cardPulse 4s ease-in-out infinite;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s linear infinite;
}

.whatsapp-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #F59E0B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    animation: iconBounce 2s ease-in-out infinite;
}

.whatsapp-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.whatsapp-card p {
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #D4AF37, #F59E0B);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-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.5s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.contact-info-text {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-info-text p {
    color: #d1d5db;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.contact-info-text strong {
    color: #D4AF37;
}

/* Contact Animations */
@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

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

@keyframes cardPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

/* Tablet Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.8rem;
    }
    
    .feature-icon {
        font-size: 2.2rem;
        margin: 0 auto 1.5rem auto;
        display: block;
        text-align: center;
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin: 0 auto 1rem auto;
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .apps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Grid and Dividers Responsive */
    .background-grid {
        opacity: 0.05;
    }
    
    .grid-line-vertical:nth-child(odd),
    .grid-line-horizontal:nth-child(odd) {
        display: none;
    }
    
    .section-divider {
        padding: 40px 0;
    }
    
    .divider-dots {
        gap: 10px;
        padding: 0 15px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    /* Contact Section Responsive */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-features {
        gap: 1rem;
    }
    
    .contact-feature {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-card {
        padding: 2rem;
    }
    
    .whatsapp-icon {
        width: 70px;
        height: 70px;
    }
    
    .whatsapp-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
.whatsapp-float {
    position: fixed;
    right: 40px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 10px 30px rgba(18, 140, 126, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(18, 140, 126, 0.5);
}

.whatsapp-float.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
}

@media (min-width: 1024px) {
    .whatsapp-float {
        top: auto;
        bottom: 24px;
        transform: none;
    }
    .whatsapp-float:hover {
        transform: scale(1.08);
    }
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
    display: block;
}
.hero-live-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #E5D9A8;
}

.hero-live-note .accent {
    color: #D4AF37;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.whatsapp-float-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(14, 11, 6, 0.95);
    color: #E5D9A8;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-50%) scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1001;
    pointer-events: none;
}

.whatsapp-float-tooltip.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.whatsapp-float-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(14, 11, 6, 0.95);
    transform: translateX(-50%);
}

.whatsapp-float-tooltip::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid rgba(212, 175, 55, 0.5);
    transform: translateX(-50%);
}
