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

:root {
    --primary: #007BFF;
    --primary-dark: #5a67d8;
    --secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent: #a78bfa;
    --dark: #1a202c;
    --gray: #4a5568;
    --light-gray: #f7fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

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

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover:before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #001122 0%, #003366 50%, #007BFF 100%);
    color: white;
}

.btn-primary:hover {
    background: #007BFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

/* Header */
header {
    position: relative;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

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

.nav-link:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Fallback gradient */
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

/* Show video when loaded */
.hero-video:not([poster]) {
    opacity: 1;
}

.hero-video[data-loaded="true"] {
    opacity: 1;
}

/* Dark Overlay for Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Hero Content */
.hero-content {
    color: white;
    animation: fadeInUp 1.2s ease-out;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    color: white;
}

/* Fade-in Animation for Hero Content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: white;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.live-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* USP Section */
.usp-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, var(--light-gray), white);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.usp-icon {
    font-size: 2.5rem;
}

.usp-text strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.usp-text span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    text-align: center;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Devices Section */
.devices {
    padding: 80px 0;
    background: var(--light-gray);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-items: center;
}

.device-item {
    text-align: center;
    transition: transform 0.3s;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 160px;
}

.device-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow);
}

.device-icon {
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.device-item h4 {
    color: var(--dark);
    font-size: 1rem;
    margin: 0;
}

/* VOD Section */
.vod-section {
    padding: 80px 0;
    background: white;
}

/* Highlight Text */
.highlight {
    color: var(--primary) !important;
    font-weight: bold;
}

.vod-section h2 .highlight {
    color: var(--primary);
    font-weight: bold;
}

.vod-stats {
    text-align: center;
    margin: 30px 0;
    color: var(--gray);
    font-size: 1.1rem;
}

.vod-carousel-container {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.vod-carousel {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.vod-carousel::-webkit-scrollbar {
    display: none;
}

.vod-item {
    flex: 0 0 200px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.vod-item:hover {
    transform: scale(1.05);
}

.vod-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.vod-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.vod-quality {
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Channels Section */
.channels-section {
    padding: 80px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.channels-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.channels-carousel {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

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

.channels-carousel:hover {
    animation-play-state: paused;
}

.channel-logo {
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius);
    padding: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.channel-logo:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

.channel-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(10%);
    transition: filter 0.3s;
}

.channel-logo:hover img {
    filter: grayscale(0%);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
}

.feature-check {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    padding: 40px 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: normal;
}

.savings {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
}

.pricing-card li {
    padding: 10px 0;
    color: var(--gray);
    text-align: left;
    font-size: 0.95rem;
}

.billing-info {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: -10px;
    margin-bottom: 20px;
}

.trust-line {
    text-align: center;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

/* Sports Section */
.sports-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #001122 0%, #003366 50%, #007BFF 100%);
    color: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
}

.sports-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

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

.sports-section h2 {
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 20px;
}

.sports-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 50px;
}

.sports-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.sport-feature {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.sport-feature:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.sport-feature h3 {
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.sport-feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.leagues-showcase {
    margin: 60px 0;
}

.leagues-showcase h3 {
    text-align: center;
    color: rgb(255, 255, 255);
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    justify-items: center;
}

.league-item {
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    padding: 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.league-item:hover {
    transform: scale(1.1) translateY(-5px);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.league-item img {
    width: 110px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.league-name {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.sports-cta {
    text-align: center;
    margin-top: 50px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.3);
}

.live-dot-sports {
    width: 12px;
    height: 12px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulse-sports 1.5s infinite;
}

@keyframes pulse-sports {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

.live-indicator span {
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card strong {
    color: var(--dark);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.how-it-works .cta {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    padding: 25px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background: var(--dark);
    color: white;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    margin-top: 40px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s;
    animation: bounceIn 0.6s;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

/* Responsive Design */
/* Additional Responsive Styles for New Sections */
@media (max-width: 1024px) {
    .devices-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .vod-item {
        flex: 0 0 150px;
    }
    
    .vod-item img {
        height: 225px;
    }
    
    .channel-logo {
        width: 100px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        height: 80vh;
        min-height: 550px;
    }
    
    .hero-container {
        padding: 0 15px;
        min-height: 80vh;
    }
    
    .hero-cta {
        gap: 1.2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .features-list {
        gap: 10px;
    }
    
    .feature-check {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .vod-carousel-container {
        margin-top: 20px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .channels-carousel {
        gap: 30px;
    }
    
    .pricing-card ul li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .sports-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sport-feature {
        padding: 20px;
    }
    
    .leagues-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .league-item {
        padding: 15px;
    }
    
    .league-item img {
        width: 60px;
        height: 60px;
    }
    
    .live-indicator {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-lg {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .device-item {
        padding: 15px;
    }
    
    .vod-section h2,
    .channels-section h2 {
        font-size: 1.5rem;
    }
    
    .vod-stats {
        font-size: 0.9rem;
    }
    
    .sports-features {
        grid-template-columns: 1fr;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .leagues-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .league-item img {
        width: 70px;
        height: 70px;
    }
    
    .league-name {
        font-size: 0.8rem;
    }
}

/* Accessibility */
:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    header,
    .whatsapp-float,
    .hero-cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
}

/* ===== MULTI-PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: var(--light-gray);
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.breadcrumb-list li {
    color: var(--gray);
}

.breadcrumb-list li:not(:last-child)::after {
    content: ">";
    margin-left: 10px;
    color: var(--gray);
}

.breadcrumb-list a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}


.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2rem;
}

.badge-item {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-2px);
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-date {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: var(--dark);
    margin: 1.5rem 0 1rem 0;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Contact Methods */
.contact-methods {
    background: white;
    padding: 80px 0;
}

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

.method-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-card.priority {
    border: 2px solid #10b981;
}

.method-icon {
    margin-bottom: 20px;
}

.method-icon img,
.method-icon svg {
    margin: 0 auto;
}

.contact-info {
    font-size: 1.25rem;
    margin: 20px 0;
    color: var(--primary);
}

/* Forms */
.contact-form-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/* Channel Categories */
.channel-categories {
    background: white;
    padding: 80px 0;
}

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

.category-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.channel-count {
    font-weight: bold;
    color: var(--primary);
    margin: 10px 0;
}

.channel-examples {
    list-style: none;
    margin-top: 15px;
}

.channel-examples li {
    background: white;
    margin: 5px 0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Popular Channels */
.popular-channels {
    background: var(--light-gray);
    padding: 80px 0;
}

.channels-showcase {
    margin-top: 3rem;
}

.channels-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.channel-logo-item {
    text-align: center;
}

.channel-logo-item img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.channel-logo-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Quality Features */
.quality-features {
    background: var(--light-gray);
    padding: 80px 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quality-item {
    text-align: center;
    padding: 30px;
}

.quality-icon {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Channel Search */
.channel-search {
    background: white;
    padding: 80px 0;
}

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

.search-form {
    display: flex;
    gap: 15px;
    margin: 2rem 0;
}

.search-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 16px;
}

.search-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2rem;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
}

/* Device Tutorials */
.device-tutorials {
    background: white;
    padding: 80px 0;
}

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

.device-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.device-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tutorial-steps {
    text-align: left;
    margin: 20px 0;
}

.tutorial-step {
    margin-bottom: 15px;
}

.tutorial-step strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

/* Quick Start */
.quick-start {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.step-item {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Recommended Apps */
.recommended-apps {
    background: white;
    padding: 80px 0;
}

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

.app-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
}

.app-card.featured {
    border: 2px solid var(--primary);
}

.app-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.app-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.app-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.app-features li {
    margin-bottom: 8px;
    color: var(--gray);
}

.app-platforms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.app-platforms span {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Troubleshooting */
.troubleshooting {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.problem-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.problem-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.solutions ul {
    margin-left: 1.5rem;
}

.solutions li {
    margin-bottom: 8px;
    color: var(--gray);
}

/* Remote Installation */
.remote-installation {
    background: white;
    padding: 80px 0;
}

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

.installation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.installation-cta {
    margin-top: 3rem;
}

.installation-note {
    margin-top: 1rem;
    color: var(--gray);
    font-style: italic;
}

/* Company Story */
.company-story {
    background: white;
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-features {
    list-style: none;
    margin: 20px 0;
}

.story-features li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.story-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
}

/* Mission Values */
.mission-values {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Legal Content */
.legal-content {
    background: white;
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--dark);
}

.legal-text h2 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text p {
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-text ul {
    color: var(--dark);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-text li {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* FAQ Content */
.faq-content {
    background: white;
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--dark);
    line-height: 1.6;
}

/* Popular Channels */
.popular-channels {
    background: var(--light-gray);
    padding: 80px 0;
}

.channels-showcase {
    margin-top: 3rem;
}

.channels-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.channel-logo-item {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.channel-logo-item img {
    margin-bottom: 10px;
}

.channel-logo-item span {
    color: var(--dark);
    font-weight: 600;
}

/* Why Choose Us */
.why-choose-us {
    background: white;
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    gap: 30px;
}

.advantage-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.advantage-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.advantage-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Team Section */
.team-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.team-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.team-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

/* Commitments */
.commitments {
    background: white;
    padding: 80px 0;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.commitment-card {
    text-align: center;
    padding: 30px;
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Contact CTA */
.contact-cta {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.contact-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Support Hours */
.support-hours {
    background: var(--light-gray);
    padding: 80px 0;
}

.hours-content {
    text-align: center;
}

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

.hours-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Section Utilities */
.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    text-align: center;
}

.hero-content {
    text-align: center;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #001122 0%, #003366 50%, #007BFF 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.page-hero .hero-content {
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Button Styles */
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Pricing Section Styles */
.pricing-section {
    background: white;
    padding: 80px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.pricing-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin: 15px 0;
}

.currency {
    font-size: 1.2rem;
}

.amount {
    font-size: 2.5rem;
}

.period {
    font-size: 1rem;
    color: var(--gray);
}

.savings {
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 10px 0;
    display: inline-block;
}

.price-desc {
    color: var(--gray);
    font-style: italic;
    margin: 10px 0;
}

.card-features {
    margin: 30px 0;
}

.card-features ul {
    list-style: none;
    text-align: left;
}

.card-features li {
    padding: 8px 0;
    color: var(--gray);
}

.check {
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
}

.card-footer {
    margin-top: 30px;
}

/* Features Comparison */
.features-comparison {
    background: var(--light-gray);
    padding: 80px 0;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #003366;
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background: var(--light-gray);
}

/* FAQ Styles */
.faq-categories {
    background: var(--light-gray);
    padding: 40px 0;
}

.categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: white;
}

.faq-content {
    padding: 80px 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category.hidden {
    display: none;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Mobile adjustments for multi-page */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .breadcrumb {
        padding: 15px 0;
    }
    
    .hero-stats,
    .hero-badges {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .channels-row {
        gap: 15px;
    }
    
    .channel-logo-item img {
        width: 80px;
        height: 50px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .installation-features {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .channels-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .legal-text {
        padding: 0 1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .badge-item {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .page-hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center top;
    }
}
