/* ==========================================================================
   Base Styles & Variables (Light Theme - White & Blue)
   ========================================================================== */
:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.4);
    
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    
    --text-main: #0f172a;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    --border: #e2e8f0;
    
    --radius: 16px;
    --radius-sm: 8px;
    --radius-pill: 50px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.section-header p {
    color: var(--text-light);
    margin-top: 16px;
    font-size: 1.1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #1e3a8a, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.keyword-highlight {
    color: var(--primary);
    font-weight: 700;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
    color: var(--text-white);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn):hover,
.nav-links a.active:not(.btn) {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-main);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #eff6ff 0%, #ffffff 50%);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    padding: 6px 16px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid #bfdbfe;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-feature svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Trust & Carousels
   ========================================================================== */
section {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.devices-swiper .swiper-slide {
    width: 200px;
}

.sports-swiper .swiper-slide {
    width: 150px;
}

.movies-swiper {
    padding: 20px 0;
}

.movies-swiper .swiper-slide {
    width: 250px;
    height: auto;
}

.movies-swiper .swiper-slide img {
    border-radius: var(--radius);
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    opacity: 1;
    filter: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.movies-swiper .swiper-slide:hover img {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.swiper-slide img {
    max-height: 60px;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.swiper-slide:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ==========================================================================
   Pricing Section (Dark Wrapper Design)
   ========================================================================== */
#preise {
    background: var(--bg-alt); /* Section is light */
    padding: 80px 0;
}

.pricing-wrapper-dark {
    background: #080d1a; /* Very dark blue */
    border: 1px solid #1e293b;
    border-radius: 32px;
    padding: 60px 40px;
    position: relative;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-wrapper-dark .section-header h2,
.pricing-wrapper-dark .section-header h1 {
    color: white;
    text-align: left;
    font-size: 2rem;
    margin-bottom: 8px;
}

.pricing-wrapper-dark .section-header p {
    color: #94a3b8;
    text-align: left;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.pricing-wrapper-dark .section-header {
    margin-bottom: 10px;
    max-width: 100%;
}

/* Top Badges */
.pricing-top-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.viewing-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.countdown-badge {
    background: #0f172a;
    color: #00d8ff;
    border: 1px solid #00d8ff;
    box-shadow: 0 0 15px rgba(0, 216, 255, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

/* Device Tabs */
.device-tabs-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.device-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.device-tab {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #1e293b;
    border-radius: var(--radius-pill);
    color: #cbd5e1;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.device-tab:hover {
    border-color: #334155;
    background: rgba(255, 255, 255, 0.05);
}

.device-tab.active {
    background: #00d8ff;
    color: #000;
    border-color: #00d8ff;
    box-shadow: 0 0 20px rgba(0, 216, 255, 0.4);
}

.device-tab svg {
    width: 18px;
    height: 18px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: var(--radius);
    padding: 40px 24px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: #334155;
}

.pricing-card.popular {
    border: 2px solid #00d8ff;
    box-shadow: 0 0 30px rgba(0, 216, 255, 0.15);
    transform: scale(1.05);
    z-index: 10;
    background: #111827;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff9800, #ff5722);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.4);
    white-space: nowrap;
}

.pricing-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.pricing-price span {
    font-size: 1.5rem;
    margin-top: 8px;
    margin-right: 4px;
}

.pricing-period {
    color: #94a3b8;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.pricing-calc {
    color: #22c55e;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.pricing-features li svg {
    color: #22c55e;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn {
    width: 100%;
    background: #22c55e;
    color: #000;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.pricing-card .btn:hover {
    background: #16a34a;
    color: white;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #bfdbfe;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-light);
}

/* ==========================================================================
   CTA & Footer
   ========================================================================== */
.cta-section {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 24px;
}

.cta-section p {
    color: #bfdbfe;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--primary);
}

footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 24px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    margin-bottom: 12px;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 32px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 99;
    }
    .nav-links.active { right: 0; }
    .nav-links a:not(.btn) { font-size: 1.1rem; }
    
    .hero { padding: 140px 0 80px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-features { flex-direction: column; align-items: flex-start; gap: 16px; }
    
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    
    section { padding: 60px 0; }

    /* Mobile adjustments for Dark Pricing Wrapper */
    .pricing-wrapper-dark {
        padding: 40px 20px;
        border-radius: 20px;
    }
    .pricing-wrapper-dark .section-header h2,
    .pricing-wrapper-dark .section-header h1 {
        font-size: 1.6rem;
        text-align: center;
    }
    .pricing-wrapper-dark .section-header p {
        text-align: center;
    }
    .pricing-top-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
    }
    .viewing-badge {
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .countdown-badge {
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
    .device-tabs-wrapper {
        justify-content: center;
    }
    .device-tabs {
        justify-content: center;
        gap: 8px;
    }
    .device-tab {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
