/* ========================================
   HOMEPAGE - TVSpeedy Clean Design
   ======================================== */

/* ==========================================
   HERO
   ========================================== */
.hero-monster {
    position: relative;
    padding: 140px 0 80px;
    background: #ffffff;
    overflow: hidden;
}

.hero-monster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(79, 70, 229, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.03) 0%, transparent 60%);
}

.hero-monster .container { position: relative; z-index: 1; }

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    border: 1px solid rgba(79, 70, 229, 0.15);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.hero-badge i { color: #fbbf24; }

.hero-monster h1 {
    font-size: clamp(34px, 7vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.hero-monster h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong { color: var(--accent-primary); }

.hero-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.hero-stat i { color: var(--accent-primary); font-size: 16px; }
.hero-stat span { font-size: 13px; font-weight: 600; color: var(--text-primary); }

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-trust-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-surface);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-stars { color: #fbbf24; font-size: 16px; letter-spacing: 2px; }
.trust-text { font-size: 13px; color: var(--text-muted); }
.trust-text strong { color: var(--text-primary); }

.hero-visual { max-width: 500px; margin: 0 auto; }

.hero-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.hero-image-container img { width: 100%; display: block; }

.hero-image-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.03); }
}

/* ==========================================
   TV MOCKUP - Pur CSS (hero)
   ========================================== */
.tv-mockup {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.tv-screen {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    padding: 32px 24px 20px;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border: 3px solid rgba(79, 70, 229, 0.15);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 25px 50px rgba(15, 23, 42, 0.25),
        0 0 80px rgba(79, 70, 229, 0.08);
}

/* Reflet subtil en haut */
.tv-screen::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}

/* Badge LIVE */
.tv-live-badge {
    position: absolute;
    top: 16px; left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.tv-live-dot {
    width: 6px; height: 6px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Bouton Play central */
.tv-play-btn {
    position: absolute;
    top: 50%; left: 40%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
}

.tv-play-btn:hover {
    background: rgba(79, 70, 229, 0.6);
    transform: translate(-50%, -50%) scale(1.05);
}

.tv-play-btn svg { margin-left: 2px; }

/* Cards latérales */
.tv-side-cards {
    position: absolute;
    top: 14px; right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.tv-card-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 10px;
    min-width: 110px;
}

.tv-card-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tv-card-title {
    font-size: 10px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.tv-card-sub {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Barre de lecture */
.tv-player-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 24px 20px 16px;
    z-index: 2;
}

.tv-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    margin-bottom: 10px;
    position: relative;
}

.tv-progress-fill {
    width: 35%;
    height: 100%;
    background: var(--accent-primary);
    border-radius: 3px;
}

.tv-progress-dot {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    width: 10px; height: 10px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.tv-player-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tv-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.tv-duration {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-variant-numeric: tabular-nums;
    margin-right: auto;
}

.tv-player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tv-badge-4k {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive TV */
@media (max-width: 600px) {
    .tv-screen {
        padding: 24px 16px 16px;
        border-radius: 14px;
        aspect-ratio: 16 / 12;
    }
    .tv-card-mini { min-width: 90px; padding: 6px 8px; }
    .tv-card-title { font-size: 9px; }
    .tv-play-btn { width: 44px; height: 44px; }
    .tv-play-btn svg { width: 18px; height: 18px; }
    .tv-side-cards { top: 10px; right: 10px; }
}

/* ==========================================
   INTRO SECTION
   ========================================== */
.intro-section {
    padding: 80px 0;
    background: var(--bg-section-alt);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.intro-content h2 {
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.intro-content h2 span { color: var(--accent-primary); }

.intro-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-text strong { color: var(--text-primary); }

.intro-text a {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.intro-text a:hover { border-bottom-color: var(--accent-primary); }

.intro-highlight-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: white;
    margin: 28px 0;
}

.intro-highlight-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-highlight-box ul { padding: 0; margin: 0; }

.intro-highlight-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.intro-highlight-box li:last-child { border-bottom: none; }
.intro-highlight-box li i { color: #34d399; margin-top: 3px; }

.intro-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
}

.intro-feature-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.intro-feature-icon {
    width: 48px; height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.intro-feature-icon i { font-size: 22px; color: var(--accent-primary); }

.intro-feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.intro-feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   PRICING
   ========================================== */
.pricing-monster {
    padding: 80px 0;
    background: var(--bg-section-alt);
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-header-center .section-label {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-header-center h2 {
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-header-center p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-seo-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.section-seo-link a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--accent-primary);
    transition: var(--transition);
}

.section-seo-link a:hover { border-bottom-style: solid; }

.pricing-grid-monster {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
    margin: 0 auto 48px;
}

.price-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition-slow);
}

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

/* Featured card - le style violet comme dans l'image */
.price-card.featured {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25);
}

.price-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.3);
}

.price-card.featured .price-card-duration,
.price-card.featured .price-card-monthly,
.price-card.featured .price-card-amount .currency,
.price-card.featured .price-card-amount .amount,
.price-card.featured .price-card-features li {
    color: rgba(255, 255, 255, 0.95);
}

.price-card.featured .price-card-features li {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.price-card.featured .price-card-features i {
    color: #34d399;
}

.price-card.featured .btn {
    background: white;
    color: var(--accent-primary);
    font-weight: 700;
}

.price-card.featured .btn:hover {
    background: #f0f0ff;
    transform: translateY(-1px);
}

.price-card-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: white;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    letter-spacing: 0.3px;
}

.price-card-duration {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card-monthly {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price-card-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 24px;
}

.price-card-amount .currency {
    font-size: 20px;
    font-weight: 700;
    margin-top: 8px;
    color: var(--text-primary);
}

.price-card-amount .amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.price-card-features {
    text-align: left;
    padding: 0;
    margin-bottom: 24px;
}

.price-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.price-card-features li:last-child { border-bottom: none; }
.price-card-features i { color: var(--accent-primary); font-size: 14px; flex-shrink: 0; }

.price-card .btn { width: 100%; }

.pricing-guarantees {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-surface);
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--text-secondary);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.guarantee-badge i { color: var(--accent-primary); font-size: 16px; }

/* ==========================================
   BENEFITS
   ========================================== */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

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

.benefit-card {
    background: var(--bg-section-alt);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.benefit-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.benefit-icon {
    width: 56px; height: 56px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i { font-size: 24px; color: var(--accent-primary); }

.benefit-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.benefit-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-primary);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.benefit-card > p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.benefit-card ul { padding: 0; margin: 0; }

.benefit-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.benefit-card li i { color: var(--accent-primary); font-size: 12px; }

/* ==========================================
   HOW TO
   ========================================== */
.howto-section {
    padding: 80px 0;
    background: var(--bg-section-alt);
}

.howto-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.howto-step {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.howto-step:hover {
    border-color: var(--accent-primary);
    transform: translateX(6px);
    box-shadow: var(--shadow-card-hover);
}

.howto-step-number {
    width: 48px; height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.howto-step-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.howto-step-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.step-highlight {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-primary);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.howto-cta {
    text-align: center;
    margin-top: 48px;
}

.howto-cta p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 14px;
}

/* ==========================================
   CHANNELS
   ========================================== */
.channels-section-monster {
    padding: 80px 0;
    background: var(--bg-surface);
}

.channels-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.channel-category {
    background: var(--bg-section-alt);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.channel-category:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-card-hover);
}

.channel-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.channel-category-icon {
    width: 44px; height: 44px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-category-icon i { font-size: 20px; color: var(--accent-primary); }

.channel-category-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.channel-category-header span {
    background: var(--accent-light);
    color: var(--accent-primary);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.channel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.channel-tag {
    background: var(--bg-surface);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.channel-tag:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* ==========================================
   COMPATIBILITY
   ========================================== */
.compatibility-section {
    padding: 80px 0;
    background: var(--bg-section-alt);
}

.devices-grid-monster {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.device-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.device-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.device-card i {
    font-size: 40px;
    color: var(--accent-primary);
    margin-bottom: 12px;
    display: block;
}

.device-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.device-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.compatibility-cta {
    text-align: center;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.compatibility-cta h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.compatibility-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-monster {
    padding: 80px 0;
    background: var(--bg-surface);
}

.testimonials-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.rating-stars { color: #fbbf24; font-size: 22px; letter-spacing: 3px; }

.rating-info { font-size: 14px; color: var(--text-muted); }
.rating-info strong { color: var(--text-primary); font-size: 16px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--bg-section-alt);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 48px; height: 48px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-stars {
    margin-left: auto;
    color: #fbbf24;
    font-size: 13px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-text strong {
    color: var(--text-primary);
    font-style: normal;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--accent-primary);
    font-weight: 600;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-monster {
    padding: 80px 0;
    background: var(--bg-section-alt);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover { border-color: rgba(79, 70, 229, 0.3); }
.faq-item.active { border-color: var(--accent-primary); box-shadow: var(--shadow-card-hover); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    gap: 16px;
}

.faq-question i {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 14px;
}

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

.faq-answer { display: none; padding: 0 24px 20px; }

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 48px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.faq-cta h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.faq-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta-content { text-align: center; color: white; }

.final-cta h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.final-cta > .container > .final-cta-content > p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 12px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
}

.final-cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.final-cta-features i { color: #34d399; }

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.btn-cta-white {
    background: white;
    color: var(--accent-primary);
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

/* ==========================================
   SEO CONTENT
   ========================================== */
.seo-pillar-content { padding: 60px 0; background: var(--bg-surface); }
.seo-pillar-content.seo-alt-bg { background: var(--bg-section-alt); }
.seo-content-wrapper { max-width: 900px; margin: 0 auto; }
.seo-article { color: var(--text-secondary); line-height: 1.8; }

.seo-article-header { text-align: center; margin-bottom: 40px; }
.seo-article-header h2 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}
.seo-intro { font-size: 16px; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }

.seo-toc {
    background: var(--bg-section-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
}
.seo-toc h3 { font-size: 16px; color: var(--text-primary); margin-bottom: 12px; }
.seo-toc ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 20px; }
.seo-toc li { margin-bottom: 6px; }
.seo-toc a { color: var(--accent-primary); text-decoration: none; font-size: 13px; }
.seo-toc a:hover { text-decoration: underline; }

.seo-section { margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--border-color); }
.seo-section:last-child { border-bottom: none; }
.seo-section h3 { font-size: clamp(18px, 3vw, 24px); font-weight: 700; color: var(--text-primary); margin-bottom: 15px; }
.seo-section h4 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin: 20px 0 10px; }
.seo-section p { margin-bottom: 12px; font-size: 15px; }
.seo-section strong { color: var(--text-primary); }

.seo-info-box {
    background: var(--accent-ultra-light);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 15px 20px;
    margin: 20px 0;
}
.seo-info-box.highlight { border-left-color: #10b981; }
.seo-info-box h4 { font-size: 15px; color: var(--text-primary); margin: 0 0 8px; }
.seo-info-box p { margin: 0; font-size: 14px; }
.seo-info-box ul { margin: 8px 0 0; padding-left: 18px; }
.seo-info-box li { margin-bottom: 4px; font-size: 13px; }

.seo-comparison-table { overflow-x: auto; margin: 20px 0; }
.seo-comparison-table table { width: 100%; border-collapse: collapse; font-size: 13px; }
.seo-comparison-table th, .seo-comparison-table td { padding: 10px 12px; text-align: left; border: 1px solid var(--border-color); }
.seo-comparison-table th { background: var(--bg-section-alt); font-weight: 600; color: var(--text-primary); }
.seo-comparison-table td.highlight { background: rgba(16, 185, 129, 0.08); color: #059669; font-weight: 600; }

.seo-steps { counter-reset: step; list-style: none; padding: 0; margin: 15px 0; }
.seo-steps li { position: relative; padding-left: 35px; margin-bottom: 12px; font-size: 14px; }
.seo-steps li::before {
    content: counter(step); counter-increment: step;
    position: absolute; left: 0; top: 0;
    width: 24px; height: 24px;
    background: var(--gradient-primary); color: white;
    font-weight: 600; font-size: 12px;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
}

.seo-devices-grid, .seo-sports-grid, .seo-countries-grid, .seo-cities-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px; margin: 20px 0;
}

.seo-device-category, .seo-sport-item, .seo-country-block, .seo-city {
    background: var(--bg-surface); border: 1px solid var(--border-color);
    border-radius: var(--radius-md); padding: 15px;
}

.seo-device-category h4, .seo-sport-item h4, .seo-country-block h4, .seo-city h4 {
    font-size: 14px; color: var(--text-primary); margin: 0 0 8px;
}

.seo-device-category ul { list-style: none; padding: 0; margin: 0; }
.seo-device-category li { font-size: 12px; color: var(--text-secondary); padding: 3px 0; border-bottom: 1px solid var(--border-light); }
.seo-device-category li:last-child { border-bottom: none; }

.seo-sport-item p, .seo-country-block p, .seo-city p { font-size: 12px; color: var(--text-muted); margin: 0; }

.seo-categories-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0; }
.seo-category-tag {
    background: var(--bg-surface); border: 1px solid var(--border-color);
    padding: 6px 12px; border-radius: var(--radius-full); font-size: 12px; color: var(--text-secondary);
}

.seo-glossary { display: grid; gap: 15px; }
.glossary-item { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 15px; }
.glossary-item h4 { font-size: 14px; color: var(--accent-primary); margin: 0 0 6px; }
.glossary-item p { font-size: 13px; color: var(--text-secondary); margin: 0; }

.seo-cta-box {
    background: var(--gradient-primary); border-radius: var(--radius-lg);
    padding: 25px; text-align: center; margin: 30px 0;
}
.seo-cta-box h4 { color: white; font-size: 18px; margin: 0 0 8px; }
.seo-cta-box p { color: rgba(255,255,255,0.9); margin: 0 0 15px; font-size: 14px; }
.seo-cta-box .btn { margin: 0 5px; }

.seo-internal-links { padding: 40px 0; background: var(--bg-surface); border-top: 1px solid var(--border-color); }
.seo-links-wrapper h3 { text-align: center; font-size: 18px; color: var(--text-primary); margin-bottom: 25px; }
.seo-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 25px; }
.seo-links-column h4 { font-size: 13px; font-weight: 600; color: var(--text-primary); margin: 0 0 12px; text-transform: uppercase; }
.seo-links-column ul { list-style: none; padding: 0; margin: 0; }
.seo-links-column li { margin-bottom: 6px; }
.seo-links-column a { color: var(--text-muted); text-decoration: none; font-size: 12px; }
.seo-links-column a:hover { color: var(--accent-primary); }

.seo-lazy-section { opacity: 1; transform: translateY(0); }

/* ==========================================
   HERO STATS ROW (bar sous le hero)
   ========================================== */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.hero-stat-item i,
.hero-stat-item svg {
    font-size: 22px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
}

.hero-stat-content strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-stat-content span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================
   FEATURES GRID 3x2 (Ce qui fait la différence)
   ========================================== */
.features-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.features-grid-6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card-v2 {
    background: var(--bg-section-alt);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.feature-icon-v2 {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
}

.feature-icon-v2 i,
.feature-icon-v2 svg { color: white; }

.feature-icon-v2.icon-blue { background: #4F46E5; }
.feature-icon-v2.icon-purple { background: #7C3AED; }
.feature-icon-v2.icon-green { background: #059669; }
.feature-icon-v2.icon-orange { background: #EA580C; }
.feature-icon-v2.icon-teal { background: #0891B2; }
.feature-icon-v2.icon-pink { background: #DB2777; }

.feature-card-v2 h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card-v2 p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   STEPS ROW (S'abonner en 4 étapes)
   ========================================== */
.steps-section {
    padding: 80px 0;
    background: var(--bg-section-alt);
}

.steps-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item-v2 {
    text-align: center;
    padding: 24px 16px;
}

.step-icon-circle {
    width: 56px;
    height: 56px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.step-icon-circle i,
.step-icon-circle svg { color: white; }

.step-item-v2 h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-item-v2 p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   PRICING TOGGLE ROW
   ========================================== */
.pricing-toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.toggle-option {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: default;
}

.toggle-option.active {
    color: var(--accent-primary);
    font-weight: 600;
}

.toggle-divider {
    color: var(--border-color);
    font-size: 14px;
}

/* ==========================================
   PRICING DIFF BOX
   ========================================== */
.pricing-diff-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-top: 48px;
    text-align: center;
}

.pricing-diff-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-diff-box > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-diff-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pricing-diff-item > i,
.pricing-diff-item > svg {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--accent-primary);
    margin-top: 2px;
}

.pricing-diff-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-diff-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.pricing-diff-note {
    font-size: 14px;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.pricing-diff-note strong {
    color: var(--accent-primary);
}

/* ==========================================
   APP SECTION
   ========================================== */
.app-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: flex-start;
}

.app-content h2 {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.app-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.app-store-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-badge-link img {
    height: 42px;
    width: auto;
    border-radius: 8px;
}

.app-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-section-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.app-step-item:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-card-hover);
}

.app-step-number {
    width: 36px;
    height: 36px;
    background: var(--accent-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.app-step-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.app-step-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   SERVICE PILLARS (4 cards)
   ========================================== */
.service-pillars-section {
    padding: 80px 0;
    background: var(--bg-section-alt);
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.pillar-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}

.pillar-icon i,
.pillar-icon svg { color: white; }

.pillar-icon.icon-blue { background: #4F46E5; }
.pillar-icon.icon-green { background: #059669; }
.pillar-icon.icon-purple { background: #7C3AED; }
.pillar-icon.icon-orange { background: #EA580C; }

.pillar-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pillar-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (min-width: 768px) {
    .hero-monster { padding: 160px 0 100px; }
    .hero-stats-row { grid-template-columns: repeat(4, 1fr); }
    .features-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .steps-row { grid-template-columns: repeat(2, 1fr); }
    .pricing-diff-grid { grid-template-columns: repeat(2, 1fr); }
    .app-grid { grid-template-columns: 1fr 1fr; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content-grid { grid-template-columns: 1fr 1fr; text-align: left; gap: 50px; }
    .hero-stats-bar { justify-content: flex-start; }
    .hero-buttons { flex-direction: row; }
    .hero-buttons .btn { width: auto; }
    .hero-trust-box { margin: 0; }
    .hero-visual { order: 1; }
    .intro-grid { grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .intro-features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid-monster { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .channels-categories { grid-template-columns: repeat(2, 1fr); }
    .devices-grid-monster { grid-template-columns: repeat(3, 1fr); }
    .final-cta-buttons { flex-direction: row; }
}

@media (min-width: 1024px) {
    .hero-monster { padding: 170px 0 110px; }
    .hero-monster h1 .gradient-text { display: inline; }
    .features-grid-6 { grid-template-columns: repeat(3, 1fr); }
    .steps-row { grid-template-columns: repeat(4, 1fr); }
    .pricing-grid-monster { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
    .price-card.featured { transform: scale(1.06); }
    .pricing-guarantees { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
    .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .seo-pillar-content { padding: 40px 0; }
    .seo-toc ul { columns: 1; }
    .seo-comparison-table th, .seo-comparison-table td { padding: 8px; font-size: 11px; }
    .seo-cta-box .btn { display: block; margin: 8px 0; }
    .seo-devices-grid, .seo-sports-grid, .seo-countries-grid, .seo-cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ==========================================
   LOGO CSS - Style TVSpeedy (outline icon)
   ========================================== */
.logo-css {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Conteneur SVG logo */
.logo-icon-svg {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.logo-icon-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-brand {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-brand .logo-accent {
    color: var(--accent-primary);
}

/* Footer logo blanc */
.footer-logo-css .logo-brand {
    color: white;
}

.footer-logo-css .logo-brand .logo-accent {
    color: var(--accent-primary);
}

@media (min-width: 768px) {
    .logo-icon-svg {
        width: 38px;
        height: 38px;
    }
    .logo-brand {
        font-size: 23px;
    }
}

/* ==========================================
   TV MOCKUP - Grande taille avec cadre cyan
   ========================================== */
.tv-mockup {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

/* Dots décoratifs autour */
.tv-mockup::before,
.tv-mockup::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 1;
}

.tv-mockup::before {
    top: 10%;
    right: -12px;
    background: #06b6d4;
}

.tv-mockup::after {
    bottom: 20%;
    right: -20px;
    background: #e2e8f0;
    width: 6px;
    height: 6px;
}

/* Cadre extérieur - bordure turquoise/cyan comme la référence */
.tv-frame {
    position: relative;
    background: linear-gradient(145deg, #06b6d4 0%, #4F46E5 50%, #7C3AED 100%);
    border-radius: 24px;
    padding: 6px;
    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.2),
        0 0 0 1px rgba(6, 182, 212, 0.1),
        0 0 80px rgba(6, 182, 212, 0.08);
}

/* Écran intérieur sombre */
.tv-screen {
    position: relative;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 40%, #0f3460 100%);
    border-radius: 20px;
    padding: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

/* Reflet subtil */
.tv-screen::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

/* Pied/Stand de la TV */
.tv-stand {
    width: 35%;
    height: 8px;
    background: linear-gradient(90deg, #94a3b8, #cbd5e1, #94a3b8);
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
    opacity: 0.6;
}

/* ===== CONTENU DE L'ÉCRAN ===== */

/* Layout 2 colonnes dans l'écran */
.tv-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
    height: 100%;
    padding: 16px;
    padding-bottom: 44px; /* place pour la barre */
}

/* Zone gauche - vidéo principale */
.tv-main-zone {
    position: relative;
    background: linear-gradient(135deg, #1a2744 0%, #0f2040 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Badge LIVE */
.tv-live-badge {
    position: absolute;
    top: 10px; left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 4;
}

.tv-live-dot {
    width: 6px; height: 6px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Bouton Play central */
.tv-play-btn {
    width: 52px; height: 52px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.tv-play-btn svg { margin-left: 3px; }

/* Zone droite - cards */
.tv-cards-zone {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tv-card-mini {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
}

.tv-card-thumb {
    width: 36px; height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
}

.tv-card-thumb.thumb-red { background: linear-gradient(135deg, #7f1d1d, #991b1b); }
.tv-card-thumb.thumb-blue { background: linear-gradient(135deg, #1e3a5f, #1e40af); }

.tv-card-title {
    font-size: 11px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.tv-card-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    margin-top: 1px;
}

/* Barre de lecture en bas */
.tv-player-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 20px 16px 12px;
    z-index: 5;
}

.tv-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    margin-bottom: 8px;
    position: relative;
}

.tv-progress-fill {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, #06b6d4, #4F46E5);
    border-radius: 3px;
}

.tv-progress-dot {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 9px; height: 9px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

.tv-player-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tv-time, .tv-duration {
    font-size: 9px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.tv-time { color: rgba(255, 255, 255, 0.7); }
.tv-duration { color: rgba(255, 255, 255, 0.35); margin-right: auto; }

.tv-badge-4k {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.tv-player-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
}

.tv-control-dot {
    width: 7px; height: 7px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.25);
}

.tv-control-dot.active { background: rgba(255, 255, 255, 0.7); }

/* ===== RESPONSIVE TV MOCKUP ===== */
@media (max-width: 600px) {
    .tv-mockup { max-width: 340px; }
    .tv-frame { border-radius: 16px; padding: 4px; }
    .tv-screen { border-radius: 13px; }
    .tv-layout { padding: 10px; padding-bottom: 38px; gap: 6px; }
    .tv-card-mini { padding: 8px; }
    .tv-card-title { font-size: 9px; }
    .tv-card-thumb { width: 28px; height: 28px; }
    .tv-play-btn { width: 40px; height: 40px; }
    .tv-play-btn svg { width: 18px; height: 18px; }
    .tv-live-badge { font-size: 8px; padding: 3px 7px; }
    .tv-stand { height: 6px; }
}

@media (min-width: 768px) {
    .tv-mockup { max-width: 520px; }
    .tv-frame { border-radius: 28px; padding: 7px; }
    .tv-screen { border-radius: 22px; }
    .tv-layout { padding: 20px; padding-bottom: 50px; gap: 12px; }
}

@media (min-width: 1024px) {
    .tv-mockup { max-width: 560px; }
}

/* ==========================================
   TV MOCKUP - Grande taille avec cadre cyan
   ========================================== */
.tv-mockup {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

/* Dots décoratifs autour */
.tv-mockup::before,
.tv-mockup::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 1;
}

.tv-mockup::before {
    top: 10%;
    right: -12px;
    background: #06b6d4;
}

.tv-mockup::after {
    bottom: 20%;
    right: -20px;
    background: #e2e8f0;
    width: 6px;
    height: 6px;
}

/* Cadre extérieur - bordure turquoise/cyan comme la référence */
.tv-frame {
    position: relative;
    background: linear-gradient(145deg, #06b6d4 0%, #4F46E5 50%, #7C3AED 100%);
    border-radius: 24px;
    padding: 6px;
    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.2),
        0 0 0 1px rgba(6, 182, 212, 0.1),
        0 0 80px rgba(6, 182, 212, 0.08);
}

/* Écran intérieur sombre */
.tv-screen {
    position: relative;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 40%, #0f3460 100%);
    border-radius: 20px;
    padding: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

/* Reflet subtil */
.tv-screen::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

/* Pied/Stand de la TV */
.tv-stand {
    width: 35%;
    height: 8px;
    background: linear-gradient(90deg, #94a3b8, #cbd5e1, #94a3b8);
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
    opacity: 0.6;
}

/* ===== CONTENU DE L'ÉCRAN ===== */

/* Layout 2 colonnes dans l'écran */
.tv-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
    height: 100%;
    padding: 16px;
    padding-bottom: 44px; /* place pour la barre */
}

/* Zone gauche - vidéo principale */
.tv-main-zone {
    position: relative;
    background: linear-gradient(135deg, #1a2744 0%, #0f2040 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Badge LIVE */
.tv-live-badge {
    position: absolute;
    top: 10px; left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 4;
}

.tv-live-dot {
    width: 6px; height: 6px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Bouton Play central */
.tv-play-btn {
    width: 52px; height: 52px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.tv-play-btn svg { margin-left: 3px; }

/* Zone droite - cards */
.tv-cards-zone {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tv-card-mini {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
}

.tv-card-thumb {
    width: 36px; height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
}

.tv-card-thumb.thumb-red { background: linear-gradient(135deg, #7f1d1d, #991b1b); }
.tv-card-thumb.thumb-blue { background: linear-gradient(135deg, #1e3a5f, #1e40af); }

.tv-card-title {
    font-size: 11px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.tv-card-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    margin-top: 1px;
}

/* Barre de lecture en bas */
.tv-player-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 20px 16px 12px;
    z-index: 5;
}

.tv-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    margin-bottom: 8px;
    position: relative;
}

.tv-progress-fill {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, #06b6d4, #4F46E5);
    border-radius: 3px;
}

.tv-progress-dot {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 9px; height: 9px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

.tv-player-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tv-time, .tv-duration {
    font-size: 9px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.tv-time { color: rgba(255, 255, 255, 0.7); }
.tv-duration { color: rgba(255, 255, 255, 0.35); margin-right: auto; }

.tv-badge-4k {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.tv-player-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
}

.tv-control-dot {
    width: 7px; height: 7px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.25);
}

.tv-control-dot.active { background: rgba(255, 255, 255, 0.7); }

/* ===== RESPONSIVE TV MOCKUP ===== */
@media (max-width: 600px) {
    .tv-mockup { max-width: 340px; }
    .tv-frame { border-radius: 16px; padding: 4px; }
    .tv-screen { border-radius: 13px; }
    .tv-layout { padding: 10px; padding-bottom: 38px; gap: 6px; }
    .tv-card-mini { padding: 8px; }
    .tv-card-title { font-size: 9px; }
    .tv-card-thumb { width: 28px; height: 28px; }
    .tv-play-btn { width: 40px; height: 40px; }
    .tv-play-btn svg { width: 18px; height: 18px; }
    .tv-live-badge { font-size: 8px; padding: 3px 7px; }
    .tv-stand { height: 6px; }
}

@media (min-width: 768px) {
    .tv-mockup { max-width: 520px; }
    .tv-frame { border-radius: 28px; padding: 7px; }
    .tv-screen { border-radius: 22px; }
    .tv-layout { padding: 20px; padding-bottom: 50px; gap: 12px; }
}

@media (min-width: 1024px) {
    .tv-mockup { max-width: 560px; }
}