/*
Theme Name: IPTV Suisse
Theme URI: https://zurichiptv.ch/
Author: ZurichIPTV
Author URI: https://zurichiptv.ch/
Description: Thème WordPress premium et optimisé pour la conversion, conçu sur mesure pour IPTV Suisse. Design clair, moderne, rapide et orienté SEO. Compatible mobile, tablette et desktop. Mots-clés intégrés naturellement pour le marché suisse francophone.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptv-suisse
Tags: iptv, suisse, light, conversion, seo, responsive, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */
:root {
    /* Brand Colors */
    --color-bg: #FFFFFF;
    --color-bg-soft: #F8F9FA;
    --color-bg-alt: #F1F3F6;
    --color-heading: #1A365D;
    --color-text: #333333;
    --color-text-muted: #5A6B7E;
    --color-primary: #D1111B;
    --color-primary-dark: #A50E15;
    --color-accent: #FFCC00;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1FAE56;
    --color-border: #E5E9EF;
    --color-shadow: rgba(26, 54, 93, 0.08);
    --color-shadow-lg: rgba(26, 54, 93, 0.14);

    /* Typography */
    --font-display: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

    /* Layout */
    --container: 1200px;
    --container-wide: 1320px;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    /* Transitions */
    --t-fast: 0.18s ease;
    --t: 0.28s cubic-bezier(.2,.7,.3,1);
}

/* =========================================================
   2. RESET & BASE
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--color-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--color-primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--color-heading);
    line-height: 1.18;
    margin: 0 0 .6em;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

ul, ol { padding-left: 1.2em; }
li { margin-bottom: .35em; }

::selection { background: var(--color-accent); color: var(--color-heading); }

/* =========================================================
   3. LAYOUT UTILITIES
   ========================================================= */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.container-wide { max-width: var(--container-wide); }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tight { padding: 56px 0; }

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.section-title .eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-primary);
    background: rgba(209, 17, 27, 0.08);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}
.section-title h2 { margin-bottom: 14px; }
.section-title p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* =========================================================
   4. BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}
.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(209, 17, 27, 0.28);
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(209, 17, 27, 0.36);
}
.btn-whatsapp {
    background: var(--color-whatsapp);
    color: #fff;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover {
    background: var(--color-whatsapp-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.38);
}
.btn-outline {
    background: transparent;
    color: var(--color-heading);
    border-color: var(--color-border);
}
.btn-outline:hover {
    background: var(--color-heading);
    color: #fff;
    border-color: var(--color-heading);
}
.btn-lg { padding: 18px 36px; font-size: 1.06rem; }
.btn-sm { padding: 10px 20px; font-size: 0.92rem; }

.btn svg { width: 18px; height: 18px; }

/* =========================================================
   5. HEADER
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--color-border);
}
.header-top {
    background: var(--color-heading);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.header-top a { color: #fff; }
.header-top a:hover { color: var(--color-accent); }
.header-top-left, .header-top-right {
    display: flex;
    gap: 22px;
    align-items: center;
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}
.site-logo img { height: 52px; width: auto; }
.site-logo a { display: inline-block; }
.site-title-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-heading);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.primary-nav { display: flex; }
.primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
}
.primary-nav li { margin: 0; }
.primary-nav a {
    display: inline-block;
    padding: 10px 14px;
    color: var(--color-heading);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: background var(--t-fast), color var(--t-fast);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
    background: var(--color-bg-soft);
    color: var(--color-primary);
}

.header-cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-heading);
    border-radius: 2px;
    position: relative;
    transition: var(--t);
}
.menu-toggle span::before { content: ""; position: absolute; top: -7px; }
.menu-toggle span::after  { content: ""; position: absolute; top: 7px; }

@media (max-width: 1024px) {
    .menu-toggle { display: inline-flex; }
    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--color-border);
        padding: 16px 24px 24px;
        box-shadow: 0 12px 24px var(--color-shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }
    .primary-nav.is-open { max-height: 80vh; overflow-y: auto; }
    .primary-nav ul { flex-direction: column; gap: 0; }
    .primary-nav a { padding: 12px 8px; display: block; border-bottom: 1px solid var(--color-border); border-radius: 0; }
    .header-cta .btn-text { display: none; }
}

/* =========================================================
   6. HERO
   ========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 110px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 60%, #fff 100%),
        url("https://zurichiptv.ch/wp-content/uploads/2026/04/hp-tilewall-aug-d-scaled.jpg") center/cover;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.6) 0%, rgba(248, 249, 250, 0.2) 50%, #fff 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px var(--color-shadow);
    margin-bottom: 22px;
}
.hero-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--color-whatsapp);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
}
.hero h1 {
    margin-bottom: 18px;
    line-height: 1.08;
}
.hero h1 .accent { color: var(--color-primary); }
.hero h1 .underline {
    position: relative;
    display: inline-block;
    background-image: linear-gradient(transparent 70%, rgba(255, 204, 0, 0.55) 70%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0 4px;
}
.hero-lead {
    font-size: 1.18rem;
    color: var(--color-text);
    max-width: 580px;
    margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 30px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--color-whatsapp); flex-shrink: 0; }

.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px var(--color-shadow-lg);
    transform: rotate(1.2deg);
    border: 6px solid #fff;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: #fff;
    color: var(--color-heading);
    font-weight: 700;
    padding: 12px 18px;
    border-radius: var(--radius);
    box-shadow: 0 10px 28px var(--color-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
}
.hero-visual-badge .price-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 800;
}
.hero-floating-card {
    position: absolute;
    background: #fff;
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: 0 18px 40px var(--color-shadow-lg);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}
.hero-floating-card.top { top: 8%; right: -28px; }
.hero-floating-card.bottom { bottom: 14%; left: -36px; }
.hero-floating-card .icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 204, 0, 0.18);
    color: var(--color-primary);
}
.hero-floating-card .icon svg { width: 22px; height: 22px; }
.hero-floating-card strong { color: var(--color-heading); display: block; font-size: 1rem; }
.hero-floating-card span { color: var(--color-text-muted); }

@media (max-width: 980px) {
    .hero { padding: 60px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 460px; margin: 0 auto; transform: rotate(0); }
    .hero-floating-card.top { right: 0; }
    .hero-floating-card.bottom { left: 0; }
}

/* =========================================================
   7. PRICING
   ========================================================= */
.pricing { background: var(--color-bg-soft); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.pricing-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    border: 2px solid var(--color-border);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px var(--color-shadow-lg);
    border-color: var(--color-heading);
}
.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 24px 50px rgba(209, 17, 27, 0.18);
    transform: translateY(-6px);
}
.pricing-card.featured::before {
    content: "Meilleure offre";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-heading);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 16px rgba(255, 204, 0, 0.4);
}
.pricing-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 700;
    margin-bottom: 18px;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}
.pricing-price .amount {
    font-family: var(--font-display);
    font-size: 3.4rem;
    color: var(--color-heading);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}
.pricing-price .currency {
    color: var(--color-heading);
    font-weight: 700;
    font-size: 1.4rem;
}
.pricing-period { color: var(--color-text-muted); margin-bottom: 26px; font-size: 0.95rem; }
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}
.pricing-features li {
    padding: 9px 0 9px 30px;
    position: relative;
    color: var(--color-text);
    font-size: 0.96rem;
    border-bottom: 1px solid var(--color-border);
}
.pricing-features li:last-child { border-bottom: 0; }
.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    background: rgba(37, 211, 102, 0.15);
    border-radius: 50%;
}
.pricing-features li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 18px;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--color-whatsapp);
    border-bottom: 2px solid var(--color-whatsapp);
    transform: rotate(-45deg);
}
.pricing-card .btn { width: 100%; }

@media (max-width: 880px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
}

/* =========================================================
   8. FEATURES
   ========================================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.feature-card {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: transform var(--t), box-shadow var(--t);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--color-shadow);
    border-color: transparent;
}
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(209,17,27,0.12), rgba(255,204,0,0.12));
    color: var(--color-primary);
    margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.18rem; }
.feature-card p { color: var(--color-text-muted); margin: 0; }

@media (max-width: 880px) { .features-grid { grid-template-columns: 1fr; } }

/* =========================================================
   9. CHANNEL SHOWCASE / NETWORKS
   ========================================================= */
.networks {
    background: var(--color-heading);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.networks::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1593784991095-a205069470b6?w=1600&q=80&auto=format&fit=crop") center/cover;
    opacity: 0.12;
}
.networks .container { position: relative; z-index: 2; }
.networks .section-title h2 { color: #fff; }
.networks .section-title p { color: rgba(255,255,255,0.78); }
.networks .section-title .eyebrow {
    background: rgba(255,204,0,0.18);
    color: var(--color-accent);
}
.networks-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 48px;
}
.network-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 22px;
    text-align: center;
    transition: var(--t);
}
.network-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}
.network-card img {
    width: 80px; height: 80px;
    object-fit: contain;
    margin: 0 auto 14px;
}
.network-card h4 { color: #fff; margin: 0 0 4px; font-size: 1rem; }
.network-card p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    color: var(--color-accent);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}
.stat-label { color: rgba(255,255,255,0.78); font-size: 0.9rem; }

@media (max-width: 880px) {
    .networks-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 24px; }
}

/* =========================================================
   10. MOVIES WALL
   ========================================================= */
.movies-wall {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}
.movies-wall::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://zurichiptv.ch/wp-content/uploads/2026/04/hp-tilewall-aug-d-scaled.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}
.movies-wall .container { position: relative; z-index: 2; }

.movies-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}
.movie-poster {
    aspect-ratio: 2 / 3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px var(--color-shadow-lg);
    transition: var(--t);
}
.movie-poster img { width: 100%; height: 100%; object-fit: cover; }
.movie-poster:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 20px 40px rgba(26,54,93,.22); }

@media (max-width: 1024px) { .movies-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { .movies-grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   11. STEPS / HOW IT WORKS
   ========================================================= */
.steps {
    background: var(--color-bg-soft);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}
.step-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--color-border);
    position: relative;
    counter-increment: step;
    transition: var(--t);
}
.step-card::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-bg-alt);
    position: absolute;
    top: 18px;
    right: 22px;
    line-height: 1;
}
.step-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px var(--color-shadow);
}
.step-card h3 { margin-bottom: 8px; font-size: 1.1rem; position: relative; }
.step-card p { color: var(--color-text-muted); margin: 0; font-size: 0.96rem; }
.step-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--color-primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.step-icon svg { width: 24px; height: 24px; }

@media (max-width: 980px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* =========================================================
   12. DEVICE COMPATIBILITY
   ========================================================= */
.devices-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.device-card {
    text-align: center;
    padding: 26px 12px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--t);
}
.device-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px var(--color-shadow);
}
.device-card svg { width: 38px; height: 38px; color: var(--color-heading); margin: 0 auto 10px; display: block; }
.device-card span { display: block; color: var(--color-heading); font-weight: 600; font-size: 0.95rem; }

@media (max-width: 880px) { .devices-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .devices-row { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   13. SPLIT (image + text)
   ========================================================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1fr; }
.split.reverse .split-image { order: 2; }
.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 22px 44px var(--color-shadow);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content h2 { margin-bottom: 16px; }
.split-content p { color: var(--color-text-muted); margin-bottom: 14px; }
.split-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
}
.split-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    color: var(--color-text);
}
.split-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
}
.split-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    width: 9px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

@media (max-width: 880px) {
    .split, .split.reverse { grid-template-columns: 1fr; }
    .split.reverse .split-image { order: 0; }
}

/* =========================================================
   14. TESTIMONIALS
   ========================================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    position: relative;
    transition: var(--t);
}
.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 14px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-bg-alt);
}
.testimonial-card:hover { box-shadow: 0 18px 36px var(--color-shadow); transform: translateY(-3px); }
.testimonial-stars { color: var(--color-accent); margin-bottom: 14px; font-size: 1.05rem; letter-spacing: 2px; }
.testimonial-text { color: var(--color-text); font-size: 1rem; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    color: var(--color-heading);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
}
.testimonial-author strong { display: block; color: var(--color-heading); font-size: 0.98rem; }
.testimonial-author span { color: var(--color-text-muted); font-size: 0.85rem; }

@media (max-width: 980px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }

/* =========================================================
   15. COMPARISON TABLE
   ========================================================= */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: 0 12px 30px var(--color-shadow); }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 640px;
}
.compare-table th, .compare-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.compare-table th {
    background: var(--color-heading);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
}
.compare-table th.us { background: var(--color-primary); }
.compare-table td.check { color: var(--color-whatsapp); font-weight: 700; }
.compare-table td.cross { color: #C0C7D0; }
.compare-table tr:last-child td { border-bottom: 0; }

/* =========================================================
   16. FAQ ACCORDION
   ========================================================= */
.faq-list {
    max-width: 880px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--t);
}
.faq-item[open] {
    border-color: var(--color-primary);
    box-shadow: 0 12px 28px var(--color-shadow);
}
.faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-heading);
    font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--color-bg-soft);
    border-radius: 50%;
    position: relative;
    transition: var(--t);
}
.faq-item summary::before {
    content: "+";
    position: absolute;
    right: 33px;
    color: var(--color-primary);
    font-size: 1.3rem;
    font-weight: 700;
    transition: var(--t);
}
.faq-item[open] summary::before { transform: rotate(45deg); }
.faq-answer { padding: 0 28px 24px; color: var(--color-text); }
.faq-answer p:last-child { margin-bottom: 0; }

/* =========================================================
   17. CTA BANNER
   ========================================================= */
.cta-banner {
    background:
        linear-gradient(135deg, rgba(26,54,93,0.92), rgba(26,54,93,0.78)),
        url("https://images.unsplash.com/photo-1522869635100-9f4c5e86aa37?w=1600&q=80&auto=format&fit=crop") center/cover;
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 680px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-banner .btn-whatsapp { font-size: 1.05rem; padding: 16px 34px; }

/* =========================================================
   18. FOOTER
   ========================================================= */
.site-footer {
    background: #0F1F33;
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
}
.footer-brand img { height: 56px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 22px; }
.footer-contact { font-size: 0.9rem; }
.footer-contact div { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--color-accent); flex-shrink: 0; margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--color-accent); }

.footer-col h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 22px;
    letter-spacing: 0.01em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-accent); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

@media (max-width: 980px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =========================================================
   19. WHATSAPP FLOATING
   ========================================================= */
.wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: var(--color-whatsapp);
    color: #fff;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 28px rgba(37,211,102,0.45);
    z-index: 90;
    transition: var(--t);
    animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); color: #fff; background: var(--color-whatsapp-dark); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 12px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
    50% { box-shadow: 0 12px 28px rgba(37,211,102,0.45), 0 0 0 18px rgba(37,211,102,0); }
}

/* =========================================================
   20. PAGE BANNER (interior pages)
   ========================================================= */
.page-banner {
    background: linear-gradient(135deg, var(--color-heading), #0F2547);
    color: #fff;
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1522869635100-9f4c5e86aa37?w=1600&q=80&auto=format&fit=crop") center/cover;
    opacity: 0.12;
}
.page-banner .container { position: relative; z-index: 2; text-align: center; }
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.page-banner .breadcrumbs { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.page-banner .breadcrumbs a { color: var(--color-accent); }

/* =========================================================
   21. BLOG / ARTICLES
   ========================================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.post-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--t);
    display: flex;
    flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px var(--color-shadow); border-color: transparent; }
.post-card-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--color-bg-alt); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.06); }
.post-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.post-meta {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.post-card h3 { font-size: 1.18rem; margin-bottom: 10px; line-height: 1.32; }
.post-card h3 a { color: var(--color-heading); }
.post-card h3 a:hover { color: var(--color-primary); }
.post-card-excerpt { color: var(--color-text-muted); font-size: 0.94rem; flex-grow: 1; }
.post-card-more {
    margin-top: 16px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.92rem;
}

@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.single-article {
    max-width: 820px;
    margin: 0 auto;
}
.single-article-meta {
    display: flex; flex-wrap: wrap;
    gap: 16px; align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 22px;
}
.single-article-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}
.single-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.single-article-body { font-size: 1.05rem; line-height: 1.8; color: var(--color-text); }
.single-article-body h2, .single-article-body h3 { margin-top: 1.6em; }

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}
.pagination a, .pagination span {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-heading);
    font-weight: 600;
    font-size: 0.92rem;
}
.pagination .current, .pagination a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* =========================================================
   22. PAGE CONTENT (legal, generic)
   ========================================================= */
.page-content {
    max-width: 880px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.8;
}
.page-content h2 { margin-top: 1.6em; padding-bottom: 8px; border-bottom: 2px solid var(--color-bg-soft); }
.page-content h3 { margin-top: 1.4em; }
.page-content ul li { margin-bottom: .5em; }
.page-content blockquote {
    border-left: 4px solid var(--color-primary);
    background: var(--color-bg-soft);
    padding: 18px 22px;
    margin: 24px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--color-text);
}

/* =========================================================
   23. CONTACT PAGE
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
.contact-info-card {
    background: var(--color-heading);
    color: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
}
.contact-info-card h3 { color: #fff; margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.78); margin-bottom: 28px; }
.contact-info-list { list-style: none; padding: 0; margin: 0 0 30px; }
.contact-info-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}
.contact-info-list .icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}
.contact-info-list svg { width: 20px; height: 20px; }
.contact-info-list strong { display: block; color: #fff; margin-bottom: 2px; }
.contact-info-list a { color: rgba(255,255,255,0.85); }
.contact-info-list a:hover { color: var(--color-accent); }
.contact-form-card {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: var(--radius-lg);
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.contact-form-card label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 6px;
}
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.96rem;
    background: var(--color-bg-soft);
    transition: var(--t-fast);
}
.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
    outline: 0;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(209,17,27,0.12);
}
.contact-form-card textarea { resize: vertical; min-height: 120px; }
.contact-form-card .form-field { margin-bottom: 18px; }
.contact-form-card .btn { width: 100%; }

@media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-card .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   24. ABOUT VALUES
   ========================================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.value-card {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 32px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: var(--t);
}
.value-card:hover { box-shadow: 0 18px 36px var(--color-shadow); border-color: transparent; }
.value-card .num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    width: 48px;
    height: 48px;
    background: rgba(209,17,27,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.value-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.value-card p { color: var(--color-text-muted); margin: 0; }

@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

/* =========================================================
   25. CHANNELS PAGE CATEGORIES
   ========================================================= */
.channel-cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.channel-cat-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--t);
}
.channel-cat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px var(--color-shadow); border-color: transparent; }
.channel-cat-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--color-heading); }
.channel-cat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.channel-cat-body { padding: 24px 26px 26px; }
.channel-cat-body h3 { margin-bottom: 8px; font-size: 1.18rem; }
.channel-cat-body p { color: var(--color-text-muted); margin: 0 0 14px; font-size: 0.95rem; }
.channel-cat-body .count {
    display: inline-block;
    font-size: 0.78rem;
    background: rgba(255,204,0,0.18);
    color: var(--color-heading);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 980px) { .channel-cats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .channel-cats { grid-template-columns: 1fr; } }

/* =========================================================
   26. TRUST BADGES
   ========================================================= */
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-item {
    text-align: center;
    padding: 26px 18px;
    background: var(--color-bg-soft);
    border-radius: var(--radius);
}
.trust-item .icon-wrap {
    width: 56px; height: 56px;
    margin: 0 auto 12px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 6px 14px var(--color-shadow);
}
.trust-item svg { width: 26px; height: 26px; }
.trust-item h4 { margin: 0 0 4px; font-size: 1rem; }
.trust-item p { margin: 0; font-size: 0.85rem; color: var(--color-text-muted); }

@media (max-width: 880px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   27. SCREEN-READER + WP UTILITIES
   ========================================================= */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* =========================================================
   28. ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp .8s ease both; }
.fade-in.delay-1 { animation-delay: .15s; }
.fade-in.delay-2 { animation-delay: .3s; }
.fade-in.delay-3 { animation-delay: .45s; }

/* =========================================================
   29. RESPONSIVE TYPE
   ========================================================= */
@media (max-width: 600px) {
    .section { padding: 70px 0; }
    .section-title { margin-bottom: 38px; }
    .cta-banner { padding: 44px 24px; }
}

/* =============================================
   JS-driven states + FAQ groups + form helpers
   ============================================= */
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(26, 54, 93, 0.08); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

body.nav-open { overflow: hidden; }

.faq-group { margin-bottom: 50px; }
.faq-group h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
    color: var(--c-heading);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid #E5E9EF;
}

.form-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}
.form-alert-success { background: #E8F8EE; color: #166534; border: 1px solid #BBE5C7; }
.form-alert-error   { background: #FEECEC; color: #9B1C1C; border: 1px solid #F5C2C2; }


/* =========================================================
   FIX PASS — design corrections
   ========================================================= */

/* Belt-and-suspenders global SVG safety — never let an SVG
   inflate to 300x150 just because it has no explicit size.
   Most icon SVGs in this theme already carry width="1em"
   (see iptv_suisse_icon helper), but this rule covers any
   future SVG inserted into content. */
svg:not([width]):not([height]) { width: 1em; height: 1em; }
img, svg { max-width: 100%; }

/* Hero floating cards: be sure SVG inside .icon stays small
   regardless of source size. */
.hero-floating-card .icon svg { width: 22px !important; height: 22px !important; }

/* Hero trust row: more visible on light bg */
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 22px;
    color: var(--color-text); font-size: 0.95rem;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #E5E9EF;
}
.hero-trust span {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 500;
}
.hero-trust svg {
    width: 18px; height: 18px;
    background: rgba(37, 211, 102, 0.12);
    color: var(--color-whatsapp);
    border-radius: 50%;
    padding: 3px;
    box-sizing: content-box;
}

/* Pricing trust strip (the "Paiement 100% sécurisé" text below
   pricing) — wrap nicely instead of inline */
section.pricing > .container > p {
    display: inline-flex; align-items: center; gap: 8px;
    flex-wrap: wrap; justify-content: center;
}
section.pricing > .container > p svg {
    width: 18px !important; height: 18px !important;
    color: var(--color-whatsapp);
}

/* === MISSING CLASSES — add styles for templates that referenced
   classes not defined earlier === */

/* section-head (alias for section-title used by newer page templates) */
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.section-head .eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.78rem;
    margin-bottom: 12px;
}
.section-head h2 {
    margin-bottom: 14px;
    color: var(--color-heading);
}
.section-head p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* page banner -> banner-cta wrapper */
.banner-cta { margin-top: 26px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.page-banner .lead {
    color: rgba(255,255,255,0.92);
    max-width: 760px;
    margin: 12px auto 0;
    font-size: 1.08rem;
    line-height: 1.6;
}

/* split-grid: image+text side-by-side block (about/channels pages) */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split-grid.reverse > .split-text { order: 2; }
.split-grid.reverse > .split-media { order: 1; }
.split-text .eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.78rem;
    margin-bottom: 12px;
}
.split-text h2 { margin-bottom: 18px; color: var(--color-heading); }
.split-text p { color: var(--color-text-muted); line-height: 1.7; margin-bottom: 16px; }
.split-text .btn-primary { margin-top: 14px; }
.split-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px var(--color-shadow-lg);
}
.split-media img { width: 100%; height: auto; display: block; }
@media (max-width: 980px) {
    .split-grid { grid-template-columns: 1fr; gap: 40px; }
    .split-grid.reverse > .split-text { order: 1; }
    .split-grid.reverse > .split-media { order: 0; }
}

/* check-list (used on channels/abonnement pages) */
.check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.check-list li {
    position: relative;
    padding: 10px 0 10px 36px;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid #EEF1F5;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

/* values-grid + value-card (about page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.value-card {
    background: #fff;
    border: 1px solid #E5E9EF;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all .25s ease;
}
.value-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 24px 48px var(--color-shadow);
}
.value-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(209,17,27,0.10), rgba(255,204,0,0.10));
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.value-icon svg { width: 26px !important; height: 26px !important; }
.value-card h3 { margin-bottom: 10px; font-size: 1.15rem; color: var(--color-heading); }
.value-card p { color: var(--color-text-muted); margin: 0; line-height: 1.65; font-size: 0.96rem; }
@media (max-width: 980px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

/* channel-cats grid + channel-cat (channels page) */
.channel-cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.channel-cat {
    background: #fff;
    border: 1px solid #E5E9EF;
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
}
.channel-cat:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 24px 48px var(--color-shadow);
}
.channel-cat-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--color-heading);
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.channel-cat-icon svg { width: 26px !important; height: 26px !important; }
.channel-cat h3 { margin-bottom: 10px; font-size: 1.15rem; color: var(--color-heading); }
.channel-cat p { color: var(--color-text-muted); line-height: 1.65; font-size: 0.94rem; flex: 1; }
.channel-cat-count {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 14px;
    background: rgba(209,17,27,0.08);
    color: var(--color-primary);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}
@media (max-width: 980px) { .channel-cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .channel-cats { grid-template-columns: 1fr; } }

/* contact-grid + contact-info + contact-form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
.contact-info {
    background: var(--color-heading);
    color: #fff;
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
}
.contact-info h2 { color: #fff; margin-bottom: 14px; font-size: 1.5rem; }
.contact-info > p { color: rgba(255,255,255,0.78); margin-bottom: 28px; line-height: 1.6; }
.contact-list { list-style: none; padding: 0; margin: 0 0 28px; }
.contact-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-list li:last-child { border-bottom: none; }
.contact-ico {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,204,0,0.18);
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-ico svg { width: 20px !important; height: 20px !important; }
.contact-list li > div { flex: 1; min-width: 0; }
.contact-list strong { display: block; color: #fff; margin-bottom: 4px; font-size: 0.95rem; }
.contact-list a { color: var(--color-accent); display: block; word-break: break-word; }
.contact-list a:hover { color: #fff; }
.contact-list small { display: block; color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-top: 2px; }
.contact-list span { color: rgba(255,255,255,0.92); display: block; }
.contact-info .btn-whatsapp { width: 100%; justify-content: center; }

.contact-form-card {
    background: #fff;
    border: 1px solid #E5E9EF;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}
.contact-form-card h2 { margin-bottom: 8px; color: var(--color-heading); font-size: 1.5rem; }
.contact-form-card > p { color: var(--color-text-muted); margin-bottom: 24px; }
.contact-form .form-row { margin-bottom: 18px; }
.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 6px;
    font-size: 0.92rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #D8DDE5;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(209,17,27,0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-primary { width: 100%; margin-top: 8px; }
@media (max-width: 980px) {
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-info { position: static; }
}

/* Page content (legal pages) */
.page-content {
    max-width: 820px;
    margin: 0 auto;
    color: var(--color-text);
    line-height: 1.75;
}
.page-content h2 {
    color: var(--color-heading);
    font-size: 1.4rem;
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #EEF1F5;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { color: var(--color-heading); font-size: 1.1rem; margin: 20px 0 10px; }
.page-content p { margin: 0 0 14px; }
.page-content ul, .page-content ol { margin: 0 0 18px; padding-left: 22px; }
.page-content li { margin-bottom: 8px; }
.page-content a { color: var(--color-primary); font-weight: 500; }
.page-content a:hover { text-decoration: underline; }

/* FAQ list — proper accordion styling (was unstyled on live site) */
.faq-list {
    max-width: 880px;
    margin: 0 auto;
}
.faq-list details {
    background: #fff;
    border: 1px solid #E5E9EF;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all .25s ease;
}
.faq-list details[open] {
    border-color: var(--color-primary);
    box-shadow: 0 14px 30px rgba(26,54,93,0.06);
}
.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 56px 20px 24px;
    font-weight: 600;
    color: var(--color-heading);
    position: relative;
    font-size: 1.02rem;
    user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 400;
    transition: transform .25s ease;
    line-height: 1;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details > p,
.faq-list details > div {
    padding: 0 24px 22px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* form alerts already added; adjust spacing */
.form-alert { font-size: 0.95rem; }

/* === HOMEPAGE-SPECIFIC POLISH === */

/* Compare table wrapper: add scroll on small screens */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 14px 30px var(--color-shadow);
    min-width: 720px;
}
.compare-table th, .compare-table td {
    padding: 18px 22px;
    text-align: left;
    border-bottom: 1px solid #EEF1F5;
    font-size: 0.95rem;
}
.compare-table thead th {
    background: var(--color-heading);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}
.compare-table thead th.highlight { background: var(--color-primary); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--color-heading); }
.compare-table td.cell-yes { color: #166534; font-weight: 600; }
.compare-table td.cell-no  { color: #9B1C1C; }
.compare-table td.cell-highlight { background: rgba(255,204,0,0.10); color: var(--color-heading); font-weight: 700; }

/* Trust row spacing/icon visibility */
.trust-row .icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(209,17,27,0.08);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.trust-row .icon-wrap svg { width: 26px !important; height: 26px !important; }

/* Networks grid: ensure logos display at sensible size */
.networks-grid .network-card img {
    height: 36px;
    width: auto;
    max-width: 80%;
    object-fit: contain;
}

/* Ensure feature-icon is visibly sized */
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(209,17,27,0.10), rgba(255,204,0,0.10));
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.feature-icon svg { width: 28px !important; height: 28px !important; }

/* Step icon box */
.step-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--color-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.step-icon svg { width: 24px !important; height: 24px !important; }

/* Devices row */
.devices-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.device-card {
    background: #fff;
    border: 1px solid #E5E9EF;
    border-radius: var(--radius);
    padding: 24px 14px;
    text-align: center;
    transition: all .25s ease;
}
.device-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 18px 36px var(--color-shadow);
}
.device-card svg {
    width: 38px !important;
    height: 38px !important;
    color: var(--color-heading);
    margin: 0 auto 10px;
    display: block;
}
.device-card span { display: block; color: var(--color-heading); font-weight: 600; font-size: 0.9rem; }
@media (max-width: 880px) { .devices-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .devices-row { grid-template-columns: repeat(2, 1fr); } }

/* Testimonials cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid #E5E9EF;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
}
.testimonial-stars {
    color: var(--color-accent);
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testimonial-card p {
    color: var(--color-text);
    line-height: 1.7;
    margin: 0 0 22px;
    font-size: 0.97rem;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--color-heading);
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--color-heading); font-size: 0.97rem; }
.testimonial-author span { display: block; color: var(--color-text-muted); font-size: 0.85rem; }
@media (max-width: 980px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* Section alt background */
.section-alt { background: var(--color-bg-alt, #F8F9FA); }

/* Stats strip refinements */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
}
.stats-strip .stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--color-accent);
    line-height: 1.1;
    margin-bottom: 6px;
    font-weight: 800;
}
.stats-strip .stat span {
    color: rgba(255,255,255,0.78);
    font-size: 0.9rem;
}
@media (max-width: 768px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

/* Networks section background ensure dark */
.networks {
    background: var(--color-heading);
    color: #fff;
}
.networks .section-title h2,
.networks .section-head h2 { color: #fff; }
.networks .section-title p,
.networks .section-head p { color: rgba(255,255,255,0.78); }
.networks-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-bottom: 50px;
}
.network-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    transition: all .25s ease;
}
.network-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,204,0,0.30);
    transform: translateY(-3px);
}
.network-card img {
    height: 32px;
    width: auto;
    max-width: 80%;
    margin: 0 auto 14px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}
.network-card h4 { color: #fff; margin: 0 0 4px; font-size: 0.98rem; }
.network-card p { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin: 0; }
@media (max-width: 880px) { .networks-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .networks-grid { grid-template-columns: repeat(2, 1fr); } }


/* Pricing trust strip — styled badge below pricing cards */
.pricing-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 40px auto 0;
    padding: 14px 22px;
    max-width: 760px;
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.18);
    border-radius: 999px;
    color: var(--color-text-muted);
    font-size: 0.93rem;
    flex-wrap: wrap;
    text-align: center;
}
.pricing-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    background: var(--color-whatsapp);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}
.pricing-trust-icon svg { width: 16px !important; height: 16px !important; }
@media (max-width: 600px) {
    .pricing-trust-strip { font-size: 0.85rem; padding: 12px 18px; gap: 8px; }
}

/* =========================================================
   v1.2.0 — MOBILE UX OVERHAUL + TEXT LOGO + IMG SAFETY
   ========================================================= */

/* === STYLIZED TEXT LOGO (header fallback + footer) === */
.text-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    line-height: 1;
}
.text-logo-mark,
.footer-logo-mark {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--color-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(209,17,27,0.25);
}
.text-logo-mark svg,
.footer-logo-mark svg { width: 18px !important; height: 18px !important; }
.text-logo-text,
.footer-logo-text {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 800;
}
.text-logo-text strong { color: var(--color-heading); font-weight: 800; }
.text-logo-text span { color: var(--color-primary); font-weight: 700; }
.footer-logo { margin-bottom: 18px; }
.footer-logo-text strong { color: #fff; }
.footer-logo-text span { color: var(--color-accent); }

/* Smart logo sizing for header (constrains uploaded WP logos) */
.site-logo img,
.site-logo .custom-logo {
    max-height: 44px !important;
    width: auto !important;
    height: auto !important;
    display: block;
}
@media (max-width: 600px) {
    .site-logo img,
    .site-logo .custom-logo { max-height: 36px !important; }
    .text-logo-mark, .footer-logo-mark { width: 32px; height: 32px; border-radius: 8px; }
    .text-logo-text, .footer-logo-text { font-size: 1.05rem; }
}

/* === IMG SAFETY: never let a broken/heavy img break layout === */
img {
    max-width: 100%;
    height: auto;
    /* Fallback alt-text styling: if image fails, alt text is shown
       inside a soft placeholder rather than a giant broken-image icon */
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
img[alt]:not([alt=""]) {
    /* Only applies visually when img is broken */
}
.movie-poster img, .network-card img, .split-media img, .split-image img,
.post-card-thumb img, .channel-cat-thumb img, .single-article-thumb img {
    background: linear-gradient(135deg, #F1F3F6 0%, #E5E9EF 100%);
}

/* === HERO MOBILE FIX === */
@media (max-width: 980px) {
    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.18;
    }
    .hero-lead {
        font-size: 1rem;
        line-height: 1.55;
    }
    .hero-actions { gap: 10px; }
    .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
    .hero-trust {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        margin-top: 24px;
        padding-top: 24px;
    }
    .hero-eyebrow { font-size: 0.78rem; }

    /* Hero visual: tighter on mobile, badge + cards stay overlapping */
    .hero-visual { max-width: 380px; aspect-ratio: 4/4.5; }
    .hero-floating-card {
        font-size: 0.78rem;
        padding: 10px 14px;
        gap: 10px;
    }
    .hero-floating-card .icon { width: 32px; height: 32px; border-radius: 8px; }
    .hero-floating-card .icon svg { width: 18px !important; height: 18px !important; }
    .hero-floating-card strong { font-size: 0.92rem; }
    .hero-floating-card.top { top: 4%; right: 8px; }
    .hero-floating-card.bottom { bottom: 8%; left: 8px; }
    .hero-visual-badge {
        bottom: 14px; left: 14px;
        padding: 10px 14px;
        font-size: 0.82rem;
    }
    .hero-visual-badge .price-num { font-size: 1.3rem; }
}
@media (max-width: 540px) {
    .hero { padding: 40px 0 60px; }
    .hero-visual {
        max-width: 100%;
        margin: 0;
        aspect-ratio: 4/3.4;
    }
    .hero-floating-card.top { right: 6px; }
    .hero-floating-card.bottom { left: 6px; }
}

/* === PRICING MOBILE: featured card FIRST, full-width buttons === */
@media (max-width: 980px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 18px; max-width: 480px; margin: 0 auto; }
    /* Reorder: featured (originally 2nd) shown first on mobile */
    .pricing-card { order: 2; }
    .pricing-card.featured { order: 1; transform: none; margin-bottom: 8px; }
    .pricing-card .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 1rem; }
}
@media (max-width: 600px) {
    .pricing-card { padding: 28px 24px; }
}

/* === SECTION SPACING TIGHTER ON MOBILE === */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-tight { padding: 40px 0; }
    .section-title, .section-head { margin-bottom: 36px; }
    .section-title h2, .section-head h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); line-height: 1.25; }
    .section-title p, .section-head p { font-size: 0.97rem; }
    .container { padding-left: 20px; padding-right: 20px; }
}

/* === FEATURE CARDS MOBILE === */
@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .feature-card { padding: 24px 22px; }
    .feature-icon { width: 48px; height: 48px; margin-bottom: 14px; }
    .feature-icon svg { width: 24px !important; height: 24px !important; }
}

/* === STEPS MOBILE === */
@media (max-width: 560px) {
    .steps-grid { grid-template-columns: 1fr; gap: 14px; }
    .step-card { padding: 24px 22px; }
}

/* === TESTIMONIALS MOBILE === */
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; gap: 18px; max-width: 520px; margin: 0 auto; }
    .testimonial-card { padding: 26px 24px; }
}

/* === COMPARISON TABLE MOBILE: stacked card layout === */
@media (max-width: 768px) {
    .compare-wrap { overflow-x: visible; }
    .compare-table { min-width: 0; box-shadow: none; }
    .compare-table thead { display: none; }
    .compare-table tbody, .compare-table tr {
        display: block;
        margin-bottom: 18px;
        background: #fff;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 0 8px 20px var(--color-shadow);
    }
    .compare-table tr {
        border: 1px solid #E5E9EF;
    }
    .compare-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 18px;
        border-bottom: 1px solid #F1F3F6;
        font-size: 0.92rem;
        text-align: right;
    }
    .compare-table td:first-child {
        background: var(--color-heading);
        color: #fff;
        font-weight: 700;
        text-align: center;
        justify-content: center;
        font-size: 0.95rem;
    }
    .compare-table td:first-child strong { color: #fff; }
    .compare-table td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--color-text-muted);
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        flex: 1;
        text-align: left;
    }
    .compare-table td:last-child { border-bottom: none; }
}

/* === FAQ MOBILE === */
@media (max-width: 600px) {
    .faq-list summary { padding: 16px 50px 16px 18px; font-size: 0.95rem; }
    .faq-list summary::after { right: 16px; width: 24px; height: 24px; font-size: 1.1rem; }
    .faq-list details > p, .faq-list details > div { padding: 0 18px 18px; font-size: 0.93rem; }
}

/* === PAGE BANNER MOBILE === */
@media (max-width: 768px) {
    .page-banner { padding: 70px 0 50px; }
    .page-banner h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .page-banner .lead { font-size: 0.97rem; }
}

/* === CTA BANNER MOBILE === */
@media (max-width: 600px) {
    .cta-banner { padding: 40px 22px; }
    .cta-banner h2 { font-size: 1.3rem; line-height: 1.3; }
    .cta-banner p { font-size: 0.97rem; }
    .cta-banner .btn-whatsapp { width: 100%; justify-content: center; padding: 14px 20px; }
}

/* === SPLIT GRID MOBILE === */
@media (max-width: 880px) {
    .split, .split.reverse { gap: 32px; }
    .split-content h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
    .split-image { aspect-ratio: 16/10; }
    .split-image img { aspect-ratio: 16/10; }
}

/* === STATS STRIP MOBILE === */
@media (max-width: 540px) {
    .stats-strip { padding: 26px 18px; gap: 16px; }
    .stats-strip .stat strong, .stat-num { font-size: 1.5rem; }
}

/* === FOOTER MOBILE === */
@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .site-footer { padding: 50px 0 80px; } /* Extra bottom for sticky WhatsApp */
}

/* === HEADER MOBILE: more polish === */
@media (max-width: 1024px) {
    .header-top { font-size: 0.78rem; padding: 6px 0; }
    .header-top .header-top-right { gap: 12px; }
}
@media (max-width: 600px) {
    .header-top { display: none; } /* hide top utility bar on small phones */
    .header-main { padding: 12px 0; gap: 8px; }
    .header-cta .btn-whatsapp { padding: 8px 14px; font-size: 0.85rem; }
    .menu-toggle { padding: 10px; }
    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after { width: 22px; }
}

/* Hide email link on mobile */
.hide-on-mobile { display: none; }
@media (min-width: 768px) { .hide-on-mobile { display: inline-flex; } }

/* === STICKY MOBILE WHATSAPP CTA (better conversion) === */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 10px 16px;
    box-shadow: 0 -8px 24px rgba(26,54,93,0.10);
    z-index: 100;
    backdrop-filter: blur(8px);
}
.mobile-sticky-cta .btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 76px; }
    .wa-float { bottom: 88px; right: 16px; } /* push floating button above sticky bar */
}

/* === CONTACT INFO MOBILE === */
@media (max-width: 600px) {
    .contact-info { padding: 28px 22px; border-radius: var(--radius); }
    .contact-form-card { padding: 28px 22px; border-radius: var(--radius); }
}

/* === MOVIES GRID: 2 cols on tiny phones for better visibility === */
@media (max-width: 480px) {
    .movies-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* === NETWORKS GRID MOBILE: smaller logos that don't break === */
@media (max-width: 540px) {
    .networks-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .network-card { padding: 18px 14px; }
    .network-card img { height: 26px; }
    .network-card h4 { font-size: 0.9rem; }
    .network-card p { font-size: 0.78rem; }
}

/* === DEVICES ROW MOBILE === */
@media (max-width: 380px) {
    .devices-row { grid-template-columns: 1fr 1fr; }
}

/* === BUTTONS: ensure 44px min touch target on mobile === */
@media (max-width: 768px) {
    .btn { min-height: 46px; font-size: 0.98rem; }
    .btn-lg { padding: 16px 28px; font-size: 1rem; }
    .btn-sm { padding: 10px 16px; font-size: 0.88rem; min-height: 38px; }
}

/* === BREADCRUMBS MOBILE === */
@media (max-width: 600px) {
    .breadcrumbs { font-size: 0.85rem; }
}

/* === VALUES + CHANNEL CATS MOBILE === */
@media (max-width: 640px) {
    .values-grid, .channel-cats { gap: 16px; }
    .value-card, .channel-cat { padding: 26px 22px; }
}

/* === CONTACT GRID MOBILE === */
@media (max-width: 980px) {
    .contact-list li { padding: 14px 0; }
    .contact-form input, .contact-form textarea { font-size: 16px; } /* prevents iOS zoom */
}

/* === Hero image: ensure it has a soft loading state === */
.hero-visual {
    background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
}
.hero-visual img {
    display: block;
}

/* === Trust row mobile === */
@media (max-width: 880px) {
    .trust-row { grid-template-columns: 1fr 1fr; gap: 18px; }
    .trust-item { padding: 22px 16px; }
    .trust-row .icon-wrap { width: 48px; height: 48px; }
    .trust-row .icon-wrap svg { width: 22px !important; height: 22px !important; }
}
@media (max-width: 480px) {
    .trust-row { grid-template-columns: 1fr 1fr; }
    .trust-item h4 { font-size: 0.92rem; }
    .trust-item p { font-size: 0.8rem; }
}

/* === Improve the wa-float visibility & size on mobile === */
.wa-float {
    width: 56px;
    height: 56px;
}
.wa-float svg { width: 28px !important; height: 28px !important; }
@media (max-width: 600px) {
    .wa-float { width: 50px; height: 50px; }
    .wa-float svg { width: 24px !important; height: 24px !important; }
}

/* === Movies wall padding tighter on mobile === */
@media (max-width: 600px) {
    .movies-wall { padding: 60px 0; }
}

/* === Pricing trust strip mobile polish === */
@media (max-width: 540px) {
    .pricing-trust-strip {
        font-size: 0.82rem;
        padding: 12px 16px;
        line-height: 1.45;
        gap: 8px;
        margin-top: 28px;
    }
    .pricing-trust-icon { width: 26px; height: 26px; }
    .pricing-trust-icon svg { width: 14px !important; height: 14px !important; }
}

