/* ===== CSS VARIABLES ===== */
:root {
    --primary: #FF6B35;
    --primary-dark: #E85A2B;
    --primary-light: rgba(255, 107, 53, 0.15);
    --secondary: #7B2CBF;
    --secondary-dark: #5A189A;
    --accent: #00F5D4;
    --dark: #060609;
    --dark-light: #0c0c14;
    --dark-card: #13131f;
    --dark-border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;
    --success: #10b981;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    --gradient-2: linear-gradient(135deg, #7B2CBF 0%, #9D4EDD 100%);
    --gradient-hero: radial-gradient(circle at top center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    --gradient-text: linear-gradient(90deg, #FF6B35, #FF8E53, #7B2CBF);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.2);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== PARTICLES ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 5s; background: var(--secondary); }
.particle:nth-child(3) { left: 50%; animation-delay: 10s; }
.particle:nth-child(4) { left: 70%; animation-delay: 15s; background: var(--accent); }
.particle:nth-child(5) { left: 90%; animation-delay: 8s; background: var(--secondary); }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--gradient-1);
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 100;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(6, 6, 9, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    z-index: 99;
    padding: 16px 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.logo-text .highlight {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    gap: 12px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.btn-ghost {
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline-white:hover {
    background: white;
    color: var(--dark);
}

.btn-mega {
    flex-direction: column;
    padding: 24px 48px;
    background: var(--gradient-1);
    color: white;
    font-size: 18px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.btn-mega .btn-sub {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 4px;
}

.btn-plan {
    width: 100%;
    background: var(--dark);
    color: white;
    border: 1px solid var(--dark-border);
}

.btn-plan:hover {
    background: var(--primary);
}

.btn-plan-primary {
    width: 100%;
    background: var(--gradient-1);
    color: white;
}

.btn-cta-mega {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 24px 60px;
    background: var(--gradient-1);
    color: white;
    font-size: 20px;
    font-weight: 800;
    border-radius: var(--radius-lg);
    text-decoration: none;
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cta-mega:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 35px 70px rgba(255, 107, 53, 0.5);
}

.btn-sticky {
    background: var(--gradient-1);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(255,107,53,0.4);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
    animation: pulse-dot 2s infinite;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 8vw, 84px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    max-width: 900px;
    margin: 0 auto;
}

.stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--dark-light);
    padding: 20px 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.trust-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-headline {
    font-size: 14px;
    color: var(--text-muted);
}

.trust-icons {
    display: flex;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 24px auto 0;
}

/* ===== PROBLEM/SOLUTION ===== */
.problem-solution {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.ps-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 60px 40px;
    position: relative;
}

.ps-card.problem {
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    border-right: none;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, var(--dark-card) 100%);
}

.ps-card.solution {
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    border-left: none;
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: var(--primary);
}

.ps-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    margin-bottom: 32px;
}

.ps-card ul {
    list-style: none;
}

.ps-card li {
    padding: 16px 0;
    border-bottom: 1px solid var(--dark-border);
    font-size: 17px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ps-card.problem li::before {
    content: '✕';
    color: #ef4444;
    font-weight: 800;
}

.ps-card.solution li::before {
    content: '✓';
    color: var(--success);
    font-weight: 800;
}

.vs-center {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    position: relative;
    z-index: 2;
}

.vs-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    background: var(--dark);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--dark-border);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

/* ===== FEATURES ===== */
.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.feature-card:hover::before { opacity: 0.05; }

.feature-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(123, 44, 191, 0.05) 100%);
    border-color: rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===== CHANNEL SHOWCASE ===== */
.channel-showcase {
    padding: 120px 0;
    background: var(--dark);
}

.channel-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cat-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.cat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

.cat-icon-wrap {
    font-size: 56px;
    margin-bottom: 24px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.cat-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.cat-card ul {
    list-style: none;
    margin-top: auto;
}

.cat-card li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-card li::before {
    content: '→';
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
}

/* ===== SPORTS SECTION ===== */
.sports-detail {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
}

.sports-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sport-detailed {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.3s ease;
}

.sport-detailed:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.sport-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sport-emoji {
    font-size: 32px;
}

.sport-header h4 {
    font-size: 20px;
    font-weight: 700;
}

.sport-detailed p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-card);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, var(--dark-card) 100%);
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.popular-tag, .best-value-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.best-value-tag {
    background: var(--gradient-2);
    box-shadow: 0 10px 20px rgba(123, 44, 191, 0.3);
}

.plan-badge {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price .currency {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-muted);
}

.plan-price .amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    padding: 14px 0;
    border-bottom: 1px solid var(--dark-border);
    font-size: 16px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
}

.payment-methods {
    text-align: center;
    padding: 32px;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid var(--dark-border);
}

.methods {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.method {
    background: var(--dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 120px 0;
    background: var(--dark-light);
    position: relative;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 32px;
    color: white;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.step-arrow {
    font-size: 48px;
    color: var(--dark-border);
    margin-top: 16px;
}

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step p {
    color: var(--text-muted);
    font-size: 16px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(123, 44, 191, 0.05) 100%);
    border-color: var(--primary);
    transform: scale(1.05);
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: var(--dark-light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.02);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Space Grotesk', sans-serif;
}

.toggle {
    font-size: 24px;
    color: var(--text-dim);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border-radius: 50%;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
    color: var(--primary);
    background: var(--primary-light);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 32px 32px;
    max-height: 300px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 120px 0;
    background: var(--dark);
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(123, 44, 191, 0.1) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.cta-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-box > p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    font-size: 15px;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-light);
    border-top: 1px solid var(--dark-border);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social:hover {
    color: var(--primary);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-links a, .footer-links span {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--dark-border);
    font-size: 14px;
    color: var(--text-dim);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid, .sports-grid-detailed, .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .channel-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .features-grid, .sports-grid-detailed, .pricing-grid, .channel-categories, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-title { font-size: 48px; }
    
    .hero-ctas { flex-direction: column; }
    
    .ps-grid { grid-template-columns: 1fr; }
    
    .ps-card.problem, .ps-card.solution {
        border-radius: var(--radius-xl);
        border: 1px solid var(--dark-border);
    }
    
    .vs-center { padding: 20px 0; border: none; background: transparent; }
    
    .steps { flex-direction: column; }
    
    .step-arrow { transform: rotate(90deg); margin: 20px 0; }
    
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    
    .trust-bar .container { flex-direction: column; gap: 20px; }
    
    .nav-cta .btn-ghost { display: none; }
    
    .pricing-card.popular { transform: scale(1); }
}
