﻿
        /* ===== RESET & FONTS ===== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        /* Hidden SEO H1 */
        .seo-h1 {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        
        /* Skip to content link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--swiss-red);
            color: white;
            padding: 8px 16px;
            z-index: 10001;
            text-decoration: none;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f7fa;
            color: #1e293b;
            line-height: 1.5;
            scroll-behavior: smooth;
        }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        :root {
            --swiss-red: #c8102e;
            --swiss-white: #ffffff;
            --swiss-grey: #f0f0f0;
            --swiss-dark: #1a1f2e;
            --swiss-gold: #b8860b;
            --swiss-silver: #5f6c84;
            --swiss-success: #2e7d32;
        }
        .header {
            background: white;
            border-bottom: 4px solid var(--swiss-red);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .header-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
        .logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
        .swiss-flag { width: 50px; height: 50px; background-color: #bd0f0f; position: relative; border-radius: 12px; }
        .swiss-flag::before, .swiss-flag::after { content: ''; position: absolute; background-color: white; top: 50%; left: 50%; transform: translate(-50%, -50%); }
        .swiss-flag::before { width: 30px; height: 10px; }
        .swiss-flag::after { width: 10px; height: 30px; }
        .logo-text { font-weight: 700; font-size: 20px; color: var(--swiss-dark); }
        .logo-text span { color: var(--swiss-red); font-weight: 800; }
        .nav-menu { display: flex; gap: 30px; margin: 0 20px; }
        .nav-menu a { color: var(--swiss-dark); font-weight: 600; font-size: 16px; text-decoration: none; transition: color 0.2s; padding: 5px 0; border-bottom: 2px solid transparent; }
        .nav-menu a:hover, .nav-menu a.active { color: var(--swiss-red); border-bottom-color: var(--swiss-red); }
        .hero { background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%); padding: 60px 0 40px; border-bottom: 1px solid #eaeef2; }
        .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .hero-badge { display: inline-block; background: var(--swiss-red); color: white; font-weight: 600; font-size: 14px; padding: 8px 20px; border-radius: 40px; margin-bottom: 24px; letter-spacing: 0.3px; }
        .hero h1 { font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 16px; color: var(--swiss-dark); }
        .hero h1 span { color: var(--swiss-red); display: block; font-size: 28px; font-weight: 600; margin-top: 10px; }
        .hero-intro { font-size: 17px; color: #4b5563; margin-bottom: 28px; line-height: 1.7; max-width: 520px; }
        .hero-intro strong { color: var(--swiss-dark); }
        .hero-features { margin: 28px 0; }
        .hero-feature { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; font-size: 18px; }
        .hero-feature .check { background: var(--swiss-red); color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
        .hero-stats { display: flex; gap: 40px; margin-top: 40px; }
        .stat-item { text-align: center; }
        .stat-number { font-size: 32px; font-weight: 800; color: var(--swiss-red); }
        .stat-label { font-size: 14px; color: #5f6c84; }
        .hero-image { background: #1a1f2e; border-radius: 32px; padding: 40px; color: white; box-shadow: 0 30px 50px -20px rgba(0,0,0,0.3); position: relative; overflow: hidden; }
        .hero-image::before { content: ""; position: absolute; top: 0; right: 0; width: 150px; height: 150px; background: var(--swiss-red); opacity: 0.1; border-radius: 50%; transform: translate(50px, -50px); }
        .flag-row { display: flex; gap: 16px; font-size: 32px; margin-bottom: 24px; }
        .channel-badge { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 60px; padding: 16px 24px; display: flex; flex-wrap: wrap; gap: 16px; margin: 24px 0; border: 1px solid rgba(255,255,255,0.2); }
        .channel-badge span { background: rgba(200,16,46,0.3); padding: 4px 16px; border-radius: 40px; font-weight: 500; }
        
        /* Trust Badges */
        .trust-badges { display: flex; justify-content: center; gap: 48px; margin: 60px 0; flex-wrap: wrap; }
        .trust-item { text-align: center; background: white; padding: 24px 32px; border-radius: 20px; border: 1px solid #eaeef2; transition: all 0.3s; min-width: 140px; }
        .trust-item:hover { border-color: var(--swiss-red); transform: translateY(-4px); }
        .trust-item i { font-size: 36px; color: var(--swiss-red); margin-bottom: 12px; }
        .trust-item span { display: block; font-weight: 600; color: var(--swiss-dark); }
        .trust-item small { color: #5f6c84; font-size: 12px; }
        
        /* Explainer Section */
        .explainer-section { background: linear-gradient(135deg, #f8f9fc, white); border-radius: 28px; padding: 40px; margin: 40px 0; border: 1px solid #eaeef2; }
        .explainer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .explainer-steps { background: rgba(200,16,46,0.05); border-radius: 20px; padding: 30px; text-align: center; }
        .step-list { text-align: left; margin-top: 20px; }
        .step-list p { color: #5f6c84; font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
        .step-list i { color: var(--swiss-red); width: 20px; }
        
        /* VOD Carousel */
        .vod-carousel-section { margin: 60px 0 40px; }
        .vod-carousel-container { position: relative; margin: 40px 0; }
        .vod-carousel-track { display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; padding: 8px 4px 20px 4px; }
        .vod-carousel-track::-webkit-scrollbar { display: none; }
        .vod-card { flex: 0 0 auto; width: 200px; background: white; border-radius: 16px; overflow: hidden; border: 1px solid #eaeef2; transition: all 0.3s ease; cursor: pointer; }
        .vod-card:hover { transform: translateY(-8px); border-color: var(--swiss-red); box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15); }
        .vod-poster { position: relative; width: 100%; aspect-ratio: 2 / 3; overflow: hidden; }
        .vod-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
        .vod-card:hover .vod-poster img { transform: scale(1.05); }
        .vod-badge { position: absolute; top: 10px; right: 10px; background: var(--swiss-red); color: white; font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 6px; }
        .vod-info { padding: 12px; }
        .vod-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--swiss-dark); }
        .vod-year { font-size: 11px; color: #5f6c84; }
        .vod-quality { display: inline-block; background: rgba(200,16,46,0.15); color: var(--swiss-red); font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 4px; margin-top: 6px; }
        .carousel-controls { display: flex; justify-content: center; gap: 20px; margin: 30px 0 20px; }
        .carousel-btn { background: white; border: 1px solid #eaeef2; color: var(--swiss-red); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; transition: all 0.3s; font-size: 18px; }
        .carousel-btn:hover { background: var(--swiss-red); color: white; border-color: var(--swiss-red); }
        
        /* Features Grid */
        .features { padding: 60px 0; background: #f8f9fc; border-radius: 40px; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
        .feature-card { background: white; border-radius: 24px; padding: 32px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #eaeef2; transition: all 0.3s; }
        .feature-card:hover { transform: translateY(-5px); border-color: var(--swiss-red); }
        .feature-icon { font-size: 40px; margin-bottom: 20px; }
        .feature-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--swiss-dark); }
        .feature-card p { color: #5f6c84; font-size: 15px; }
        .feature-badge { display: inline-block; background: #eaeef2; padding: 4px 12px; border-radius: 40px; font-size: 13px; margin-top: 16px; font-weight: 500; }
        
        /* How It Works (3 Steps) */
        .steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 50px 0; }
        .step-card { background: white; border-radius: 28px; padding: 32px 24px; text-align: center; border: 1px solid #eaeef2; transition: all 0.3s; }
        .step-card:hover { transform: translateY(-6px); border-color: var(--swiss-red); }
        .step-number { width: 64px; height: 64px; background: linear-gradient(135deg, var(--swiss-red), #a00d26); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; font-weight: 800; color: white; }
        .step-card h3 { color: var(--swiss-dark); margin-bottom: 12px; }
        .step-card p { color: #5f6c84; }
        
        /* Savings Comparison */
        .savings-comparison { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; background: linear-gradient(135deg, rgba(200,16,46,0.08), rgba(160,13,38,0.04)); border-radius: 28px; padding: 32px; margin: 40px 0; border: 1px solid rgba(200,16,46,0.2); }
        .savings-card { text-align: center; padding: 20px; background: white; border-radius: 20px; min-width: 150px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .savings-card.highlight { background: linear-gradient(135deg, var(--swiss-red), #a00d26); transform: scale(1.05); }
        .savings-card.highlight .savings-new, .savings-card.highlight .savings-new-price { color: white; }
        .savings-icon i { font-size: 32px; margin-bottom: 12px; }
        .savings-old, .savings-new { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
        .savings-old-price { font-size: 20px; font-weight: 800; color: #EF4444; text-decoration: line-through; }
        .savings-new-price { font-size: 28px; font-weight: 800; color: var(--swiss-red); }
        .savings-arrow i { font-size: 32px; color: var(--swiss-red); }
        .savings-total { text-align: center; padding: 20px; background: #f0f2f5; border-radius: 20px; border: 1px solid var(--swiss-red); }
        .savings-total-label { font-size: 14px; color: #5f6c84; margin-bottom: 8px; }
        .savings-total-amount { font-size: 32px; font-weight: 800; color: var(--swiss-red); }
        
        /* Pricing Section */
        .section-title { text-align: center; font-size: 42px; font-weight: 700; color: var(--swiss-dark); margin-bottom: 20px; }
        .section-title span { color: var(--swiss-red); }
        .section-sub { text-align: center; color: #5f6c84; font-size: 18px; max-width: 600px; margin: 0 auto 40px; }
        .device-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
        .device-tab { background: white; border: 2px solid #eaeef2; padding: 12px 28px; border-radius: 40px; font-weight: 600; cursor: pointer; transition: all 0.3s; color: #5f6c84; }
        .device-tab.active, .device-tab:hover { background: var(--swiss-red); color: white; border-color: var(--swiss-red); }
        .price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; max-width: 960px; margin-left: auto; margin-right: auto; }
        .price-card { background: white; border-radius: 28px; padding: 32px 24px; border: 2px solid #eaeef2; transition: all 0.3s; position: relative; text-align: center; }
        .price-card:hover { transform: translateY(-6px); border-color: var(--swiss-red); }
        .price-card.popular { border-color: var(--swiss-red); background: linear-gradient(180deg, white, rgba(200,16,46,0.05)); transform: scale(1.02); }
        .popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--swiss-red), #a00d26); color: white; padding: 4px 16px; border-radius: 30px; font-size: 11px; font-weight: 700; white-space: nowrap; }
        .price-name { font-size: 22px; font-weight: 800; margin-bottom: 8px; color: var(--swiss-dark); }
        .price-value { font-size: 42px; font-weight: 800; margin: 15px 0; color: var(--swiss-dark); }
        .price-value small { font-size: 14px; color: #5f6c84; }
        .price-monthly { font-size: 16px; color: var(--swiss-red); margin-bottom: 16px; font-weight: 600; }
        .price-device { font-size: 13px; color: #5f6c84; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #eaeef2; }
        .price-features { list-style: none; margin: 20px 0 30px; }
        .price-features li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 13px; border-bottom: 1px solid #eaeef2; color: #4b5563; }
        .price-features i { color: var(--swiss-red); }
        .btn-price-solid { background: linear-gradient(135deg, var(--swiss-red), #a00d26); color: white; width: 100%; padding: 14px 16px; border-radius: 40px; font-weight: 800; font-size: 15px; text-align: center; text-decoration: none; display: block; transition: all 0.3s; border: none; cursor: pointer; }
        .btn-price-solid:hover { transform: translateY(-2px); background: linear-gradient(135deg, #a00d26, var(--swiss-red)); }
        
        /* Compatible Apps Section */
        .compatible-apps-section { background: linear-gradient(135deg, #f8f9fc, white); border-radius: 28px; padding: 50px 40px; margin: 50px 0; border: 1px solid #eaeef2; text-align: center; }
        .apps-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin: 40px 0 20px; }
        .app-card { background: white; border-radius: 20px; padding: 20px 12px; text-align: center; border: 1px solid #eaeef2; transition: all 0.3s; }
        .app-card:hover { transform: translateY(-5px); border-color: var(--swiss-red); }
        .app-card h4 { font-size: 14px; font-weight: 600; color: var(--swiss-dark); margin-bottom: 4px; }
        .app-card p { font-size: 11px; color: #5f6c84; }
        .device-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; padding-top: 20px; border-top: 1px solid #eaeef2; }
        .device-list span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #5f6c84; background: #f0f2f5; padding: 6px 14px; border-radius: 30px; }
        .device-list i { color: var(--swiss-red); }
        
        /* Value Grid */
        .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 50px 0; }
        .value-card-large { background: white; border-radius: 28px; padding: 32px; text-align: center; border: 1px solid #eaeef2; transition: all 0.3s; }
        .value-card-large:hover { transform: translateY(-5px); border-color: var(--swiss-red); }
        .value-icon-large { width: 70px; height: 70px; background: rgba(200,16,46,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
        .value-icon-large i { font-size: 32px; color: var(--swiss-red); }
        .value-card-large h3 { font-size: 20px; margin-bottom: 12px; color: var(--swiss-dark); }
        .value-card-large p { color: #5f6c84; font-size: 14px; line-height: 1.6; }
        
        /* Free Trial Banner */
        .free-trial-banner { background: linear-gradient(135deg, rgba(200,16,46,0.1), rgba(160,13,38,0.05)); border: 1px solid rgba(200,16,46,0.2); border-radius: 28px; padding: 32px 40px; text-align: center; margin: 50px 0; }
        .free-trial-banner h3 { font-size: 26px; margin-bottom: 12px; color: var(--swiss-red); }
        .free-trial-banner p { color: #4b5563; }
        
        /* Swiss Channels */
        .swiss-channels { background: white; border-radius: 40px; padding: 60px 0; margin: 40px 0; }
        .channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
        .channel-category { background: #f8f9fc; border-radius: 24px; padding: 30px 20px; text-align: center; border: 1px solid #eaeef2; }
        .channel-category h3 { font-size: 24px; margin-bottom: 20px; color: var(--swiss-dark); border-bottom: 2px solid var(--swiss-red); display: inline-block; padding-bottom: 8px; }
        .channel-list { list-style: none; }
        .channel-list li { padding: 8px 0; color: #4b5563; font-weight: 500; }
        .channel-list li strong { color: var(--swiss-red); }
        
        /* Reviews */
        .reviews { padding: 60px 0; }
        .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }
        .review-card { background: white; border-radius: 24px; padding: 30px; border: 1px solid #eaeef2; transition: all 0.3s; }
        .review-card:hover { transform: translateY(-5px); border-color: var(--swiss-red); }
        .review-stars { color: #ffb800; font-size: 18px; margin-bottom: 15px; }
        .review-text { color: #1e293b; font-style: italic; margin-bottom: 20px; line-height: 1.6; }
        .review-author { display: flex; align-items: center; gap: 12px; }
        .review-author img { width: 48px; height: 48px; border-radius: 50%; background: #f0f2f5; }
        .author-info { font-weight: 600; color: var(--swiss-dark); }
        .author-info small { display: block; color: #5f6c84; font-weight: 400; font-size: 13px; }
        .review-badge { background: #eaeef2; padding: 4px 12px; border-radius: 40px; font-size: 12px; margin-top: 12px; display: inline-block; }
        
        /* FAQ */
        .faq { padding: 60px 0; background: white; border-radius: 40px; }
        .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 40px; }
        .faq-item { background: #f8f9fc; border-radius: 20px; padding: 25px; transition: all 0.3s; }
        .faq-item:hover { transform: translateY(-3px); }
        .faq-question { font-size: 18px; font-weight: 700; color: var(--swiss-red); margin-bottom: 12px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-question span { transition: transform 0.3s; }
        .faq-answer { color: #5f6c84; font-size: 15px; line-height: 1.6; display: none; }
        .faq-answer.show { display: block; }
        
        /* SEO Content Block */
        .seo-content-block { background: linear-gradient(135deg, #f8f9fc, white); border-radius: 28px; padding: 40px; margin: 50px 0; border: 1px solid #eaeef2; }
        .seo-content-block h3 { font-size: 24px; color: var(--swiss-red); margin-bottom: 20px; }
        .seo-content-block p { color: #4b5563; margin-bottom: 16px; line-height: 1.7; }
        
        /* FAQ Content Block */
        .faq-content-block { background: linear-gradient(135deg, rgba(200,16,46,0.05), rgba(160,13,38,0.02)); border-radius: 28px; padding: 40px; margin: 50px 0; border: 1px solid rgba(200,16,46,0.15); }
        .faq-content-block h3 { font-size: 24px; color: var(--swiss-red); margin-bottom: 24px; }
        .faq-question-block { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #eaeef2; }
        .faq-question-block:last-child { border-bottom: none; padding-bottom: 0; }
        .faq-question-block h4 { font-size: 18px; font-weight: 700; color: var(--swiss-dark); margin-bottom: 8px; }
        .faq-question-block p { color: #5f6c84; line-height: 1.6; }
        
        /* Bottom Reminder */
        .bottom-reminder { background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%); border-radius: 40px; padding: 50px; margin: 40px auto; border: 2px solid var(--swiss-red); text-align: center; }
        .pulse-banner { background: linear-gradient(135deg, var(--swiss-red) 0%, #a00d26 100%); color: white; font-size: 30px; font-weight: 800; padding: 15px 30px; border-radius: 60px; display: inline-block; margin-bottom: 30px; border: 3px solid #ffd700; }
        .btn-swiss { background: var(--swiss-red); color: white; border: none; padding: 20px 40px; font-size: 20px; font-weight: 700; border-radius: 60px; cursor: pointer; width: 100%; transition: all 0.2s; text-decoration: none; display: inline-block; text-align: center; }
        .btn-swiss:hover { background: white; color: var(--swiss-red); border: 2px solid var(--swiss-red); transform: translateY(-2px); }
        .payment-methods { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
        .payment-method { background: #f0f2f5; padding: 8px 16px; border-radius: 40px; font-size: 14px; font-weight: 500; }
        
        /* Footer */
        .footer { background: var(--swiss-dark); color: white; padding: 50px 0 30px; border-radius: 40px 40px 0 0; margin-top: 60px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-logo { font-size: 24px; font-weight: 700; margin-bottom: 20px; cursor: pointer; }
        .footer-logo span { color: var(--swiss-red); }
        .footer-address { color: #cbd5e1; line-height: 1.8; }
        .footer-address a { color: #cbd5e1; text-decoration: none; }
        .footer-address a:hover { color: var(--swiss-red); }
        .footer-links a { color: #cbd5e1; text-decoration: none; display: block; margin-bottom: 12px; cursor: pointer; }
        .footer-links a:hover { color: var(--swiss-red); }
        .footer-bottom { border-top: 1px solid #2a3142; padding-top: 30px; text-align: center; color: #cbd5e1; }
        
        /* Floating WhatsApp */
        .floating-whatsapp { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); transition: all 0.3s ease; z-index: 9999; text-decoration: none; animation: whatsapp-pulse 2s infinite; border: 3px solid white; }
        .floating-whatsapp:hover { transform: scale(1.1); background: #20b859; }
        @keyframes whatsapp-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
        
        /* Hero trial button */
        .hero-trial-button { background: #ffd700; color: var(--swiss-dark); border: none; padding: 10px 20px; border-radius: 40px; font-weight: 800; font-size: 14px; text-decoration: none; display: inline-block; transition: all 0.3s ease; }
        .hero-trial-button:hover { transform: translateY(-3px); background: #ffaa00; }
        
        @media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; } .features-grid { grid-template-columns: repeat(2, 1fr); } .reviews-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: 1fr 1fr; } .channel-grid { grid-template-columns: repeat(2, 1fr); } .apps-grid { grid-template-columns: repeat(3, 1fr); } .price-cards { grid-template-columns: 1fr; max-width: 400px; } .price-card.popular { transform: scale(1); } }
        @media (max-width: 768px) { .hero h1 { font-size: 36px; text-align: center; } .hero h1 span { font-size: 22px; } .features-grid { grid-template-columns: 1fr; } .reviews-grid { grid-template-columns: 1fr; } .faq-grid { grid-template-columns: 1fr; } .channel-grid { grid-template-columns: 1fr; } .apps-grid { grid-template-columns: repeat(2, 1fr); } .value-grid { grid-template-columns: 1fr; } .steps-container { grid-template-columns: 1fr; } .header-content { flex-direction: column; } .footer-grid { grid-template-columns: 1fr; text-align: center; } .savings-comparison { flex-direction: column; } .vod-card { width: 160px; } }
        @media (max-width: 480px) { .hero h1 { font-size: 28px; } .pulse-banner { font-size: 22px !important; } }
    

/* ===== BLOG & EXTRA ===== */

        /* ===== RESET & FONTS ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f7fa;
            color: #1e293b;
            line-height: 1.5;
        }

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

        /* ===== SWISS DESIGN SYSTEM ===== */
        :root {
            --swiss-red: #c8102e;
            --swiss-white: #ffffff;
            --swiss-grey: #f0f0f0;
            --swiss-dark: #1a1f2e;
            --swiss-gold: #b8860b;
            --swiss-silver: #8a8f9c;
            --swiss-success: #2e7d32;
        }

        /* ===== HEADER ===== */
        .header {
            background: white;
            border-bottom: 4px solid var(--swiss-red);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }

        .logo-icon {
            background: var(--swiss-red);
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 24px;
        }

        .logo-text {
            font-weight: 700;
            font-size: 20px;
            color: var(--swiss-dark);
        }

        .logo-text span {
            color: var(--swiss-red);
            font-weight: 800;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            margin: 0 20px;
        }

        .nav-menu a {
            color: var(--swiss-dark);
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: color 0.2s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--swiss-red);
            border-bottom-color: var(--swiss-red);
        }

        .lang-switch {
            display: flex;
            gap: 8px;
            background: var(--swiss-grey);
            padding: 4px;
            border-radius: 40px;
        }

        .lang-btn {
            border: none;
            background: transparent;
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            color: #4b5563;
            transition: all 0.2s;
        }

        .lang-btn.active {
            background: var(--swiss-red);
            color: white;
        }

        /* ===== BLOG HERO ===== */
        .blog-hero {
            background: linear-gradient(135deg, var(--swiss-red) 0%, #a00d26 100%);
            padding: 60px 0;
            color: white;
            text-align: center;
        }

        .blog-hero h1 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .blog-hero p {
            font-size: 20px;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb {
            display: none;
        }

        /* ===== BLOG LAYOUT ===== */
        .blog-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin: 60px 0;
        }

        /* ===== ARTICLE MODÃˆLE ===== */
        .blog-post {
            background: white;
            border-radius: 24px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid #eaeef2;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: transform 0.3s;
        }

        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .post-category {
            display: inline-block;
            background: var(--swiss-red);
            color: white;
            padding: 5px 15px;
            border-radius: 40px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .post-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--swiss-dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .post-title a {
            color: var(--swiss-dark);
            text-decoration: none;
        }

        .post-title a:hover {
            color: var(--swiss-red);
        }

        .post-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            color: #5f6c84;
            font-size: 14px;
        }

        .post-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .post-excerpt {
            color: #4b5563;
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.6;
        }

        .read-more {
            display: inline-block;
            background: transparent;
            color: var(--swiss-red);
            border: 2px solid var(--swiss-red);
            padding: 10px 25px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }

        .read-more:hover {
            background: var(--swiss-red);
            color: white;
        }

        /* ===== MESSAGE AUCUN ARTICLE ===== */
        .no-articles {
            background: white;
            border-radius: 24px;
            padding: 60px 30px;
            text-align: center;
            border: 1px solid #eaeef2;
            margin-bottom: 30px;
        }

        .no-articles-icon {
            font-size: 64px;
            margin-bottom: 20px;
            color: var(--swiss-red);
        }

        .no-articles h3 {
            font-size: 24px;
            color: var(--swiss-dark);
            margin-bottom: 15px;
        }

        .no-articles p {
            color: #5f6c84;
            margin-bottom: 25px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .no-articles .btn-swiss {
            display: inline-block;
            background: var(--swiss-red);
            color: white;
            padding: 12px 30px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.2s;
        }

        .no-articles .btn-swiss:hover {
            background: #a00d26;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            background: white;
            border-radius: 24px;
            padding: 30px;
            border: 1px solid #eaeef2;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        .sidebar-widget {
            margin-bottom: 40px;
        }

        .sidebar-widget:last-child {
            margin-bottom: 0;
        }

        .widget-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--swiss-dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--swiss-red);
        }

        /* ===== RECHERCHE ===== */
        .search-form {
            display: flex;
            gap: 10px;
        }

        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #eaeef2;
            border-radius: 40px;
            font-size: 14px;
            outline: none;
        }

        .search-input:focus {
            border-color: var(--swiss-red);
        }

        .search-btn {
            background: var(--swiss-red);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.2s;
        }

        .search-btn:hover {
            background: #a00d26;
        }

        /* ===== CATÃ‰GORIES ===== */
        .categories-list {
            list-style: none;
        }

        .categories-list li {
            margin-bottom: 12px;
        }

        .categories-list a {
            display: flex;
            justify-content: space-between;
            color: #4b5563;
            text-decoration: none;
            padding: 8px 0;
            transition: color 0.2s;
        }

        .categories-list a:hover {
            color: var(--swiss-red);
        }

        .categories-list span {
            background: #f0f2f5;
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 12px;
        }

        /* ===== ARTICLES RÃ‰CENTS ===== */
        .recent-posts {
            list-style: none;
        }

        .recent-post {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eaeef2;
        }

        .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .recent-post-image {
            width: 70px;
            height: 70px;
            background: #f0f2f5;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--swiss-red);
        }

        .recent-post-info h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .recent-post-info a {
            color: var(--swiss-dark);
            text-decoration: none;
        }

        .recent-post-info a:hover {
            color: var(--swiss-red);
        }

        .recent-post-date {
            font-size: 12px;
            color: #5f6c84;
        }

        /* ===== TAGS ===== */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background: #f0f2f5;
            color: #4b5563;
            padding: 6px 15px;
            border-radius: 40px;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .tag:hover {
            background: var(--swiss-red);
            color: white;
        }

        /* ===== NEWSLETTER ===== */
        .newsletter {
            background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
            border-radius: 20px;
            padding: 25px;
            text-align: center;
        }

        .newsletter h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--swiss-dark);
        }

        .newsletter p {
            font-size: 14px;
            color: #5f6c84;
            margin-bottom: 20px;
        }

        .newsletter-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #eaeef2;
            border-radius: 40px;
            margin-bottom: 10px;
            outline: none;
        }

        .newsletter-input:focus {
            border-color: var(--swiss-red);
        }

        .newsletter-btn {
            width: 100%;
            background: var(--swiss-red);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .newsletter-btn:hover {
            background: #a00d26;
        }

        /* ===== PAGINATION ===== */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 40px 0;
        }

        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: white;
            border: 1px solid #eaeef2;
            border-radius: 50%;
            color: var(--swiss-dark);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
        }

        .page-link:hover,
        .page-link.active {
            background: var(--swiss-red);
            color: white;
            border-color: var(--swiss-red);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--swiss-dark);
            color: white;
            padding: 50px 0 30px;
            border-radius: 40px 40px 0 0;
            margin-top: 60px;
        }

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

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .footer-logo span {
            color: var(--swiss-red);
        }

        .footer-address {
            color: #a0a8ba;
            line-height: 1.8;
        }

        .footer-links a {
            color: #a0a8ba;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--swiss-red);
        }

        .footer-bottom {
            border-top: 1px solid #2a3142;
            padding-top: 30px;
            text-align: center;
            color: #5f6c84;
        }

        /* ===== SWISS FLAG ===== */
        .swiss-flag {
            width: 50px;
            height: 50px;
            background-color: #bd0f0f;
            position: relative;
            border-radius: 12px;
        }

        .swiss-flag::before,
        .swiss-flag::after {
            content: '';
            position: absolute;
            background-color: white;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .swiss-flag::before {
            width: 30px;
            height: 10px;
        }

        .swiss-flag::after {
            width: 10px;
            height: 30px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .blog-layout {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
            }
            
            .nav-menu {
                margin: 10px 0;
            }
            
            .blog-hero h1 {
                font-size: 36px;
            }
            
            .blog-hero p {
                font-size: 18px;
            }
            
            .post-title {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .post-meta {
                flex-direction: column;
                gap: 5px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
    
