/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern 4K IPTV Color Palette */
    --primary-color: #6600ff;
    --primary-light: #818cf8;
    --primary-dark: #0056B3;
    --secondary-color: #4a90e2;
    --secondary-light: #f472b6;
    --secondary-dark: #db2777;
    --accent-color: #8e44ad;
    --accent-light: #22d3ee;
    --accent-dark: #0891b2;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Text Colors */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-lighter: #a0aec0;
    --text-white: #5286ff;
    --text-muted: #6b7280;
    
    /* Background Colors */
    --bg-primary: #5286ff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #1e293b;
    --bg-darker: #0f172a;
    --bg-light-purple: #faf5ff;
    --bg-light-pink: #fdf2f8;
    --bg-light-cyan: #ecfeff;
    
    /* Border & Shadow */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --border-dark: #cbd5e0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #6600ff 0%, #8b5cf6 50%, #4a90e2 100%);
    --gradient-secondary: linear-gradient(135deg, #4a90e2 0%, #f472b6 50%, #fb7185 100%);
    --gradient-accent: linear-gradient(135deg, #8e44ad 0%, #22d3ee 50%, #38bdf8 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.8) 100%);
    
    /* Spacing & Sizing */
    --border-radius-sm: 6px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-2xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

.nav-logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition-normal);
    position: relative;
    padding: 8px 10px;
    border-radius: var(--border-radius-md);
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: var(--bg-light-blue);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Mobile: Image appears first */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.8px;
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-title .brand-name {
    color: var(--primary-color);
    font-weight: 900;
}

.hero-features-list {
    margin: 28px 0;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0;
    transition: all 0.2s ease;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.2);
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.2px;
}

/* MaxcoTV Style Feature Icons */
.hero-features-list .feature-item .feature-icon {
    background: var(--secondary-color) !important;
    background-image: none !important;
    color: white !important;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    box-shadow: none;
    border: 1px solid var(--secondary-color);
}

.hero-features-list .feature-item .feature-icon:hover {
    background: var(--secondary-dark) !important;
    border-color: var(--secondary-dark);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 95%;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 36px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    min-width: 180px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary.btn-large {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-primary.btn-large:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary.btn-large {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary.btn-large:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* MaxcoTV Style Buttons */
.btn-maxco {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    min-width: 200px;
    border: none;
    cursor: pointer;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-primary-maxco {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary-maxco:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary-maxco {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary-maxco:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
} 

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 160px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    min-width: 200px;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
}

.sportium-image {
    max-width: 80%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.sportium-image:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
}

.hero-character {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.character-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero-illustration {
    position: relative;
    width: 500px;
    height: 400px;
}

.character-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.character {
    position: relative;
    z-index: 2;
}

.character-head {
    width: 80px;
    height: 80px;
    background: #fbbf24;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 10px;
}

.glasses {
    position: absolute;
    top: 25px;
    left: 15px;
    width: 50px;
    height: 20px;
    background: #1f2937;
    border-radius: 10px;
}

.glasses::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #ef4444;
    border-radius: 50%;
}

.glasses::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #ef4444;
    border-radius: 50%;
}

.smile {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    border: 3px solid #1f2937;
    border-top: none;
    border-radius: 0 0 30px 30px;
}

.character-body {
    width: 100px;
    height: 120px;
    background: var(--gradient-secondary);
    border-radius: 20px 20px 10px 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popcorn {
    font-size: 2rem;
    color: var(--text-white);
}

.chair {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.chair-back {
    width: 120px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
    position: relative;
}

.chair-seat {
    width: 140px;
    height: 20px;
    background: var(--primary-dark);
    border-radius: 10px;
    margin-top: -10px;
    margin-left: -10px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    top: 10%;
    right: 20%;
    animation-delay: 2s;
}

.tv-mockup {
    position: relative;
    width: 400px;
    height: 250px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
}

.screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.streaming-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content-overlay {
    text-align: center;
    color: white;
    z-index: 2;
}

.content-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.content-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--text-white);
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

/* All icons use the same color scheme for uniformity */
.lightning-icon,
.uptime-icon,
.device-icon,
.support-icon,
.global-icon,
.pricing-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shimmer 3s infinite linear;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6600ff, #4a90e2);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.feature-card:hover h3::after {
    width: 50%;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-top: 15px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.feature-card:hover p {
    opacity: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 20px 0;
    padding: 0 30px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.testimonial-rating i:hover {
    color: #f59e0b;
    transform: scale(1.1);
}

/* Statistics Section */
.stats-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    pointer-events: none;
}

.stats-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

.stats-section .section-header h2 {
    color: var(--text-white);
    background: none;
    -webkit-text-fill-color: var(--text-white);
}

.stats-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-2xl);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-white);
    transition: var(--transition-normal);
}

.stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    background: var(--bg-primary);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.choose-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.choose-text > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.choose-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.choose-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.choose-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.choose-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.choose-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.choose-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.quality-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.showcase-item {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--border-radius-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.showcase-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    font-size: 1.8rem;
    transition: var(--transition-normal);
}

.showcase-item:hover .showcase-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1);
}

.showcase-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.showcase-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Choose Plan Section */
.choose-plan {
    padding: 80px 0;
    background: #5286ff;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: #5286ff;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.plan-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1rem;
    flex-shrink: 0;
}

.plan-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Trust Indicators */
.trust-indicators {
    padding: 40px 0;
    background: #f8fafc;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    color: #64748b;
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* World's Number One */
.worlds-number-one {
    padding: 80px 0;
    background: #5286ff;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.worlds-number-one h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.worlds-number-one h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 50px;
    line-height: 1.2;
}

.stats-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Premium Features */
.premium-features {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.premium-features h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-features h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 50px;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.exp-stat {
    text-align: center;
}

.exp-stat .number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.exp-stat .label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-2xl);
    padding: 48px 36px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: var(--transition-normal);
    position: relative;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
    background: var(--bg-light-blue);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.lifetime-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.pricing-card.premium {
    border-color: #10b981;
    position: relative;
}

.pricing-card.premium:hover {
    border-color: #059669;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.plan-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    margin-bottom: 10px;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.savings {
    background: var(--gradient-accent);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.plan-features i {
    color: #2563eb;
    font-size: 1.1rem;
}

.plan-features i.fa-check-circle {
    color: #2563eb;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
}

.pricing-note p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 36px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.cta .btn-primary {
    background: var(--bg-primary);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-2xl);
}

.cta .btn-primary:hover {
    background: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* Footer */
.footer {
    background: #1a2332;
    color: var(--text-white);
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.footer-logo i {
    color: #6600ff;
    font-size: 1.8rem;
    margin-right: 5px;
}

.brand-section {
    padding-right: 20px;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #6600ff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #3a4257;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: #6600ff;
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: #2d3748;
    margin-bottom: 20px;
}

.footer-bottom {
    padding-top: 10px;
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image-order {
        order: -1;
        margin-bottom: 20px;
    }
    
    .hero-content-order {
        order: 1;
    }

    .sportium-image {
        max-width: 90%;
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
}
/* Additional Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 15px;
        border-radius: 0 0 10px 10px;
    }
    
    .nav-menu.active a {
        font-size: 0.95rem;
        padding: 10px 15px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-maxco {
        font-size: 0.9rem;
        padding: 12px 24px;
        min-width: 180px;
    }
    
    .tv-mockup {
        width: 300px;
        height: 200px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .pricing-card h3 {
        font-size: 1.1rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .plan-features li {
        font-size: 0.85rem;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 12px 20px;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .btn-maxco {
        font-size: 0.85rem;
        padding: 10px 20px;
        min-width: 160px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .amount {
        font-size: 1.8rem;
    }
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-logo i {
        font-size: 1.5rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Pricing Page Specific Styles */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-hero {
    padding: 140px 0 100px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.pricing-hero-content {
    position: relative;
    z-index: 1;
}

.pricing-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(26, 54, 93, 0.1);
}

.pricing-hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

.main-pricing {
    padding: 80px 0;
    background: var(--bg-primary);
}

.pricing-grid-detailed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pricing-card-detailed {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-card-detailed.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #f4edff 0%, #e8d9ff 100%);
}

.plan-features-detailed {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features-detailed li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.plan-features-detailed i {
    color: #2563eb;
    font-size: 1.1rem;
}

.plan-features-detailed i.fa-check-circle {
    color: #2563eb;
}

.pricing-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-detailed.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card-detailed.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.plan-price {
    margin-bottom: 15px;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-price .period {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.savings-badge {
    background: var(--success-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.plan-features-detailed {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features-detailed li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.plan-features-detailed i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.btn-order {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Compare Plans Section */
.compare-plans {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.comparison-table {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td {
    font-size: 1rem;
    color: var(--text-primary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .text-success {
    color: var(--success-color);
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: var(--bg-primary);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guarantee-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.guarantee-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing FAQ Section */
.pricing-faq {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-faq .faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
    .pricing-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .pricing-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-card-detailed.featured {
        transform: none;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
}

/* Tablet screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-grid-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card,
    .pricing-card-detailed {
        padding: 30px 20px;
    }
}

/* Image-Based Pricing Styles */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #f4edff 0%, #e8d9ff 100%);
}

.popular-badge {
    background: #2563eb;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.5px;
    white-space: nowrap;
    min-width: 120px;
}

.plan-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.price {
    margin-bottom: 15px;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.discount-badge {
    background: #ffffff;
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
}

.discount-badge.featured-discount {
    background: #2563eb;
    color: white;
    border: none;
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Enhanced Card Styles */
.pricing-card.best-value {
    border-color: #8b5cf6;
    position: relative;
}

.pricing-card.ultimate {
    border-color: #ef4444;
    position: relative;
}

.pricing-card-detailed.best-value {
    border-color: #8b5cf6;
    position: relative;
}

.pricing-card-detailed.ultimate {
    border-color: #ef4444;
    position: relative;
}

/* Feature Icons */
.plan-features li i.fa-star {
    color: #f59e0b;
}

.plan-features li i.fa-crown {
    color: #8b5cf6;
}

.plan-features li i.fa-gem {
    color: #ef4444;
}

.plan-features-detailed li i.fa-star {
    color: #f59e0b;
}

.plan-features-detailed li i.fa-crown {
    color: #8b5cf6;
}

.plan-features-detailed li i.fa-gem {
    color: #ef4444;
}

/* Button Variations */
.btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.btn.featured-btn {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn.featured-btn:hover {
    background: #2563eb;
    color: white;
}

/* Pricing Card Hover Effects */
.pricing-card:hover,
.pricing-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card-detailed.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Responsive Pricing Adjustments */
@media (max-width: 768px) {
    .original-price {
        font-size: 0.9rem;
    }
    
    .price .cents,
    .plan-price .cents {
        font-size: 1.2rem;
    }
    
    .trial-badge,
    .savings-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

/* Channels Page Styles */
.channels-hero {
    padding: 140px 0 100px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.channels-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.channels-hero-content {
    position: relative;
    z-index: 1;
}

.channels-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(26, 54, 93, 0.1);
}

.channels-hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

.channel-categories {
    padding: 100px 0;
    background: var(--bg-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
}

.sports-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.movie-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.news-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.kids-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.music-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.documentary-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.channel-count-header {
    color: #e74c3c;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-align: center;
}

.category-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.channel-list {
    list-style: none;
    padding: 0;
}

.channel-list li {
    padding: 8px 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.channel-list li i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.global-coverage {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.coverage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.coverage-flag {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.coverage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.coverage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.channel-count {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.premium-quality {
    padding: 100px 0;
    background: var(--bg-primary);
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.quality-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.quality-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.quality-feature span {
    font-weight: 500;
    color: var(--text-primary);
}

.quality-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quality-mockup {
    width: 300px;
    height: 200px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.screen-quality {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.quality-indicator {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.streaming-bars {
    display: flex;
    gap: 5px;
    align-items: end;
}

.bar {
    width: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    animation: streaming 1.5s ease-in-out infinite;
}

.bar:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.bar:nth-child(2) {
    height: 35px;
    animation-delay: 0.3s;
}

.bar:nth-child(3) {
    height: 25px;
    animation-delay: 0.6s;
}

.bar:nth-child(4) {
    height: 40px;
    animation-delay: 0.9s;
}

@keyframes streaming {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

.channels-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.channels-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.channels-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.channels-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.channels-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.channels-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.channels-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Channels Page */
@media (max-width: 768px) {
    .channels-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
    }
    
    .quality-mockup {
        width: 250px;
        height: 160px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }
}

/* Setup Page Styles */
.setup-hero {
    padding: 140px 0 100px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.setup-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.setup-hero-content {
    position: relative;
    z-index: 1;
}

.setup-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(26, 54, 93, 0.1);
}

.setup-hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

.quick-start {
    padding: 100px 0;
    background: var(--bg-primary);
}

.quick-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number-circle {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.device-setup {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* Device Tabs */
.device-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.device-tab {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.device-tab:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.device-tab.active {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
    border-color: #8b4513;
}

.device-tab i {
    font-size: 1.1rem;
}

/* Device Content */
.device-content {
    margin-top: 40px;
}

.device-panel {
    display: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.device-panel.active {
    display: block;
}

.panel-header {
    background: linear-gradient(135deg, #8b4513 0%, #4a90e2 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.panel-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.panel-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}

.difficulty-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.difficulty-badge.easy {
    background: #22c55e;
    color: white;
}

.difficulty-badge.medium {
    background: #f59e0b;
    color: white;
}

.difficulty-badge.hard {
    background: #ef4444;
    color: white;
}

.setup-steps {
    padding: 30px;
}

.setup-step {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.setup-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.setup-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.setup-step h4 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.setup-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.setup-step ul {
    margin-left: 20px;
    color: var(--text-secondary);
}

.setup-step ul li {
    margin-bottom: 5px;
}

.code-block {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    font-family: 'Courier New', monospace;
}

.code-block code {
    color: #e74c3c;
    font-size: 0.9rem;
    word-break: break-all;
}

.troubleshooting {
    padding: 100px 0;
    background: var(--bg-primary);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.issue-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.issue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.issue-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.issue-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.issue-card ul li {
    padding: 5px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.issue-card ul li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.help-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.help-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.help-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.help-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.help-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.help-section .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.help-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Setup Page */
@media (max-width: 768px) {
    .setup-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .quick-steps {
        grid-template-columns: 1fr;
    }
    
    .device-tabs {
        gap: 8px;
    }
    
    .device-tab {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .panel-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .panel-header h3 {
        font-size: 1.2rem;
    }
    
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .help-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Tablet landscape - show 4 in a row */
@media (max-width: 1024px) and (min-width: 769px) {
    .issues-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .issue-card {
        padding: 25px 20px;
    }
    
    .issue-card h3 {
        font-size: 1.1rem;
    }
}

/* Resellers Page Styles */
.resellers-hero {
    padding: 140px 0 100px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resellers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.resellers-hero-content {
    position: relative;
    z-index: 1;
}

.resellers-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(26, 54, 93, 0.1);
}

.resellers-hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.why-choose {
    padding: 100px 0;
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.commission-structure {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.package-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
}

.package-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2563eb;
    margin-bottom: 15px;
}

.package-credits {
    background: #2563eb;
    color: white;
    padding: 12px 20px;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 -20px 25px -20px;
    display: block;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.package-features i {
    color: var(--success-color);
    font-size: 1rem;
}

.how-it-works {
    padding: 100px 0;
    background: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.success-stories {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ready-to-start {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.ready-to-start .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ready-to-start .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ready-to-start .btn-primary {
    background: white;
    color: var(--primary-color);
}

.ready-to-start .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.ready-to-start .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ready-to-start .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-info {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0.9;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

/* Responsive Design for Resellers Page */
@media (max-width: 768px) {
    .resellers-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero {
    padding: 140px 0 100px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(26, 54, 93, 0.1);
}

.about-hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

.our-story {
    padding: 100px 0;
    background: var(--bg-primary);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.visual-element {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.visual-element i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.visual-element span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mission-vision {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.core-values {
    padding: 100px 0;
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.by-numbers {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.number-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.number-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.technology {
    padding: 100px 0;
    background: var(--bg-primary);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tech-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.tech-feature i {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tech-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.tech-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.tech-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 15px;
}

.server {
    width: 200px;
    height: 20px;
    background: #4a5568;
    border-radius: 5px;
    position: relative;
}

.server.active {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.our-team {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.awards {
    padding: 100px 0;
    background: var(--bg-primary);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.award-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.award-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.award-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.join-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.join-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.join-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.join-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.join-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.join-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.join-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 140px 0 100px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(26, 54, 93, 0.1);
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

.contact-methods {
    padding: 100px 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-info {
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.help-categories {
    padding: 100px 0;
    background: var(--bg-primary);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.help-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.help-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.help-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.help-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.help-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: var(--secondary-color);
}

.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #f8f9fa;
    border-bottom: 1px solid var(--border-color);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Remove old FAQ grid styles */
.faq-grid {
    display: none;
}

.emergency-contact {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.emergency-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.emergency-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.emergency-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.emergency-contact .btn-primary {
    background: white;
    color: var(--primary-color);
}

.emergency-contact .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.emergency-contact .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.emergency-contact .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.response-time {
    opacity: 0.8;
}

.response-time p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-container {
        margin: 0 20px;
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
}

/* Professional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Enhanced Interactive Elements */
.feature-card:hover .feature-icon {
    animation: pulse 0.6s ease-in-out;
    background: var(--gradient-secondary);
}

.pricing-card:hover {
    animation: float 2s ease-in-out infinite;
}

.btn:active {
    transform: scale(0.98);
}

/* Professional Gradient Overlays */
.section-overlay {
    position: relative;
}

.section-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.02) 0%, rgba(229, 62, 62, 0.02) 100%);
    pointer-events: none;
}

/* Enhanced Focus States */
.btn:focus,
.nav-menu a:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Professional Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1.5s infinite;
}

/* Professional Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Enhanced Typography */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Professional Hover Effects */
.hover-lift {
    transition: var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Enhanced Card Interactions */
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

/* Professional Button Ripple Effect */
.btn {
    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.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Hero Mobile Styles */
    .hero-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
    
    .title-sub {
        font-size: 2rem;
    }
    
    .hero-illustration {
        width: 300px;
        height: 250px;
    }
    
    .character-head {
        width: 60px;
        height: 60px;
    }
    
    .character-body {
        width: 80px;
        height: 100px;
    }
    
    .chair-back {
        width: 100px;
        height: 80px;
    }
    
    .chair-seat {
        width: 120px;
        height: 15px;
    }
    
    /* Statistics Section Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    /* Why Choose Us Mobile */
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .choose-text h3 {
        font-size: 1.8rem;
    }
    
    .choose-cta {
        justify-content: center;
    }
    
    /* All Hero Sections Mobile */
    .hero,
    .pricing-hero,
    .channels-hero,
    .setup-hero,
    .resellers-hero,
    .about-hero,
    .contact-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-title,
    .pricing-hero-content h1,
    .channels-hero-content h1,
    .setup-hero-content h1,
    .resellers-hero-content h1,
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-description,
    .pricing-hero-content p,
    .channels-hero-content p,
    .setup-hero-content p,
    .resellers-hero-content p,
    .about-hero-content p,
    .contact-hero-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}
