/* ============================================================
   TV-FRANCE.COM — Design System
   Color: Deep Navy + Electric Indigo + Warm Amber
   Fonts: Space Grotesk (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ---------- TOKENS ---------- */
:root {
    --bg-primary: #0a0e27;
    --bg-secondary: #111538;
    --bg-tertiary: #161a3e;
    --accent: #6366f1;
    --accent-light: #818cf8;
    --cta: #f59e0b;
    --cta-hover: #ef4444;
    --text: #ffffff;
    --text-muted: #a5b4c8;
    --text-dim: #6b7a90;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
    --container: 1200px;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ---------- UTILITIES ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--cta), var(--cta-hover));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent {
    color: var(--accent-light);
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-center {
    text-align: center;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: var(--radius);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cta), var(--cta-hover));
    color: #fff;
    box-shadow: 0 4px 20px rgba(245, 158, 11, .3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, .45);
    color: #fff;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .25);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .4);
    color: #fff;
}

/* ---------- GLASS CARD ---------- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* ---------- BADGE ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .85rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(99, 102, 241, .15);
    color: var(--accent-light);
    border: 1px solid rgba(99, 102, 241, .2);
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.nav-brand img {
    height: 40px;
    width: auto;
}

.nav-brand span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    font-size: .85rem;
    font-weight: 500;
}

.nav-phone svg {
    flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: var(--transition);
}

@media (max-width:991px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, .98);
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--glass-border);
    }
}

@media (max-width:576px) {
    .nav-phone span {
        display: none;
    }

    .nav-actions .btn {
        padding: .6rem 1rem;
        font-size: .8rem;
    }
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1047 35%, #0f2046 65%, #0a0e27 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, .15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, .08) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(99, 102, 241, .08) 0%, transparent 35%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hero-stat {
    padding: 1.5rem;
    text-align: center;
}

.hero-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cta);
    margin-bottom: .25rem;
}

.hero-stat-label {
    font-size: .85rem;
    color: var(--text-muted);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-trust img {
    height: 28px;
}

.hero-users {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.hero-avatars {
    display: flex;
}

.hero-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-left: -10px;
}

.hero-avatars img:first-child {
    margin-left: 0;
}

.hero-users span {
    font-size: .85rem;
    color: var(--text-muted);
}

@media (max-width:991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-users {
        justify-content: center;
    }

    .hero-stats {
        max-width: 400px;
        margin: 2rem auto 0;
    }
}

@media (max-width:576px) {
    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
    }
}

/* ================= FEATURES ================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(99, 102, 241, .12);
    color: var(--accent-light);
    margin: 0 auto 1.25rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

.feature-card p {
    font-size: .9rem;
    color: var(--text-muted);
}

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

/* ================= SECTION HEADERS ================= */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: .75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ================= CHANNELS MARQUEE ================= */
.channels {
    overflow: hidden;
    padding: 3rem 0;
}

.channel-track {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
}

.channel-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem;
    border-radius: var(--radius-sm);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.channel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(.3);
    transition: var(--transition);
}

.channel-item:hover img {
    filter: grayscale(0);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================= PRICING ================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.plan-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-4px);
}

.plan-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(99, 102, 241, .15);
}

.plan-card.popular::before {
    content: 'Populaire';
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: .3rem 2.5rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.plan-duration {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.plan-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--cta);
    margin-bottom: .25rem;
}

.plan-price small {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-period {
    font-size: .85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem 0;
    font-size: .9rem;
    color: var(--text-muted);
}

.plan-features li svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

.plan-card .btn {
    width: 100%;
    justify-content: center;
}

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

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-question svg {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--accent);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer-inner {
    padding: 0 0 1.25rem;
    color: var(--text-muted);
    font-size: .95rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* ================= TRUST / REVIEWS ================= */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.review-card {
    padding: 2rem;
}

.review-stars {
    color: var(--cta);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-size: .95rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    font-size: .9rem;
}

.review-date {
    font-size: .8rem;
    color: var(--text-dim);
}

/* ================= DEVICES ================= */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.device-card {
    padding: 2rem 1rem;
    transition: var(--transition);
}

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

.device-card svg,
.device-card img {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--accent-light);
}

.device-card p {
    font-size: .9rem;
    font-weight: 500;
}

/* ================= CTA BANNER ================= */
.cta-banner {
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, .1), transparent 60%);
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: .75rem;
    position: relative;
}

.cta-banner p {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
}

.cta-banner .btn {
    position: relative;
}

/* ================= FOOTER ================= */
.site-footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.footer-col ul li {
    margin-bottom: .5rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: .85rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--text-dim);
}

.footer-payments {
    display: flex;
    gap: .75rem;
    align-items: center;
}

.footer-payments img {
    height: 24px;
    opacity: .6;
    transition: var(--transition);
}

.footer-payments img:hover {
    opacity: 1;
}

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

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

    .footer-bottom {
        flex-direction: column;
        gap: .75rem;
        text-align: center;
    }
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .5);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, .55);
    }
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    font-size: .85rem;
    color: var(--text-dim);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb span {
    color: var(--text-dim);
}

/* ================= PAGE HERO (inner pages) ================= */
.page-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, #0a0e27, #1a1047 60%, #0f2046);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, .1) 0%, transparent 60%);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: .75rem;
    position: relative;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ================= LEGAL PAGES ================= */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    color: var(--accent-light);
}

.legal-content h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 .75rem;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content ul li {
    color: var(--text-muted);
    margin-bottom: .5rem;
    list-style: disc;
}

.legal-content a {
    color: var(--accent-light);
    text-decoration: underline;
}

/* ================= BLOG LISTING ================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-card {
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.blog-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: .8rem;
    color: var(--text-dim);
    margin-bottom: .5rem;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text);
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--accent-light);
}

.blog-card-excerpt {
    font-size: .9rem;
    color: var(--text-muted);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.blog-card-btn {
    align-self: flex-start;
}

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

/* ================= BLOG POST ================= */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 5rem;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: .85rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.blog-post-featured {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
}

.blog-post h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--accent-light);
}

.blog-post h3 {
    font-size: 1.2rem;
    margin: 2rem 0 .75rem;
}

.blog-post p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-post ul,
.blog-post ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-post li {
    color: var(--text-muted);
    margin-bottom: .5rem;
    list-style: disc;
}

.blog-post ol li {
    list-style: decimal;
}

.blog-post a {
    color: var(--accent-light);
    text-decoration: underline;
}

.blog-post blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--glass-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-muted);
}

.blog-post table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: .9rem;
}

.blog-post th {
    background: var(--bg-tertiary);
    padding: .75rem 1rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--glass-border);
}

.blog-post td {
    padding: .75rem 1rem;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.blog-post .toc {
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.blog-post .toc h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--text);
}

.blog-post .toc ul {
    padding-left: 1.25rem;
}

.blog-post .toc li {
    margin-bottom: .4rem;
    list-style: decimal;
}

.blog-post .toc a {
    color: var(--accent-light);
    text-decoration: none;
    font-size: .9rem;
}

.blog-post .toc a:hover {
    text-decoration: underline;
}

/* Blog CTA block */
.blog-cta {
    padding: 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(99, 102, 241, .1), rgba(245, 158, 11, .08));
    border: 1px solid rgba(99, 102, 241, .2);
    text-align: center;
    margin: 2.5rem 0;
}

.blog-cta h3 {
    margin-bottom: .5rem;
}

.blog-cta p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* Blog checklist */
.blog-checklist {
    margin: 1.5rem 0;
    padding: 0;
}

.blog-checklist li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .4rem 0;
    list-style: none !important;
}

.blog-checklist li::before {
    content: '✓';
    color: var(--accent-light);
    font-weight: 700;
    flex-shrink: 0;
}

/* Blog related */
.blog-related {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.blog-related h3 {
    margin-bottom: 1.25rem;
}

.blog-related ul {
    padding-left: 0;
}

.blog-related li {
    list-style: none;
    margin-bottom: .5rem;
}

.blog-related a {
    color: var(--accent-light);
    text-decoration: none;
    font-size: .95rem;
}

.blog-related a:hover {
    text-decoration: underline;
}

/* ================= INSTALLATION STEPS ================= */
.steps-grid {
    display: grid;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cta);
    line-height: 1;
    flex-shrink: 0;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

.step-card p {
    font-size: .9rem;
    color: var(--text-muted);
}

/* ================= CONTACT ================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(99, 102, 241, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: .25rem;
}

.contact-info-item p {
    color: var(--text-muted);
    font-size: .9rem;
}

.contact-info-item a {
    color: var(--accent-light);
}

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

/* ================= MOVIE POSTER GALLERY ================= */
.poster-gallery {
    overflow: hidden;
    padding: 2rem 0;
}

.poster-track {
    display: flex;
    gap: 1rem;
    animation: posterScroll 40s linear infinite;
}

.poster-track:hover {
    animation-play-state: paused;
}

.poster-item {
    flex-shrink: 0;
    width: 160px;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.poster-item:hover {
    transform: scale(1.05);
    border-color: var(--accent);
}

.poster-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

@keyframes posterScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width:576px) {
    .poster-item {
        width: 120px;
    }

    .poster-item img {
        height: 180px;
    }
}

/* ================= REVIEW AVATARS ================= */
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.review-meta .review-author {
    margin-bottom: 0;
}

.review-meta .review-stars {
    margin-bottom: 0;
    font-size: .9rem;
}

/* ================= PRICING BADGES ================= */
.plan-badge {
    display: inline-block;
    padding: .3rem .85rem;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .75rem;
}

.plan-badge.popular-badge {
    background: var(--accent);
    color: #fff;
}

.plan-badge.best-badge {
    background: linear-gradient(135deg, var(--cta), var(--cta-hover));
    color: #fff;
}

.plan-subtitle {
    font-size: .8rem;
    color: var(--text-dim);
    margin-bottom: .5rem;
}

/* ================= LOGO IN NAVBAR ================= */
.nav-brand img.brand-logo {
    height: 38px;
    width: auto;
}

.footer-brand img.brand-logo {
    height: 34px;
    width: auto;
    margin-bottom: .5rem;
}

/* ================= ANIMATIONS ================= */
@media (prefers-reduced-motion:no-preference) {
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity .6s ease, transform .6s ease;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
}