/* ============================================
   MEILLEUR ABONNEMENT IPTV - STYLE.CSS
   Design: Dark Glassmorphism + Emerald/Amber
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
    /* Colors */
    --bg-primary: #0a0f0d;
    --bg-secondary: #0d1512;
    --bg-tertiary: #111a16;
    --accent-green: #00C853;
    --accent-green-light: #00E676;
    --accent-green-dark: #009624;
    --accent-amber: #FFAB00;
    --accent-amber-light: #FFD740;
    --accent-amber-dark: #FF8F00;
    --accent-gold: #FFD700;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-hover: rgba(255, 255, 255, 0.15);

    /* Glass effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-blur: 20px;
    --glass-green: rgba(0, 200, 83, 0.06);
    --glass-amber: rgba(255, 171, 0, 0.06);

    /* Gradients */
    --gradient-green: linear-gradient(135deg, #00C853, #00E676);
    --gradient-amber: linear-gradient(135deg, #FFAB00, #FFD740);
    --gradient-gold: linear-gradient(135deg, #FFD700, #FFAB00);
    --gradient-hero: linear-gradient(160deg, rgba(0, 200, 83, 0.08) 0%, transparent 40%, rgba(255, 171, 0, 0.05) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);

    /* Shadows */
    --shadow-green: 0 0 30px rgba(0, 200, 83, 0.15);
    --shadow-amber: 0 0 30px rgba(255, 171, 0, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.4);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --border-radius-lg: 24px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
}

/* Background noise texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-green-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Fix mobile horizontal scroll */
section, header, footer, main {
    overflow-x: hidden;
    max-width: 100vw;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Disable text selection (anti-copie) */
body.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.text-green { color: var(--accent-green); }
.text-amber { color: var(--accent-amber); }
.text-gold { color: var(--accent-gold); }

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin-bottom: 16px;
}

.section-title h2 span {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-green);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass-hover);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-bg-hover);
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-2px);
}

.btn-amber {
    background: var(--gradient-amber);
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 171, 0, 0.3);
}

.btn-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 171, 0, 0.4);
    color: #000;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* --- Glass Card Component --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 15, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-primary);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    color: var(--accent-green);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 8px;
}

/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 171, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--glass-green);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-content h1 {
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-content h1 .highlight-green {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 .highlight-amber {
    background: var(--gradient-amber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content > p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hero-stat .number span {
    color: var(--accent-green);
}

.hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-green), transparent 50%, var(--accent-amber));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ============================================
   COMPATIBILITY CAROUSEL
   ============================================ */
.compat-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: var(--bg-secondary);
}

.compat-title {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 500;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll-infinite 30s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.carousel-item:hover {
    border-color: var(--accent-green);
    background: var(--glass-green);
}

.carousel-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.carousel-item span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@keyframes scroll-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: var(--section-padding);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Pricing controls */
/* PRICING GRID - Style iptvsmarthd */
.pricing-grid-custom { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.pack-card { border-radius: 25px; padding: 2rem; position: relative; transition: all 0.3s ease; display: flex; flex-direction: column; width: 100%; }
.pack-card.standard { background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(0, 200, 83, 0.02)); border: 2px solid rgba(0, 200, 83, 0.3); }
.pack-card.premium { background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 230, 118, 0.05)); border: 2px solid var(--accent-green); }
.pack-card.vip { background: linear-gradient(135deg, rgba(255, 171, 0, 0.12), rgba(255, 140, 0, 0.05)); border: 2px solid rgba(255, 171, 0, 0.5); }
.pack-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0, 200, 83, 0.2); }
.pack-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); padding: 0.6rem 2rem; border-radius: 50px; font-size: 0.9rem; font-weight: 700; white-space: nowrap; z-index: 2; }
.pack-badge.popular-badge { background: var(--accent-green); color: #000; }
.pack-badge.best-badge { background: var(--accent-amber); color: #000; }
.pack-header { text-align: left; margin-bottom: 1.5rem; }
.pack-label { display: block; font-size: 0.9rem; margin-bottom: 0.3rem; opacity: 0.7; color: var(--text-secondary); }
.pack-title-name { font-size: 1.6rem; font-weight: 800; font-family: var(--font-heading); }
.pack-card.standard .pack-title-name { color: var(--accent-green); }
.pack-card.premium .pack-title-name { color: var(--accent-green); }
.pack-card.vip .pack-title-name { color: var(--accent-amber); }

.pack-features-list { list-style: none; margin-bottom: 1.5rem; flex-grow: 1; padding: 0; }
.pack-features-list li { padding: 0.5rem 0; font-size: 0.9rem; line-height: 1.5; }
.pack-features-list li.active { opacity: 1; color: #fff; }
.pack-features-list li.inactive { opacity: 0.4; text-decoration: line-through; }

.pack-screens { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.pack-screens .screen-btn { flex: 1; padding: 0.8rem 1.5rem; border-radius: 50px; border: 2px solid rgba(255, 255, 255, 0.3); background: transparent; color: #fff; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: var(--font-body); font-size: 0.9rem; }
.pack-screens .screen-btn.active { background: var(--accent-green); color: #000; border-color: var(--accent-green); }
.pack-screens .screen-btn:hover { border-color: var(--accent-green); }

.duration-dropdown { width: 100%; padding: 1rem; border-radius: 15px; border: 2px solid rgba(255, 255, 255, 0.2); background-color: rgba(255, 255, 255, 0.1); color: #fff; font-family: var(--font-body); font-size: 1rem; font-weight: 600; cursor: pointer; margin-bottom: 1.5rem; transition: all 0.3s; appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300C853' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.duration-dropdown option { background: #1a1a1a; color: #fff; padding: 0.5rem; }
.duration-dropdown:hover { border-color: var(--accent-green); }
.duration-dropdown:focus { outline: none; border-color: var(--accent-green); box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1); }

.pack-cta { display: block; width: 100%; padding: 1.2rem; border-radius: 50px; text-align: center; font-weight: 700; font-size: 1.05rem; text-decoration: none; transition: all 0.3s; }
.pack-card.standard .pack-cta { background: var(--accent-green); color: #000; }
.pack-card.premium .pack-cta { background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light)); color: #000; }
.pack-card.vip .pack-cta { background: var(--accent-amber); color: #000; }
.pack-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4); }

@media (max-width: 1024px) {
    .pricing-grid-custom { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .pricing-grid-custom { max-width: 400px; }
}

/* Multi-screen grid */
.multi-screen-grid {
    display: none;
}

.multi-screen-grid.active {
    display: grid;
}

/* ============================================
   SERVER DIFFERENCES SECTION
   ============================================ */
.differences-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.differences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.diff-card {
    text-align: center;
    padding: 40px 28px;
}

.diff-card .diff-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.diff-card.standard .diff-icon {
    background: rgba(0, 200, 83, 0.1);
    color: var(--accent-green);
}

.diff-card.premium .diff-icon {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-green-light);
}

.diff-card.vip .diff-icon {
    background: rgba(255, 171, 0, 0.1);
    color: var(--accent-amber);
}

.diff-card h3 {
    margin-bottom: 12px;
}

.diff-card p {
    font-size: 0.9rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--section-padding);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    text-align: center;
}

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--glass-green);
    border: 1px solid rgba(0, 200, 83, 0.15);
    font-size: 1.4rem;
    color: var(--accent-green);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(0, 200, 83, 0.15);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.2);
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.88rem;
}

/* ============================================
   VIP SECTION
   ============================================ */
.vip-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 171, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.vip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vip-content h2 span {
    background: var(--gradient-amber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-content p {
    margin: 16px 0 24px;
    font-size: 1.05rem;
}

.vip-features {
    margin-bottom: 32px;
}

.vip-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.vip-features li i {
    color: var(--accent-amber);
    font-size: 0.8rem;
}

.vip-image {
    position: relative;
}

.vip-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-amber);
}

.vip-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-amber), transparent 50%, var(--accent-green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ============================================
   CHANNELS SECTION
   ============================================ */
.channels-section {
    padding: var(--section-padding);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    text-align: center;
}

.channel-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.channel-item span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   COMPARISON TABLE (offres.html)
   ============================================ */
.comparison-section {
    padding: var(--section-padding);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table thead th {
    padding: 20px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-glass);
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table thead th.standard-col { color: var(--accent-green); }
.comparison-table thead th.premium-col { color: var(--accent-green-light); }
.comparison-table thead th.vip-col { color: var(--accent-amber); }

.comparison-table tbody td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table .check { color: var(--accent-green); }
.comparison-table .cross { color: var(--text-muted); opacity: 0.5; }

/* ============================================
   GUARANTEES SECTION
   ============================================ */
.guarantees-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.guarantee-card {
    text-align: center;
    padding: 40px 28px;
}

.guarantee-card .guarantee-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
}

.guarantee-card:nth-child(1) .guarantee-icon {
    background: rgba(0, 200, 83, 0.1);
    color: var(--accent-green);
}

.guarantee-card:nth-child(2) .guarantee-icon {
    background: rgba(255, 171, 0, 0.1);
    color: var(--accent-amber);
}

.guarantee-card:nth-child(3) .guarantee-icon {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-green-light);
}

.guarantee-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.guarantee-card p {
    font-size: 0.88rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(255, 171, 0, 0.06));
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content h2 span {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   CHANNELS PAGE (chaines.html)
   ============================================ */
.channels-page-section {
    padding: var(--section-padding);
    padding-top: 140px;
}

.channels-category {
    margin-bottom: 50px;
}

.channels-category h3 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-glass);
}

.channels-category h3 i {
    color: var(--accent-green);
    margin-right: 10px;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-section {
    padding: var(--section-padding);
    padding-top: 60px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category-title i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    background: var(--glass-bg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-glass-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-green);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-green);
    font-size: 0.8rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.92rem;
}

/* ============================================
   FORMS (contact.html, demande.html)
   ============================================ */
.form-section {
    padding: var(--section-padding);
    padding-top: 140px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group label .required {
    color: var(--accent-amber);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    cursor: pointer;
}

select.form-control option {
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem;
}

select.form-control:hover {
    border-color: var(--accent-green);
}

select.form-control:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Form success/error */
.form-message {
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: var(--accent-green);
    display: block;
}

.form-message.error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
    display: block;
}

/* ============================================
   BLOG
   ============================================ */
.blog-section {
    padding: var(--section-padding);
    padding-top: 140px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    overflow: hidden;
    padding: 0;
}

.blog-card .blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-card .blog-body {
    padding: 24px;
}

.blog-card .blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.blog-card .blog-meta .category {
    color: var(--accent-green);
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--accent-green);
}

.blog-card p {
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card .read-more:hover {
    gap: 10px;
}

/* Single blog article */
.article-section {
    padding: var(--section-padding);
    padding-top: 140px;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-hero-image {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
    overflow: hidden;
}

.article-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-meta .category {
    color: var(--accent-green);
    font-weight: 600;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--accent-green);
}

.breadcrumb .separator {
    color: var(--text-muted);
    opacity: 0.5;
}

.article-content h2 {
    margin: 40px 0 16px;
    font-size: 1.5rem;
}

.article-content h3 {
    margin: 32px 0 12px;
    font-size: 1.2rem;
}

.article-content p {
    margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.article-content ul li,
.article-content ol li {
    padding: 4px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

/* Warning box */
.warning-box {
    padding: 20px 24px;
    background: rgba(255, 171, 0, 0.08);
    border-left: 4px solid var(--accent-amber);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 24px 0;
}

.warning-box p {
    color: var(--accent-amber-light);
    font-size: 0.9rem;
}

.info-box {
    padding: 20px 24px;
    background: rgba(0, 200, 83, 0.08);
    border-left: 4px solid var(--accent-green);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 24px 0;
}

.info-box p {
    color: var(--accent-green-light);
    font-size: 0.9rem;
}

/* Article CTA */
.article-cta {
    padding: 32px;
    background: var(--glass-green);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: var(--border-radius);
    text-align: center;
    margin: 40px 0;
}

.article-cta h3 {
    margin-bottom: 12px;
}

.article-cta p {
    margin-bottom: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-col .footer-logo {
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    padding: 5px 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-green);
    padding-left: 4px;
}

.footer-col .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-col .contact-item i {
    color: var(--accent-green);
    font-size: 0.85rem;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Pulse animation */
.whatsapp-float a::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   PAGE HEADER (for sub-pages)
   ============================================ */
.page-header {
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    background: var(--gradient-hero);
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   CONDITIONS / POLITIQUE
   ============================================ */
.legal-section {
    padding: var(--section-padding);
    padding-top: 140px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h2 {
    margin: 40px 0 16px;
    font-size: 1.4rem;
}

.legal-container h3 {
    margin: 24px 0 12px;
    font-size: 1.1rem;
}

.legal-container p {
    margin-bottom: 16px;
    font-size: 0.92rem;
}

.legal-container ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-container ul li {
    padding: 4px 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    list-style: disc;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible,
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }



    .vip-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vip-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid,
    .differences-grid,
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    /* Mobile nav */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 15, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-left: 1px solid var(--border-glass);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .nav-cta {
        margin-left: 0;
    }

    /* Mobile adjustments */


    .features-grid,
    .differences-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col a:hover {
        padding-left: 0;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat {
        text-align: center;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 10px 8px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }

    .container {
        padding: 0 16px;
    }

    .pack-card {
        padding: 28px 20px;
    }

    .glass-card {
        padding: 24px 20px;
    }
}