/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Content */
main {
    min-height: 100vh;
}

:root {
    /* Couleurs principales - Bleu */
    --primary-blue: #0818AF;
    --primary-blue-dark: #060f7a;
    --primary-blue-rgb: 8, 24, 175;
    --light-blue: #0d24d4;
    --light-blue-bg: #eef0ff;
    
    /* Alias (cohérence) */
    --indigo: var(--primary-blue);
    --indigo-light: var(--light-blue);
    --indigo-bg: var(--light-blue-bg);
    
    /* Neutres */
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #f9fafb;
    --gray-lighter: #f3f4f6;
    --gray-border: #d1d5db;
    --gray-dark: #374151;
    
    /* Texte */
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    
    /* Accents (étoiles, succès) */
    --accent-gold: #fbbf24;
    --accent-gold-rgb: 251, 191, 36;
    --accent-green: #10b981;
    --accent-green-light: #4ade80;
    
    /* Bouton WhatsApp (couleur marque) */
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #20BA5A;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION - Nouveau Design
   ============================================ */
.hero {
    position: relative;
    padding: 6rem 0 6rem; /* padding-top: 6rem pour laisser place au header fixe (~91px) */
    background-color: #2d1f14; /* Warm fallback matching panda/cinema image */
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    min-height: 600px; /* Ensure minimum height for background */
}

/* Hero background - div avec inline style (priorité max), cette règle en secours */
.hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    display: block !important;
    background-size: cover !important;
    background-position: center !important;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Desktop: More padding (header fixe ~91px, 8rem = 128px) */
@media (min-width: 1025px) {
    .hero {
        padding: 8rem 0;
        min-height: calc(100vh - 100px);
        display: flex;
        align-items: center;
    }
}

/* Hero Container - Centered and balanced */
.hero-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Desktop: 2-column balanced layout */
@media (min-width: 1025px) {
    .hero-container {
        flex-direction: row;
        gap: 6rem;
        align-items: center;
        justify-content: space-between;
    }
}

/* Hero Content - Left column */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 650px;
    gap: 1.75rem;
    order: 1;
}

/* Desktop: Better spacing */
@media (min-width: 1025px) {
    .hero-content {
        gap: 2.5rem;
        flex: 0 1 52%;
    }
}

/* Hero Title - White text for visibility on image */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700; /* Apple bold */
    color: #ffffff;
    line-height: 1.05; /* Apple tight line-height for large titles */
    letter-spacing: -0.03em; /* Apple tighter spacing */
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-title-accent {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Tablet: Larger title */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

/* Desktop: Maximum title */
@media (min-width: 1025px) {
    .hero-title {
        font-size: 4.5rem;
        line-height: 1.05; /* Apple tight line-height */
        letter-spacing: -0.03em;
    }
}

/* Hero Subtitle - White text for visibility on image */
.hero-subtitle {
    font-size: 1.125rem; /* 18px */
    color: #ffffff;
    line-height: 1.6; /* Apple standard */
    margin: 0;
    max-width: 100%;
    font-weight: 400;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Desktop: Larger subtitle */
@media (min-width: 1025px) {
    .hero-subtitle {
        font-size: 1.3125rem; /* 21px */
        line-height: 1.65;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1025px) {
    .hero-stat-number {
        font-size: 2.25rem;
    }
    
    .hero-stat-label {
        font-size: 0.9375rem;
    }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        gap: 1.25rem;
    }
}

/* Desktop: Auto width for buttons */
@media (min-width: 1025px) {
    .hero-actions {
        width: auto;
    }
}

.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    min-height: 3.5rem;
    width: 100%;
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
    background: #ffffff;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-blue-rgb), 0.25);
}

@media (min-width: 768px) {
    .btn-hero-secondary {
        width: auto;
    }
}

@media (min-width: 1025px) {
    .btn-hero-secondary {
        padding: 1.125rem 3rem;
        font-size: 1.125rem;
    }
}

.hero-reassurance {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #ffffff;
    text-align: left;
    line-height: 1.47059;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Button */
.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    min-height: 3.5rem;
    width: 100%;
}

/* Desktop: Button sizing */
@media (min-width: 1025px) {
    .btn-hero {
        width: auto;
        padding: 1.125rem 3rem;
        font-size: 1.125rem;
    }
}

/* Hero Visual - Right column - Hidden when using background image */
.hero-visual {
    display: none !important; /* Hidden - using background image instead */
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.hero-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
    pointer-events: none;
    border-radius: var(--border-radius);
}

/* Desktop: Better positioning */
@media (min-width: 1025px) {
    .hero-visual {
        flex: 0 1 48%;
        justify-content: flex-end;
    }
    
    .hero-visual-wrapper {
        max-width: 90%;
    }
}

/* Hero Image */
.hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1 !important; /* Ensure image is always visible */
    display: block;
}

/* Desktop: Image sizing */
@media (min-width: 1025px) {
    .hero-img {
        max-width: 90%;
    }
}

.hero-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(var(--primary-blue-rgb), 0.2);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   BASE STYLES - Mobile First
   ============================================ */

/* Root font size: 16px = 1rem (Mobile-first base) */
html {
    font-size: 16px; /* Base font size for rem calculations */
    scroll-behavior: smooth;
    scroll-padding-top: 5rem; /* Account for sticky header - Mobile: 80px */
    /* Core Web Vitals: Prevent layout shift */
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

/* Tablet: Adjust scroll padding */
@media (min-width: 481px) {
    html {
        scroll-padding-top: 5.5rem; /* 88px */
    }
}

/* Desktop: Adjust scroll padding */
@media (min-width: 1025px) {
    html {
        scroll-padding-top: 6.25rem; /* 100px */
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    /* Core Web Vitals: Prevent layout shift */
    min-height: 100vh;
    position: relative;
    /* Typography: Base font size for readability */
    font-size: 17px; /* Apple standard base size */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


/* Typography - Apple Style */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.022em;
    line-height: 1.05;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p, li, span, div, a {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    line-height: 1.47059;
    letter-spacing: -0.022em;
}

/* Typography Scale - Mobile First */
p, li, span, div, a {
    font-size: 1rem; /* 16px base */
    line-height: 1.47059; /* Optimal readability */
}

/* Small text - Minimum readable */
small, .text-small {
    font-size: 0.875rem; /* 14px - Still readable */
    line-height: 1.47059;
}

/* Ensure all interactive elements are touch-friendly */
a, button, input[type="button"], input[type="submit"], 
.nav-link-mobile, .nav-link-desktop, 
.lang-selector-btn, .faq-question {
    min-height: 2.75rem; /* 44px - Minimum touch target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile-specific: Ensure tap targets are large enough */
@media (max-width: 480px) {
    a, button, .btn, .nav-link-mobile {
        min-height: 2.75rem; /* 44px - Touch-friendly */
        padding: 0.75rem 1rem; /* Generous padding */
    }
}

/* Container - Mobile First */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem; /* Mobile: 16px (1rem) padding */
    box-sizing: border-box;
    /* Core Web Vitals: Prevent layout shift */
    contain: layout;
}

/* Tablet: Adjust container padding */
@media (min-width: 481px) {
    .container {
        padding: 0 1.5rem; /* Tablet: 24px (1.5rem) padding */
    }
}

/* Desktop: Max width and padding */
@media (min-width: 1025px) {
    .container {
        max-width: 75rem; /* 1200px */
        padding: 0 2.5rem; /* Desktop: 40px - More breathing room */
    }
}

/* Large screens: Optimize for wide displays */
@media (min-width: 1440px) {
    .container {
        max-width: 87.5rem; /* 1400px - Better use of space on large screens */
        padding: 0 3rem; /* 48px - Generous padding */
    }
}

/* Extra large screens: Maximum width */
@media (min-width: 1920px) {
    .container {
        max-width: 100rem; /* 1600px - Optimal for very large displays */
        padding: 0 4rem; /* 64px - Maximum padding */
    }
}

/* Ensure no horizontal overflow globally */
* {
    max-width: 100%;
}

/* Responsive Images - Prevent CLS (Cumulative Layout Shift) */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
    /* Core Web Vitals: Prevent layout shift */
    object-fit: contain;
}

/* Images with known aspect ratios - Add aspect-ratio to prevent CLS */
img[width][height] {
    aspect-ratio: attr(width) / attr(height);
}

/* Logo images - Maintain aspect ratio (for any remaining images) */
.logo-img {
    aspect-ratio: auto;
    object-fit: contain;
    /* Prevent layout shift during load */
    min-height: 2rem; /* Reserve space */
}

/* Hero images and visuals */
.hero-visual img,
.hero-device-icon {
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
}

/* SVG icons - Scale properly */
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   HEADER - Compatible avec le site
   ============================================ */
.header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000; /* Below mobile menu (9999) and overlay (9998) */
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Header intégré dans le hero - transparent, texte blanc, fixe au scroll */
.header-in-hero {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Quand on scroll, repasser au fond blanc (classe .scrolled ajoutée par JS) */
.header-in-hero.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.header-in-hero.scrolled .nav-link-desktop {
    color: var(--text-dark) !important;
}

.header-in-hero.scrolled .logo-iptv,
.header-in-hero.scrolled .logo-abonnement {
    color: var(--text-dark) !important;
}

/* Logo inchangé - toujours cercle bleu + play blanc (SVG) */

.header-in-hero.scrolled .lang-selector-btn {
    color: var(--text-dark) !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

/* Bouton actif (FR sélectionné) : fond bleu + texte blanc pour visibilité */
.header-in-hero.scrolled .lang-selector-btn[aria-pressed="true"],
.header-in-hero.scrolled .lang-selector-btn.active {
    background: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    color: var(--white) !important;
}

.header-in-hero.scrolled .lang-selector-btn[aria-pressed="true"] .lang-code,
.header-in-hero.scrolled .lang-selector-btn[aria-pressed="true"] .lang-flag,
.header-in-hero.scrolled .lang-selector-btn.active .lang-code,
.header-in-hero.scrolled .lang-selector-btn.active .lang-flag {
    color: var(--white) !important;
}

.header-in-hero.scrolled .hamburger-line {
    background-color: var(--text-dark) !important;
}

/* Header : largeur réduite - centrage forcé */
.header {
    display: flex;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

#header .container,
.header .container {
    flex: 0 1 56rem;
    max-width: 56rem !important;
    width: 100%;
}

@media (min-width: 768px) {
    #header .container,
    .header .container {
        flex: 0 1 64rem;
        max-width: 64rem !important;
    }
}

@media (min-width: 1025px) {
    #header .container,
    .header .container {
        flex: 0 1 64rem;
        max-width: 64rem !important;
    }
}

@media (min-width: 1440px) {
    #header .container,
    .header .container {
        flex: 0 1 72rem;
        max-width: 72rem !important;
    }
}

@media (min-width: 1920px) {
    #header .container,
    .header .container {
        flex: 0 1 80rem;
        max-width: 80rem !important;
    }
}

.header-in-hero .nav-link-desktop {
    color: #ffffff !important;
}

.header-in-hero .nav-link-desktop:hover {
    color: rgba(255, 255, 255, 0.85) !important;
}

.header-in-hero .logo-iptv,
.header-in-hero .logo-abonnement {
    color: #ffffff !important;
}

/* Logo : pas de surcharge - le SVG garde ses couleurs (circle: primary-blue, path: white) */

.header-in-hero .lang-selector-btn {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.header-in-hero .lang-selector-btn[aria-pressed="true"] {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.header-in-hero .hamburger-line {
    background-color: #ffffff !important;
}

/* Mobile : masquer complètement le header */
@media (max-width: 768px) {
    .header {
        display: none !important;
    }
}

.header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}



/* Header Content - Modern Layout */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
    position: relative;
    width: 100%;
    flex-wrap: nowrap;
    z-index: 1; /* Ensure content is above background but below toggle */
}

/* Logo - Art Design Gras Style */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.2s ease;
    min-height: 2.75rem; /* 44px - Touch target */
    padding: 0.25rem 0;
    border: none;
    background: none;
    cursor: pointer;
}

.logo-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
    border-radius: 0.5rem;
}

.logo-link:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo-link:active {
    transform: scale(0.98);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0; /* No gap between top and bottom */
    line-height: 1;
}

/* Top: Symbol + IPTV */
.logo-top {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Gap between icon and text */
    margin-bottom: 0;
}

.logo-icon {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 1.5rem; /* Mobile: 24px */
    height: 1.5rem; /* Mobile: 24px */
    display: block;
    filter: drop-shadow(0 2px 4px rgba(var(--primary-blue-rgb), 0.2));
}

.logo-waves {
    position: absolute;
    left: calc(100% + 0.25rem);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    height: 100%;
    justify-content: center;
}

.wave-line {
    display: block;
    background: linear-gradient(90deg, var(--primary-blue) 0%, rgba(var(--primary-blue-rgb), 0.6) 100%);
    border-radius: 0.0625rem;
    height: 0.125rem;
    width: 0.25rem;
    animation: wavePulse 2s ease-in-out infinite;
}

.wave-line:nth-child(1) {
    width: 0.375rem;
    animation-delay: 0s;
}

.wave-line:nth-child(2) {
    width: 0.3125rem;
    animation-delay: 0.2s;
}

.wave-line:nth-child(3) {
    width: 0.25rem;
    animation-delay: 0.4s;
}

@keyframes wavePulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(0.125rem);
    }
}

.logo-iptv {
    font-size: 1.125rem; /* Mobile: 18px */
    font-weight: 700; /* Bold */
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    color: var(--primary-blue);
    letter-spacing: -0.022em; /* Apple standard letter spacing */
    text-transform: uppercase;
    line-height: 1;
    display: block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Bottom: ABONNEMENT */
.logo-abonnement {
    font-size: 0.625rem; /* Mobile: 10px */
    font-weight: 700; /* Bold */
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    color: var(--gray-dark);
    letter-spacing: 0.011em; /* Apple standard letter spacing */
    text-transform: uppercase;
    line-height: 1;
    display: block;
    margin-top: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    opacity: 0.9;
}

/* Tablet: Slightly larger */
@media (min-width: 481px) {
    .logo-icon svg {
        width: 1.625rem; /* Tablet: 26px */
        height: 1.625rem;
    }
    
    .logo-iptv {
        font-size: 1.25rem; /* Tablet: 20px */
    }
    
    .logo-abonnement {
        font-size: 0.6875rem; /* Tablet: 11px */
    }
}

/* Desktop: Maximum size */
@media (min-width: 1025px) {
    .logo-icon svg {
        width: 1.75rem; /* Desktop: 28px */
        height: 1.75rem;
    }
    
    .logo-iptv {
        font-size: 1.375rem; /* Desktop: 22px */
    }
    
    .logo-abonnement {
        font-size: 0.75rem; /* Desktop: 12px */
    }
    
    .logo-top {
        gap: 0.625rem; /* Slightly more gap on desktop */
    }
}

/* Language Selector - Desktop */
.lang-selector-desktop {
    display: none; /* Hidden on mobile */
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.lang-selector-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    min-height: 36px;
    outline: none;
}

.lang-selector-btn:hover {
    background: var(--gray-lighter);
    border-color: var(--primary-blue);
    transform: translateY(-1px);
}

.lang-selector-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(var(--primary-blue-rgb), 0.2);
}

.lang-selector-btn:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.lang-flag {
    font-size: 1.125rem;
    line-height: 1;
}

.lang-code {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Language Selector - Mobile */
.lang-selector-mobile {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.lang-selector-mobile-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-selector-mobile-buttons {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.lang-selector-mobile .lang-selector-btn {
    flex: 1;
    justify-content: center;
    padding: 0.75rem 1rem;
    min-height: 44px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Ensure language selector is visible and accessible */
.lang-selector-mobile {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: var(--gray-lighter);
    border-radius: 8px;
    margin-top: 1rem;
}

/* Desktop Navigation - Modern & Clean */
.nav-desktop {
    display: none; /* Hidden on mobile */
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    margin: 0 auto;
}

.nav-link-desktop {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-link-desktop::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link-desktop:hover {
    color: var(--primary-blue);
}

.nav-link-desktop:hover::after,
.nav-link-desktop.active::after {
    width: 100%;
}

.nav-link-desktop.active {
    color: var(--primary-blue);
}

.nav-link-desktop:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex !important; /* Force display on mobile */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 48px; /* Increased for better tap target */
    min-height: 48px; /* Increased for better tap target */
    z-index: 100000 !important; /* Highest z-index - above menu and overlay */
    position: relative !important;
    transition: background-color 0.2s ease;
    border-radius: 8px;
    position: relative !important;
    pointer-events: auto !important; /* Force clickable */
    -webkit-tap-highlight-color: rgba(var(--primary-blue-rgb), 0.2);
    touch-action: manipulation; /* Improve touch response */
    -webkit-user-select: none;
    user-select: none;
}

/* Desktop: Hide mobile menu toggle */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.mobile-menu-toggle[aria-expanded="true"] {
    background-color: rgba(var(--primary-blue-rgb), 0.08);
}

/* Mobile Header State Management - Use body.menu-open class */
@media (max-width: 768px) {
    /* When menu is open: Hide normal header */
    body.menu-open .header {
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* When menu is open: Hide burger icon */
    body.menu-open .mobile-menu-toggle {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    /* When menu is closed: Show burger icon */
    body:not(.menu-open) .mobile-menu-toggle {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99998 !important; /* Very high, below menu but above everything else */
    pointer-events: none;
    isolation: isolate; /* Create new stacking context */
}

.mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

/* ============================================
   MOBILE MENU - Simple and Clean
   ============================================ */
.nav-mobile {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 85%;
    max-width: 320px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
    z-index: 99999 !important; /* Highest z-index - above everything */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    isolation: isolate; /* Create new stacking context */
}

/* Hide state - Menu is hidden (default) */
.nav-mobile.hide {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Show state - Menu is visible */
.nav-mobile.show {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
}

/* Mobile only - ensure menu works on mobile */
@media (max-width: 768px) {
    .mobile-menu-overlay {
        z-index: 99998 !important; /* Below menu, above everything else */
    }
    
    .mobile-menu-overlay.active {
        z-index: 99998 !important;
    }
    
    .nav-mobile {
        display: flex;
        z-index: 99999 !important; /* Highest - above everything */
    }
    
    .nav-mobile.hide {
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 99999 !important; /* Keep high z-index even when hidden */
    }
    
    .nav-mobile.show {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        z-index: 99999 !important; /* Highest - above everything */
    }
    
    .mobile-menu-toggle {
        z-index: 100000 !important; /* Above menu and overlay */
    }
}

/* Desktop: Hide mobile menu */
@media (min-width: 1025px) {
    .nav-mobile {
        display: none !important;
    }
}

/* Desktop: Hide mobile menu */
@media (min-width: 1025px) {
    .nav-mobile {
        display: none !important;
    }
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}


.mobile-menu-logo {
    display: flex;
    align-items: center;
}

/* Mobile Menu Logo - Same style as main logo but smaller */
.mobile-menu-logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.mobile-menu-logo .logo-container {
    gap: 0;
}

.mobile-menu-logo .logo-icon svg {
    width: 1.375rem; /* Mobile menu: 22px */
    height: 1.375rem;
}

.mobile-menu-logo .logo-iptv {
    font-size: 1rem; /* Mobile menu: 16px */
}

.mobile-menu-logo .logo-abonnement {
    font-size: 0.5625rem; /* Mobile menu: 9px */
}

.mobile-menu-logo .logo-top {
    gap: 0.375rem;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; /* Increased for better tap target */
    height: 48px; /* Increased for better tap target */
    min-width: 48px;
    min-height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.2s ease;
    padding: 0;
    -webkit-tap-highlight-color: rgba(var(--primary-blue-rgb), 0.2);
    touch-action: manipulation; /* Improve touch response */
}

/* Mobile: Close icon visibility controlled by body.menu-open */
@media (max-width: 768px) {
    .mobile-menu-close {
        /* Hidden by default when menu is closed */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    /* Visible when menu is open */
    body.menu-open .mobile-menu-close {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
    }
}

.mobile-menu-close:active {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(0.95);
}

.mobile-menu-close:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Mobile Menu Content */
.mobile-menu-content {
    flex: 1;
    padding: 0.5rem 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Mobile Navigation Links */
.nav-link-mobile {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 1rem 1.25rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
    letter-spacing: -0.01em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: transparent;
}

.nav-link-mobile:last-of-type {
    border-bottom: none;
}

.nav-link-mobile:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: -2px;
    border-radius: 0;
}

.nav-link-mobile:active {
    background-color: rgba(var(--primary-blue-rgb), 0.05);
    color: var(--primary-blue);
}

.nav-link-mobile.active {
    color: var(--primary-blue);
    background-color: rgba(var(--primary-blue-rgb), 0.08);
    font-weight: 600;
}

.nav-link-mobile.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-blue);
}

/* Nav Link Icon */
.nav-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: currentColor;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.nav-link-mobile.active .nav-link-icon,
.nav-link-mobile:active .nav-link-icon {
    opacity: 1;
}

.nav-link-text {
    flex: 1;
}

/* Mobile Menu Footer - Removed on mobile */
.mobile-menu-footer {
    display: none;
}

/* Button Base Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px; /* Minimum tap target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    /* Core Web Vitals: Optimize animations */
    will-change: transform, box-shadow;
}

/* Desktop: Enhanced hover effects */
@media (min-width: 1025px) {
    .btn-primary:hover {
        transform: translateY(-3px); /* Desktop: More pronounced */
        box-shadow: 0 6px 20px rgba(var(--primary-blue-rgb), 0.3);
    }
    
    .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(var(--primary-blue-rgb), 0.15);
    }
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--light-blue-bg);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-height: 52px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================
   RESPONSIVE BREAKPOINTS - Mobile First
   Mobile: ≤480px (base styles above)
   Tablet: 481px - 1024px
   Desktop: ≥1025px
   ============================================ */

/* ============================================
   TABLET ENHANCEMENTS (min-width: 481px)
   ============================================ */
@media (min-width: 481px) {
    .header-content {
        padding: 1rem 0;
        gap: 1.5rem;
    }

    /* Logo - Responsive sizing handled by .logo-container styles above */
    
    /* Help Center - Tablet: 2 columns */
    .help-center-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .help-popular-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pricing Grid - Tablet: 2-3 columns */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ============================================
   DESKTOP ENHANCEMENTS (min-width: 1025px)
   ============================================ */
@media (min-width: 1025px) {
    /* Header - Desktop Optimizations */
    .header-content {
        padding: 1.5rem 0; /* Desktop: 24px - More vertical space */
        gap: 4rem; /* Desktop: 64px - Better spacing between elements */
    }

    .header {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    /* Logo - Desktop: Larger size */
    .logo-icon svg {
        width: 1.875rem; /* Desktop: 30px - More prominent */
        height: 1.875rem;
    }
    
    .logo-iptv {
        font-size: 1.5rem; /* Desktop: 24px - More visible */
    }
    
    .logo-abonnement {
        font-size: 0.8125rem; /* Desktop: 13px */
    }

    /* Desktop Navigation - Enhanced */
    .nav-desktop {
        display: flex;
        gap: 2.5rem; /* Desktop: 40px - Better spacing */
    }

    .nav-link-desktop {
        font-size: 0.9375rem; /* Desktop: 15px - Optimal readability */
        padding: 0.5rem 0;
        transition: all 0.2s ease;
    }

    .nav-link-desktop:hover {
        transform: translateY(-1px);
    }

    /* Show language selector on desktop */
    .lang-selector-desktop {
        display: flex;
    }

    /* Hide mobile menu toggle */
    .mobile-menu-toggle {
        display: none;
    }

    /* Hide mobile menu overlay */
    .mobile-menu-overlay {
        display: none !important;
    }

    /* Hide mobile navigation */
    .nav-mobile {
        display: none !important;
    }

    /* Sections - Desktop: More padding */
    section {
        padding: 6rem 0; /* Desktop: 96px - Generous spacing */
    }

    .section-header {
        margin-bottom: 5rem; /* Desktop: 80px - More space */
    }

    .section-title {
        font-size: 3rem; /* Desktop: 48px - Larger, more impactful */
        line-height: 1.05; /* Apple tight line-height */
        letter-spacing: -0.022em; /* Apple standard */
        font-weight: 600; /* Apple semibold */
        margin-bottom: 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    }

    .section-subtitle {
        font-size: 1.25rem; /* Desktop: 20px - Better readability */
        max-width: 50rem; /* 800px - Optimal reading width */
        line-height: 1.47059; /* Apple standard */
        letter-spacing: -0.022em;
        font-weight: 400;
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    }

    /* Help Center - Desktop: 3 columns */
    .help-center-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem; /* Desktop: 40px - More space between cards */
    }

    .help-popular-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }

    /* Pricing Grid - Desktop: Optimized for 5 cards */
    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        padding: 1.75rem 1rem; /* Desktop: Reduced for single line layout */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pricing-card:hover {
        transform: translateY(-8px); /* Desktop: More pronounced hover effect */
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }

    /* Why Choose Us / Trust Grid - Desktop: 4 columns */
    .why-choose-us-grid,
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem; /* Desktop: 40px */
    }

    /* Steps Grid - Desktop: Better spacing */
    .steps-grid {
        gap: 3rem; /* Desktop: 48px - More space between steps */
    }

    /* Social Proof - Desktop: 2 columns */
    .reviews-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem; /* Desktop: 32px */
        max-width: 75rem; /* 1200px - Optimal width */
    }

    .review-card {
        padding: 2rem; /* Desktop: 32px - More comfortable */
    }

    /* FAQ - Desktop: Better spacing */
    .faq-list {
        max-width: 56.25rem; /* 900px - Optimal reading width */
    }

    .faq-item {
        margin-bottom: 1.5rem; /* Desktop: 24px */
    }

    .faq-question {
        padding: 1.75rem 2rem; /* Desktop: 28px vertical, 32px horizontal */
        font-size: 1.125rem; /* Desktop: 18px */
    }

    /* Contact Section - Desktop: Better layout */
    .contact-content {
        max-width: 43.75rem; /* 700px */
    }

    .contact-whatsapp {
        padding: 3.5rem 2.5rem; /* Desktop: 56px vertical, 40px horizontal */
        max-width: 40rem; /* Desktop: 640px - Reduced width for better readability */
    }

    /* Footer - Desktop: Better spacing */
    .footer-content {
        gap: 3rem; /* Desktop: 48px */
    }
}

/* Large Desktop Screens (1440px+) - Additional Optimizations */
@media (min-width: 1440px) {
    .header-content {
        gap: 5rem; /* Large desktop: 80px - Even more space */
    }

    .section-title {
        font-size: 3.5rem; /* Large desktop: 56px - Very impactful */
        line-height: 1.05;
        letter-spacing: -0.022em;
    }

    .pricing-grid {
        gap: 2rem; /* Large desktop: 32px - More space for 5 cards */
    }

    .hero-title {
        font-size: 3.5rem; /* Large desktop: 56px */
    }
}

/* Extra Large Screens (1920px+) - Maximum Optimizations */
@media (min-width: 1920px) {
    .section-title {
        font-size: 4rem; /* Extra large: 64px - Maximum impact */
        line-height: 1.05;
        letter-spacing: -0.022em;
    }

    .hero-title {
        font-size: 4rem; /* Extra large: 64px */
    }

    .pricing-grid {
        gap: 2.5rem; /* Extra large: 40px - Maximum spacing */
    }
}

    /* Hide mobile menu overlay */
    .mobile-menu-overlay {
        display: none !important;
    }

    /* Hide mobile navigation */
    .nav-mobile {
        display: none !important;
    }
        background: none;
        font-weight: 600;
    }

    .nav.mobile-open {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    /* Pricing Section - Tablet Enhancements */
    .subscriptions {
        padding: 4rem 0;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .pricing-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .pricing-card-featured:hover {
        box-shadow: 0 8px 28px rgba(var(--primary-blue-rgb), 0.2);
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 1rem;
    }

    /* Social Proof - Tablet Enhancements */
    .social-proof {
        padding: 3rem 0 4rem;
    }

    .social-proof-title {
        font-size: 2rem;
    }

    .social-proof-subtitle {
        font-size: 1.0625rem;
    }

    .reviews-list {
        gap: 1.25rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 1rem;
    }
}

/* ============================================
   DESKTOP ENHANCEMENTS (min-width: 1024px)
   ============================================ */
@media (min-width: 1024px) {
    /* Hero Section - Desktop Enhancements (background via .hero-bg-img) */
    .hero {
        padding: 5rem 0 6rem;
        background-color: #2d1f14;
    }

    .hero::before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
        pointer-events: none;
    }

    .hero-content {
        max-width: 650px;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .badge-dot {
        width: 8px;
        height: 8px;
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.7;
            transform: scale(1.1);
        }
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.15;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.47059;
    }

    .btn-hero-cta {
        width: auto;
        min-width: 240px;
        padding: 1.125rem 2.5rem;
        font-size: 1.0625rem;
    }

    /* Show desktop visual */
    .hero-visual-desktop {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 45%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .streaming-visual {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .visual-wave {
        position: absolute;
        border-radius: 50%;
        border: 2px solid rgba(var(--primary-blue-rgb), 0.1);
        animation: wave 8s ease-in-out infinite;
    }

    .wave-1 {
        width: 200px;
        height: 200px;
        top: 20%;
        right: 10%;
        animation-delay: 0s;
    }

    .wave-2 {
        width: 150px;
        height: 150px;
        top: 50%;
        right: 20%;
        animation-delay: 2s;
    }

    .wave-3 {
        width: 100px;
        height: 100px;
        top: 70%;
        right: 30%;
        animation-delay: 4s;
    }

    .visual-circle {
        position: absolute;
        border-radius: 50%;
        background: rgba(var(--primary-blue-rgb), 0.08);
        animation: float 6s ease-in-out infinite;
    }

    .circle-1 {
        width: 60px;
        height: 60px;
        top: 30%;
        right: 15%;
        animation-delay: 0s;
    }

    .circle-2 {
        width: 40px;
        height: 40px;
        top: 60%;
        right: 25%;
        animation-delay: 2s;
    }

    .circle-3 {
        width: 30px;
        height: 30px;
        top: 80%;
        right: 35%;
        animation-delay: 4s;
    }

    @keyframes wave {
        0%, 100% {
            transform: scale(1);
            opacity: 0.3;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.6;
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0) translateX(0);
        }
        33% {
            transform: translateY(-20px) translateX(10px);
        }
        66% {
            transform: translateY(10px) translateX(-10px);
        }
    }

    /* Hide compact devices on desktop, show full devices section if needed */
    .hero-devices-compact {
        display: none;
    }
}

.header-content {
        padding: 1.25rem 0;
        gap: 3rem;
    }

    /* Logo - Responsive sizing handled by .logo-container styles above */

    .nav {
        gap: 2.5rem;
        flex: 1;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.95rem;
        letter-spacing: -0.01em;
    }

    /* Pricing Section - Desktop Enhancements */
    .subscriptions {
        padding: 5rem 0;
    }

    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
        margin-top: 3rem;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-duration {
        font-size: 1.0625rem;
    }

    .btn-pricing-cta {
        font-size: 0.875rem; /* Desktop: 14px - Reduced */
        padding: 1.125rem 1.5rem;
    }

    .btn-pricing-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(var(--primary-blue-rgb), 0.35);
    }

    .btn-pricing-cta-featured:hover {
        box-shadow: 0 6px 24px rgba(var(--primary-blue-rgb), 0.4);
    }
}

/* ============================================
   FAQ CONVERSION SECTION - MOBILE-FIRST
   ============================================ */

/* FAQ Conversion Section - Mobile First */
.faq-conversion {
    background-color: var(--white);
    padding: 2rem 0 3rem; /* Minimal padding, no gap from pricing */
    margin-top: 0; /* No gap between pricing and FAQ */
}

.faq-conversion-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-conversion-title {
    font-size: 1.5rem; /* Mobile: Compact but readable */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.faq-conversion-subtitle {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

/* FAQ List - Mobile First */
.faq-conversion-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Tight spacing for mobile */
    margin-top: 1.5rem;
}

/* FAQ Item - Mobile First */
.faq-conversion-item {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.faq-conversion-item:active {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* FAQ Question Button - Large Tap Target */
.faq-conversion-question {
    width: 100%;
    padding: 1rem 1.25rem;
    min-height: 48px; /* Minimum tap target */
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: rgba(var(--primary-blue-rgb), 0.1);
}

.faq-conversion-question:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: -2px;
    border-radius: 12px;
}

.faq-conversion-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-conversion-question[aria-expanded="true"] {
    background-color: var(--light-blue-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-conversion-question-text {
    flex: 1;
    min-width: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* FAQ Icon - Plus/Minus */
.faq-conversion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    border-radius: 50%;
    background-color: rgba(var(--primary-blue-rgb), 0.08);
}

.faq-conversion-question[aria-expanded="true"] .faq-conversion-icon {
    transform: rotate(45deg);
    background-color: var(--primary-blue);
    color: var(--white);
}

/* FAQ Answer - Smooth Animation */
.faq-conversion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.25rem;
}

.faq-conversion-question[aria-expanded="true"] + .faq-conversion-answer {
    max-height: 500px;
    padding: 1rem 1.25rem 1.5rem;
}

.faq-conversion-answer p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.47059;
    margin: 0;
}

/* ============================================
   SOCIAL PROOF SECTION - MOBILE-FIRST
   ============================================ */

/* Social Proof Section - Mobile First */
.social-proof {
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 3rem 0 4rem;
    margin-top: 0;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.social-proof-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.social-proof-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.47059;
}

/* Modern Reviews Grid */
.reviews-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 100%;
    align-items: stretch; /* Ensure all cards have same height */
}

/* Modern Review Card */
.review-card-modern {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%; /* Ensure cards fill grid cell */
    min-height: 200px; /* Minimum height for consistency */
}

.review-card-modern:hover {
    box-shadow: 0 8px 24px rgba(var(--primary-blue-rgb), 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: rgba(var(--primary-blue-rgb), 0.15);
}

/* Review Header Modern */
.review-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.review-author-modern {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex: 1;
}

.review-avatar-modern {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(var(--primary-blue-rgb), 0.25);
}

.review-info-modern {
    flex: 1;
    min-width: 0;
}

.review-name-modern {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.review-location-modern {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Review Stars Modern */
.review-stars-modern {
    display: flex;
    gap: 0.125rem;
    align-items: center;
    flex-shrink: 0;
}

.star-modern {
    font-size: 1.125rem;
    color: var(--accent-gold);
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(var(--accent-gold-rgb), 0.3));
}

/* Review Text Modern */
.review-text-modern {
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex: 1; /* Allow text to expand and fill available space */
    display: block;
}

/* WhatsApp Reviews Carousel */
.whatsapp-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.whatsapp-carousel-viewport {
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-height: 420px;
}

.whatsapp-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.whatsapp-carousel-track {
    display: flex;
    gap: 1.25rem;
    padding: 0.5rem 0.5rem 1rem;
    width: fit-content;
    animation: scroll-whatsapp 20s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

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

.whatsapp-carousel-prev,
.whatsapp-carousel-next,
.whatsapp-carousel-dots {
    display: none;
}

@keyframes scroll-whatsapp {
    0% { transform: translateX(0) translateZ(0); }
    100% { transform: translateX(-50%) translateZ(0); }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-carousel-track {
        animation: none;
    }
    .whatsapp-carousel-viewport {
        overflow-x: auto;
    }
}

.whatsapp-review-card {
    flex: 0 0 260px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 9 / 16;
    min-height: 400px;
    min-width: 225px;
}

.whatsapp-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.whatsapp-review-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1 !important; /* Override global img { opacity: 0 } */
}

/* Carousel Buttons */
.whatsapp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.whatsapp-carousel-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.whatsapp-carousel-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.whatsapp-carousel-btn svg {
    width: 24px;
    height: 24px;
}

.whatsapp-carousel-prev {
    left: -12px;
}

.whatsapp-carousel-next {
    right: -12px;
}

/* Dots */
.whatsapp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.whatsapp-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.whatsapp-carousel-dot:hover {
    background: rgba(0, 0, 0, 0.4);
}

.whatsapp-carousel-dot.is-active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .whatsapp-review-card {
        flex: 0 0 220px;
    }

    .whatsapp-carousel-prev { left: -20px; }
    .whatsapp-carousel-next { right: -20px; }
}

@media (min-width: 1025px) {
    .whatsapp-review-card {
        flex: 0 0 240px;
    }

    .whatsapp-carousel-prev { left: -24px; }
    .whatsapp-carousel-next { right: -24px; }
}

@media (max-width: 600px) {
    .whatsapp-carousel-btn {
        width: 36px;
        height: 36px;
    }

    .whatsapp-carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .whatsapp-carousel-prev { left: 4px; }
    .whatsapp-carousel-next { right: 4px; }

    .whatsapp-review-card {
        flex: 0 0 280px;
    }
}

/* Reviews Stats Modern */
.reviews-stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.05) 0%, rgba(13, 36, 212, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(var(--primary-blue-rgb), 0.1);
}

.stat-item-modern {
    text-align: center;
}

.stat-value-modern {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label-modern {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
    .reviews-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        align-items: stretch; /* Ensure equal height on tablet */
    }

    .review-card-modern {
        padding: 2rem;
        min-height: 220px; /* Slightly taller on tablet */
    }

    .reviews-stats-modern {
        gap: 2rem;
        padding: 2.5rem 2rem;
    }

    .stat-value-modern {
        font-size: 2rem;
    }

    .stat-label-modern {
        font-size: 0.9375rem;
    }
}

/* Desktop: 3 columns */
@media (min-width: 1025px) {
    .social-proof {
        padding: 4rem 0 5rem;
    }

    .social-proof-title {
        font-size: 2.5rem;
    }

    .social-proof-subtitle {
        font-size: 1.125rem;
    }

    .reviews-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        align-items: stretch; /* Ensure equal height on desktop */
    }

    .review-card-modern {
        padding: 2.25rem;
        min-height: 240px; /* Taller on desktop for better balance */
    }

    .review-avatar-modern {
        width: 52px;
        height: 52px;
        font-size: 1.125rem;
    }

    .review-name-modern {
        font-size: 1.0625rem;
    }

    .review-text-modern {
        font-size: 1rem;
    }
}

/* Reviews List - Mobile First: Vertical Stack */
.reviews-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem; /* Better spacing for mobile */
    margin-top: 2rem;
    max-width: 100%;
}

/* Review Card - Mobile First */
.review-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: rgba(var(--primary-blue-rgb), 0.15);
}

.review-card:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Review Header */
.review-header {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
}

/* Review Avatar - Generic Icon */
.review-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.review-avatar svg {
    width: 24px;
    height: 24px;
}

/* Review Info */
.review-info {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

/* Star Rating */
.review-stars {
    display: flex;
    gap: 0.125rem;
    align-items: center;
}

.star {
    font-size: 0.875rem;
    color: var(--gray-border);
    line-height: 1;
}

.star-filled {
    color: var(--accent-gold); /* Gold/yellow for filled stars */
}

/* Review Text */
.review-text {
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.47059;
    margin: 0;
}

/* ============================================
   LARGE DESKTOP (min-width: 1280px)
   ============================================ */
@media (min-width: 1280px) {
    /* Logo - Responsive sizing handled by .logo-container styles above */

    /* Pricing Section - Large Desktop */
    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

    /* FAQ Conversion - Large Desktop */
    .faq-conversion {
        padding: 4rem 0 5rem;
    }

    .faq-conversion-title {
        font-size: 2.25rem;
    }

    .faq-conversion-list {
        max-width: 900px;
    }

    /* Social Proof - Large Desktop */
    .social-proof {
        padding: 4rem 0 5rem;
    }

    .social-proof-title {
        font-size: 2.25rem;
    }

    .reviews-list {
        max-width: 900px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ============================================
   HERO SECTION - MODERN PREMIUM REDESIGN
   ============================================ */

/* ============================================
   MOBILE-FIRST OPTIMIZATION
   ============================================ */

/* ============================================
   HERO SECTION - Clean & Modern (Mobile-First)
   ============================================ */

.btn-secondary-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary-outline:hover {
    background-color: var(--light-blue-bg);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-icon {
    width: 20px;
    height: 20px;
    background-color: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Hero Devices Compatibility - Mobile First */
.hero-devices {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
}

.hero-devices-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.devices-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 0 auto;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.device-item:hover {
    transform: translateY(-2px);
}

.device-icon {
    width: 32px;
    height: 32px;
    color: var(--text-dark);
    opacity: 0.75;
    transition: var(--transition);
}

.device-item:hover .device-icon {
    opacity: 1;
    color: var(--primary-blue);
}

.device-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streaming-visual {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
}

.visual-wave {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    opacity: 0.15;
    animation: waveExpand 3s ease-in-out infinite;
}

.wave-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.wave-2 {
    width: 300px;
    height: 300px;
    animation-delay: 0.5s;
}

.wave-3 {
    width: 400px;
    height: 400px;
    animation-delay: 1s;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    opacity: 0.2;
    animation: float 4s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes waveExpand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.05;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

.hero .btn-large {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 4px 15px rgba(var(--primary-blue-rgb), 0.4);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.47059;
}

/* Trust Section - Removed (replaced by why-choose-us) */

/* ============================================
   FEATURES SECTION - 6 Benefit Cards
   ============================================ */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--light-blue-bg) 0%, var(--gray-lighter) 100%);
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.features-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid rgba(var(--primary-blue-rgb), 0.1);
    box-shadow: 0 2px 12px rgba(var(--primary-blue-rgb), 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(var(--primary-blue-rgb), 0.15);
    transform: translateY(-2px);
    border-color: rgba(var(--primary-blue-rgb), 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(var(--primary-blue-rgb), 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1025px) {
    .features-section {
        padding: 5rem 0;
    }

    .features-title {
        font-size: 2.25rem;
    }

    .features-subtitle {
        font-size: 1.125rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
    }

    .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-title {
        font-size: 1.1875rem;
    }

    .feature-text {
        font-size: 0.9375rem;
    }
}

/* ============================================
   HOW IT WORKS SECTION - Mobile-First
   ============================================ */
.how-it-works {
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 4rem 0;
    position: relative;
}

/* How It Works Header - Centered, Bold, Large */
.how-it-works-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.how-it-works-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.how-it-works-subtitle {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-light);
    margin: 0;
    line-height: 1.47059;
}

/* Desktop: Larger header */
@media (min-width: 1025px) {
    .how-it-works-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1.25rem;
    }
    
    .how-it-works-header {
        margin-bottom: 4.5rem;
    }
}

/* Steps Grid - Modern Layout */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Step Card - Premium Modern Design */
.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--primary-blue-rgb), 0.15);
    box-shadow: 0 12px 32px rgba(var(--primary-blue-rgb), 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-card:hover::before {
    opacity: 1;
}

/* Step Number Wrapper */
.step-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
    width: 100%;
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(var(--primary-blue-rgb), 0.35), 0 2px 8px rgba(var(--primary-blue-rgb), 0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(var(--primary-blue-rgb), 0.4), 0 3px 12px rgba(var(--primary-blue-rgb), 0.25);
}

/* Step Connector - Line between steps */
.step-connector {
    width: 3px;
    height: 3rem;
    background: linear-gradient(180deg, var(--primary-blue) 0%, rgba(var(--primary-blue-rgb), 0.3) 50%, rgba(var(--primary-blue-rgb), 0.1) 100%);
    margin-top: 0.75rem;
    position: relative;
    border-radius: 2px;
}

/* Step Content */
.step-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

/* Step Icon */
.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-blue-bg) 0%, rgba(238, 240, 255, 0.8) 100%);
    border-radius: 18px;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--primary-blue-rgb), 0.1);
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.1) 0%, var(--light-blue-bg) 100%);
    transform: scale(1.05);
    border-color: rgba(var(--primary-blue-rgb), 0.2);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

/* Step Title */
.step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Step Text */
.step-text {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    max-width: 300px;
}

/* Tablet: 2 columns */
@media (min-width: 481px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .step-connector {
        display: none; /* Hide connector on tablet/desktop */
    }
    
    .step-card {
        padding: 2.5rem 2rem;
    }
}

/* Desktop: 3 columns horizontal */
@media (min-width: 1025px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1100px;
    }
    
    .step-card {
        padding: 3rem 2rem;
    }
    
    .step-number {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }
    
    .step-icon {
        width: 64px;
        height: 64px;
    }
    
    .step-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .step-title {
        font-size: 1.375rem;
    }
    
    .step-text {
        font-size: 1rem;
        max-width: 320px;
    }
}

/* ============================================
   PRICING SECTION - PREMIUM REDESIGN
   Netflix / Apple / Stripe Style
   ============================================ */

.subscriptions {
    background-color: var(--white);
    padding: 4rem 0;
    position: relative;
}

/* Pricing Grid - Premium Horizontal Layout */
/* ============================================
   PRICING PREMIUM - Redesign from scratch
   ============================================ */

.pricing-premium {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(var(--primary-blue-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Pricing tier toggle (Standard / Premium) */
.pricing-tier-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 4px;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-tier-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 46px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-tier-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-tier-btn[aria-pressed="true"] {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green-light) 100%);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(var(--primary-blue-rgb), 0.4);
}

.pricing-tier-btn:focus {
    outline: none;
}

.pricing-tier-btn:focus-visible {
    outline: 2px solid rgba(var(--primary-blue-rgb), 0.6);
    outline-offset: 2px;
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Quality benefit - show one, hide the other based on tier */
.pricing-grid-premium[data-tier="standard"] .pricing-quality-standard {
    display: inline;
}
.pricing-grid-premium[data-tier="standard"] .pricing-quality-premium {
    display: none !important;
}
.pricing-grid-premium[data-tier="premium"] .pricing-quality-standard {
    display: none !important;
}
.pricing-grid-premium[data-tier="premium"] .pricing-quality-premium {
    display: inline !important;
}

/* Plans : afficher Nom+ quand tier Premium (+ en exposant, vert) */
.pricing-label-plus {
    display: inline-block;
    vertical-align: super;
    font-size: 0.6em;
    line-height: 1;
    color: var(--accent-green);
    font-weight: 700;
}

.pricing-grid-premium[data-tier="standard"] .pricing-label-plan3 .pricing-label-standard,
.pricing-grid-premium[data-tier="standard"] .pricing-label-plan4 .pricing-label-standard,
.pricing-grid-premium[data-tier="standard"] .pricing-label-plan5 .pricing-label-standard {
    display: inline;
}
.pricing-grid-premium[data-tier="standard"] .pricing-label-plan3 .pricing-label-premium,
.pricing-grid-premium[data-tier="standard"] .pricing-label-plan4 .pricing-label-premium,
.pricing-grid-premium[data-tier="standard"] .pricing-label-plan5 .pricing-label-premium {
    display: none !important;
}
.pricing-grid-premium[data-tier="premium"] .pricing-label-plan3 .pricing-label-standard,
.pricing-grid-premium[data-tier="premium"] .pricing-label-plan4 .pricing-label-standard,
.pricing-grid-premium[data-tier="premium"] .pricing-label-plan5 .pricing-label-standard {
    display: none !important;
}
.pricing-grid-premium[data-tier="premium"] .pricing-label-plan3 .pricing-label-premium,
.pricing-grid-premium[data-tier="premium"] .pricing-label-plan4 .pricing-label-premium,
.pricing-grid-premium[data-tier="premium"] .pricing-label-plan5 .pricing-label-premium {
    display: inline !important;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

/* Desktop: Larger header */
@media (min-width: 1025px) {
    .pricing-title {
        font-size: 3.5rem;
    }
    .pricing-subtitle {
        font-size: 1.25rem;
    }
}

/* Pricing Grid - 3 columns */
.pricing-grid-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
    .pricing-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Desktop: 3 columns */
@media (min-width: 1025px) {
    .pricing-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Pricing Card Premium */
.pricing-card-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* Clickable pricing cards */
.pricing-card-clickable {
    cursor: pointer;
    user-select: none;
}

.pricing-card-clickable:active {
    transform: translateY(-4px);
}

/* Recommended Badge */
.pricing-recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green-light) 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(var(--primary-blue-rgb), 0.4);
    z-index: 10;
}

/* Recommended Card */
.pricing-card-recommended {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(var(--primary-blue-rgb), 0.5);
    transform: scale(1.05);
    box-shadow: 
        0 12px 40px rgba(var(--primary-blue-rgb), 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pricing-card-recommended:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(var(--primary-blue-rgb), 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Card Content */
.pricing-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Pricing Label */
.pricing-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Price Block - Price First */
.pricing-price-block {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
    display: block;
}

.pricing-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-left: 0.25rem;
}

/* Desktop: Larger price */
@media (min-width: 1025px) {
    .pricing-amount {
        font-size: 4rem;
    }
    .pricing-period {
        font-size: 1.125rem;
    }
}

/* Savings Badge */
.pricing-savings-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.15);
    color: var(--accent-green-light);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin: 0 auto 2rem;
    text-align: center;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

/* Benefits - Simple List */
.pricing-benefits {
    flex-grow: 1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-benefit {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.47059;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-benefit::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green-light);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Mobile: Fix icon/text overlap for pricing-benefit */
@media (max-width: 768px) {
    .pricing-benefit {
        padding-left: 1.75rem !important; /* Space for icon */
        display: block;
        position: relative;
    }
    
    .pricing-benefit::before {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 1.25rem !important; /* Fixed width to prevent overlap */
        text-align: left;
        font-size: 1rem !important;
        line-height: 1.6 !important;
        display: block;
    }
}

/* Desktop: Larger benefits */
@media (min-width: 1025px) {
    .pricing-benefit {
        font-size: 1.0625rem;
    }
}

/* CTA Button */
.pricing-cta {
    width: 100%;
    padding: 1.125rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.pricing-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Primary CTA (Recommended) */
.pricing-cta-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-color: rgba(var(--primary-blue-rgb), 0.5);
    box-shadow: 0 4px 16px rgba(var(--primary-blue-rgb), 0.3);
}

.pricing-cta-primary:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue) 100%);
    box-shadow: 0 8px 24px rgba(var(--primary-blue-rgb), 0.4);
}

/* Mobile: Adjust spacing */
@media (max-width: 767px) {
    .pricing-premium {
        padding: 3rem 0;
    }
    .pricing-card-premium {
        padding: 2rem 1.5rem;
    }
    .pricing-amount {
        font-size: 3rem;
    }
}

/* Pricing Card - Premium Design */
.pricing-card {
    background-color: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    scroll-snap-align: start;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(var(--primary-blue-rgb), 0.15);
}

/* Featured Card - 12 Months (BIGGER, BLUE BACKGROUND, GLOW) */
.pricing-card-featured {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    border: 3px solid var(--primary-blue);
    box-shadow: 
        0 8px 32px rgba(var(--primary-blue-rgb), 0.2),
        0 0 0 1px rgba(var(--primary-blue-rgb), 0.1),
        0 0 60px rgba(var(--primary-blue-rgb), 0.15);
    transform: scale(1.05);
    position: relative;
    z-index: 2;
    animation: featuredCardGlow 3s ease-in-out infinite;
}

@media (min-width: 1025px) {
    .pricing-card-featured {
        transform: scale(1.08);
        padding: 2.5rem 1.75rem;
    }
}

@keyframes featuredCardGlow {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(var(--primary-blue-rgb), 0.2),
            0 0 0 1px rgba(var(--primary-blue-rgb), 0.1),
            0 0 60px rgba(var(--primary-blue-rgb), 0.15);
    }
    50% {
        box-shadow: 
            0 12px 40px rgba(var(--primary-blue-rgb), 0.3),
            0 0 0 2px rgba(var(--primary-blue-rgb), 0.2),
            0 0 80px rgba(var(--primary-blue-rgb), 0.25);
    }
}

.pricing-card-featured:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 
        0 16px 48px rgba(var(--primary-blue-rgb), 0.35),
        0 0 0 3px rgba(var(--primary-blue-rgb), 0.25),
        0 0 100px rgba(var(--primary-blue-rgb), 0.3);
}

@media (min-width: 1025px) {
    .pricing-card-featured:hover {
        transform: translateY(-10px) scale(1.1);
    }
}

/* Pricing Bonus Text */
.pricing-bonus {
    color: var(--accent-green);
    font-size: 0.875rem;
    font-weight: 600;
    display: block;
    margin-top: 0.25rem;
}

/* Best Value Badge - Floating Badge */
.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 50%, var(--accent-green-light) 100%);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 
        0 4px 16px rgba(var(--primary-blue-rgb), 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(74, 222, 128, 0.3);
    z-index: 10;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: badgeGlow 3s ease-in-out infinite;
}

/* Shimmer effect on badge */
.pricing-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.pricing-badge:hover::before {
    left: 100%;
}

.pricing-badge:hover {
    transform: translateX(-50%) translateY(-2px) scale(1.05);
    box-shadow: 
        0 6px 24px rgba(var(--primary-blue-rgb), 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(74, 222, 128, 0.5);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue) 50%, var(--accent-green-light) 100%);
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 
            0 4px 16px rgba(var(--primary-blue-rgb), 0.4),
            0 0 0 2px rgba(255, 255, 255, 0.1),
            0 0 20px rgba(74, 222, 128, 0.3);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(var(--primary-blue-rgb), 0.5),
            0 0 0 2px rgba(255, 255, 255, 0.15),
            0 0 30px rgba(74, 222, 128, 0.5);
    }
}

/* Tablet: Slightly larger */
@media (min-width: 481px) {
    .pricing-badge {
        font-size: 0.8125rem; /* Tablet: 13px */
        padding: 0.5625rem 1.5rem; /* 9px vertical, 24px horizontal */
        top: -1rem; /* -16px */
    }
}

/* Desktop: Maximum size */
@media (min-width: 1025px) {
    .pricing-badge {
        font-size: 0.875rem; /* Desktop: 14px */
        padding: 0.625rem 1.75rem; /* 10px vertical, 28px horizontal */
        top: -1.125rem; /* -18px */
        letter-spacing: 0.03em;
    }
}

/* Plan Duration - Small Uppercase */
.pricing-duration {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Desktop: Slightly larger */
@media (min-width: 1025px) {
    .pricing-duration {
        font-size: 0.75rem;
        margin-bottom: 0.875rem;
    }
}

/* Price - BIG and Prominent */
.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (min-width: 1025px) {
    .price-amount {
        font-size: 2.25rem; /* Reduced for single line layout */
    }
}

/* Savings - Green */
.pricing-savings {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.8125rem;
    text-align: center;
    margin-bottom: 1rem;
}

/* Desktop: Slightly larger */
@media (min-width: 1025px) {
    .pricing-savings {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
}

/* Features List - 5-6 bullets max */
.pricing-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    flex-grow: 1;
}

/* Desktop: Reduced margin */
@media (min-width: 1025px) {
    .pricing-features {
        margin-bottom: 1.75rem;
    }
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.8125rem;
    line-height: 1.47059;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Desktop: Slightly larger */
@media (min-width: 1025px) {
    .pricing-features li {
        font-size: 0.875rem;
        padding: 0.625rem 0;
        min-height: 1.75rem;
        line-height: 1.7;
    }
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.47059;
    flex-shrink: 0;
}

/* Desktop: Adjust checkmark position */
@media (min-width: 1025px) {
    .pricing-features li::before {
        top: 0.625rem;
        line-height: 1.7;
    }
}

/* Mobile: Fix icon/text overlap using flexbox */
@media (max-width: 768px) {
    .pricing-features li {
        padding-left: 1.75rem !important; /* Space for icon */
        padding-right: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        min-height: auto;
        position: relative;
        display: block; /* Keep as block for text wrapping */
    }
    
    .pricing-features li::before {
        position: absolute !important;
        left: 0 !important;
        top: 0.5rem !important;
        width: 1.25rem !important; /* Fixed width to prevent overlap */
        text-align: left;
        flex-shrink: 0 !important;
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
        display: block;
    }
}

/* CTA Button - Blue Gradient, Big, Rounded */
.btn-pricing-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    min-height: 52px;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(var(--primary-blue-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.btn-pricing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-pricing-cta:hover::before {
    left: 100%;
}

.btn-pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary-blue-rgb), 0.4);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue) 100%);
}

.btn-pricing-cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(var(--primary-blue-rgb), 0.3);
}

/* Featured Button */
.btn-pricing-featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    box-shadow: 0 6px 20px rgba(var(--primary-blue-rgb), 0.4);
}

.btn-pricing-featured:hover {
    box-shadow: 0 10px 32px rgba(var(--primary-blue-rgb), 0.5);
}

.star-icon {
    font-size: 1.125rem;
    display: inline-block;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Trust Bar - Under Pricing */
.pricing-trust-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(var(--primary-blue-rgb), 0.02);
    border-radius: 16px;
    border: 1px solid rgba(var(--primary-blue-rgb), 0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-icon {
    font-size: 1.25rem;
}

.trust-text {
    color: var(--text-dark);
}

@media (min-width: 481px) {
    .pricing-trust-bar {
        flex-direction: row;
        gap: 2rem;
        padding: 1.75rem 2rem;
    }
    
    .trust-item {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .pricing-trust-bar {
        gap: 1rem;
        padding: 0.5rem 1rem;
        margin-top: 1.5rem;
    }
    .trust-item {
        font-size: 0.8125rem;
    }
    .trust-icon {
        font-size: 1rem;
    }
}

@media (min-width: 1025px) {
    .pricing-trust-bar {
        gap: 1.25rem;
        padding: 0.625rem 1.25rem;
        margin-top: 1.75rem;
    }
    .trust-item {
        font-size: 0.8125rem;
    }
}

/* Benefits Section */
.benefits {
    background-color: var(--white);
    padding: 6rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* Compatibility Section */
.compatibility {
    background-color: var(--gray-light);
    padding: 6rem 0;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compatibility-item {
    background-color: var(--light-blue-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.compatibility-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.compatibility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.compatibility-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.compatibility-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* Anchor for #centre-d-aide (same section as #blog) */
.anchor-offset {
    display: block;
    height: 0;
    overflow: hidden;
}

/* Help Center Section - Mobile First */
.help-center {
    background-color: var(--white);
    padding: 3rem 0; /* Mobile: 48px */
    width: 100%;
    box-sizing: border-box;
}

/* Tablet: Increase padding */
@media (min-width: 481px) {
    .help-center {
        padding: 4rem 0; /* Tablet: 64px */
    }
}

/* Desktop: Maximum padding */
@media (min-width: 1025px) {
    .help-center {
        padding: 5rem 0 6rem; /* Desktop: 80px top, 96px bottom */
    }
}

.help-center-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: Single column */
    gap: 1.5rem; /* Mobile: 24px */
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.help-category-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.help-category-card:hover {
    border-color: rgba(var(--primary-blue-rgb), 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.help-category-card-featured {
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.05) 0%, rgba(13, 36, 212, 0.02) 100%);
    border-color: rgba(var(--primary-blue-rgb), 0.15);
}

.help-category-icon {
    width: 48px;
    height: 48px;
    background: var(--light-blue-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.help-category-icon svg {
    width: 24px;
    height: 24px;
}

.help-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.help-category-description {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.47059;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.help-category-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-category-links li {
    margin: 0;
}

.help-category-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    padding: 0.375rem 0;
}

.help-category-links a:hover {
    color: var(--primary-blue-dark);
    padding-left: 0.5rem;
}

.help-category-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: var(--transition);
    transform: translateX(-10px);
}

.help-category-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.help-category-cta {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.help-category-cta .btn {
    width: 100%;
    justify-content: center;
}

.help-category-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

/* Popular Articles Section */
.help-popular-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.help-popular-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.help-popular-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
}

.help-popular-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.help-popular-item:hover {
    background: var(--white);
    border-color: rgba(var(--primary-blue-rgb), 0.3);
    box-shadow: 0 4px 16px rgba(var(--primary-blue-rgb), 0.15);
    transform: translateY(-2px);
}

.help-popular-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue-bg);
    border-radius: 12px;
    color: var(--primary-blue);
}

.help-popular-icon svg {
    width: 24px;
    height: 24px;
}

.help-popular-content {
    flex: 1;
    min-width: 0;
}

.help-popular-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
}

.help-popular-item-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.47059;
}

.help-popular-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.help-popular-arrow svg {
    width: 20px;
    height: 20px;
}

.help-popular-item:hover .help-popular-arrow {
    color: var(--primary-blue);
    transform: translateX(4px);
}

/* FAQ Section - Mobile First */
.faq {
    background-color: var(--gray-light);
    padding: 3rem 0; /* Mobile: 48px */
    width: 100%;
    box-sizing: border-box;
}

.faq .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq .section-header {
    text-align: center;
}

.faq .faq-list {
    width: 100%;
}

/* Tablet: Increase padding */
@media (min-width: 481px) {
    .faq {
        padding: 4rem 0; /* Tablet: 64px */
    }
}

/* Desktop: Maximum padding */
@media (min-width: 1025px) {
    .faq {
        padding: 5rem 0 6rem; /* Desktop: 80px top, 96px bottom */
    }
}

.faq-list {
    max-width: 100%; /* Mobile: Full width */
    width: 100%;
    margin: 2rem auto 0; /* Mobile: 32px top margin */
    box-sizing: border-box;
}

/* Tablet: Constrain width */
@media (min-width: 481px) {
    .faq-list {
        max-width: 50rem; /* 800px */
        margin-top: 3rem; /* 48px */
    }
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem; /* Mobile: Slightly reduced padding */
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1rem; /* Mobile: 16px - Readable */
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    min-height: 2.75rem; /* 44px - Touch target */
    box-sizing: border-box;
    /* Core Web Vitals: Prevent layout shift */
    line-height: 1.47059;
}

.faq-question > span:first-child {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.faq-question .faq-icon {
    flex-shrink: 0;
}

/* Tablet: Larger text and padding */
@media (min-width: 481px) {
    .faq-question {
        padding: 1.25rem 1.5rem; /* Tablet: 20px vertical, 24px horizontal */
        font-size: 1.0625rem; /* 17px */
    }
}

/* Desktop: Maximum padding and text */
@media (min-width: 1025px) {
    .faq-question {
        padding: 1.5rem; /* Desktop: 24px */
        font-size: 1.1rem; /* Desktop: 17.6px */
    }
}

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

.faq-question[aria-expanded="true"] {
    background-color: var(--light-blue-bg);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 300;
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 1000px; /* Large enough for any content */
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    padding: 0;
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* Mobile: Fix FAQ accordion behavior */
@media (max-width: 768px) {
    .faq-item {
        overflow: hidden !important; /* Ensure no content leaks */
    }
    
    .faq-answer {
        max-height: 0 !important;
        padding: 0 1.25rem !important; /* Match question padding */
        overflow: hidden !important;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-answer.active {
        max-height: 2000px !important; /* Large enough for mobile content */
        padding: 0 1.25rem 1.25rem !important; /* Bottom padding when open */
    }
    
    .faq-answer p {
        padding: 0 !important;
        margin: 0;
        padding-top: 0.5rem; /* Small top spacing when open */
    }
    
    .faq-question {
        padding: 1rem 1rem !important; /* Consistent padding */
        gap: 0.75rem;
    }
    
    .faq-question > span:first-child {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        flex: 1;
        min-width: 0;
        font-size: 0.9375rem;
    }
    
    .faq-icon {
        flex-shrink: 0 !important; /* Prevent icon from being squeezed */
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .faq-question[aria-expanded="true"] .faq-icon {
        transform: rotate(45deg) !important; /* Ensure icon rotates */
    }
    
    .faq-question[aria-expanded="false"] .faq-icon {
        transform: rotate(0deg) !important; /* Reset when closed */
    }
}

/* Blog Section */
.blog-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-card-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--indigo));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-link:hover {
    color: var(--primary-blue-dark);
    gap: 0.75rem;
}

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

/* ============================================
   BLOG ARTICLES - Tables scroll + FAQ accordion
   ============================================ */
.table-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
    max-width: 100%;
}

.table-scroll-wrapper .comparison-table {
    min-width: 400px;
    max-width: none;
}

.blog-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-faq-question {
    padding: 1rem 1rem 1rem 2.5rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--text-dark);
    position: relative;
    transition: background 0.2s;
}

.blog-faq-question:hover {
    background: rgba(0, 0, 0, 0.03);
}

.blog-faq-toggle {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-blue);
}

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

.blog-faq-answer p,
.blog-faq-answer ul {
    margin: 0 0 1rem 0;
    padding: 0 1rem 1rem 2.5rem;
}

.blog-faq-answer p:last-child {
    margin-bottom: 0;
}

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

/* ============================================
   CONTACT SECTION - WhatsApp (Mobile First)
   ============================================ */
.contact-section {
    background-color: var(--white);
    padding: 3rem 0; /* Mobile: 48px */
    width: 100%;
    box-sizing: border-box;
}

/* Tablet: Increase padding */
@media (min-width: 481px) {
    .contact-section {
        padding: 4rem 0; /* Tablet: 64px */
    }
}

/* Desktop: Maximum padding */
@media (min-width: 1025px) {
    .contact-section {
        padding: 5rem 0 6rem; /* Desktop: 80px top, 96px bottom */
    }
}

.contact-content {
    max-width: 100%; /* Mobile: Full width */
    width: 100%;
    margin: 2rem auto 0; /* Mobile: 32px top margin */
    box-sizing: border-box;
}

/* Tablet: Constrain width */
@media (min-width: 481px) {
    .contact-content {
        max-width: 37.5rem; /* 600px */
        margin-top: 3rem; /* 48px */
    }
}

.contact-info {
    text-align: center;
    width: 100%;
}

.contact-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(37, 211, 102, 0.1) 100%);
    border: 2px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem; /* Mobile: 32px vertical, 24px horizontal */
    text-align: center;
    width: 100%;
    max-width: 100%; /* Mobile: Full width */
    box-sizing: border-box;
    margin: 0 auto; /* Center the element */
}

/* Tablet: More padding and limited width */
@media (min-width: 481px) {
    .contact-whatsapp {
        padding: 2.5rem 1.75rem; /* Tablet: 40px vertical, 28px horizontal */
        max-width: 35rem; /* Tablet: 560px - Reduced width */
    }
}

/* Desktop: Maximum padding and constrained width */
@media (min-width: 1025px) {
    .contact-whatsapp {
        padding: 3rem 2rem; /* Desktop: 48px vertical, 32px horizontal */
        max-width: 40rem; /* Desktop: 640px - Reduced width for better readability */
    }
}

/* Large Desktop: Slightly wider but still constrained */
@media (min-width: 1440px) {
    .contact-whatsapp {
        max-width: 45rem; /* Large desktop: 720px */
    }
}

.contact-icon {
    width: 4rem; /* 64px */
    height: 4rem; /* 64px */
    margin: 0 auto 1.5rem;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    /* Core Web Vitals: Prevent layout shift */
    flex-shrink: 0;
}

.contact-icon svg {
    width: 2.25rem; /* 36px */
    height: 2.25rem; /* 36px */
}

.contact-info-title {
    font-size: 1.25rem; /* Mobile: 20px - Readable */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Tablet: Larger title */
@media (min-width: 481px) {
    .contact-info-title {
        font-size: 1.5rem; /* Tablet: 24px */
    }
}

/* Desktop: Maximum title size */
@media (min-width: 1025px) {
    .contact-info-title {
        font-size: 1.75rem; /* Desktop: 28px */
    }
}

.contact-info-text {
    font-size: 1rem; /* Mobile: 16px - Minimum readable */
    color: var(--text-medium);
    line-height: 1.47059;
    margin-bottom: 2rem;
    max-width: 100%; /* Mobile: Full width */
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.5rem; /* Small padding on mobile */
}

/* Tablet: Constrain width */
@media (min-width: 481px) {
    .contact-info-text {
        max-width: 31.25rem; /* 500px */
        padding: 0;
    }
}

.contact-whatsapp-btn {
    background-color: var(--whatsapp-green);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem 1.75rem; /* Mobile: Generous padding */
    font-size: 1rem; /* Mobile: 16px */
    font-weight: 600;
    border-radius: 0.75rem; /* 12px */
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 3rem; /* 48px - Above 44px minimum */
    width: 100%; /* Mobile: Full width */
    max-width: 100%;
    box-sizing: border-box;
}

/* Tablet: Auto width */
@media (min-width: 481px) {
    .contact-whatsapp-btn {
        width: auto;
        padding: 1rem 2rem;
        font-size: 1.0625rem; /* Tablet: 17px */
    }
}

/* Desktop: Larger padding */
@media (min-width: 1025px) {
    .contact-whatsapp-btn {
        font-size: 1.1rem; /* Desktop: 17.6px */
    }
}

.contact-whatsapp-btn:hover,
.contact-whatsapp-btn:focus {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-whatsapp-btn:active {
    transform: translateY(0);
}

.contact-whatsapp-btn svg {
    margin-right: 0.5rem;
    width: 1.25rem; /* 20px */
    height: 1.25rem; /* 20px */
    flex-shrink: 0;
}

.contact-phone {
    font-size: 1.125rem; /* Mobile: 18px */
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    padding: 0.75rem 1.25rem; /* Mobile: 12px vertical, 20px horizontal */
    background-color: var(--white);
    border-radius: 0.5rem; /* 8px */
    display: inline-block;
    word-break: break-all; /* Prevent overflow on small screens */
}

/* Tablet: Larger phone number */
@media (min-width: 481px) {
    .contact-phone {
        font-size: 1.25rem; /* Tablet: 20px */
        padding: 0.75rem 1.5rem;
        word-break: normal;
    }
}

/* ============================================
   FINAL CTA SECTION - Centered
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--light-blue-bg) 0%, var(--white) 100%);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.final-cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.final-cta-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.47059;
}

.final-cta .btn-large {
    margin-top: 0.5rem;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .final-cta {
        padding: 3rem 0;
        min-height: 250px;
    }
    
    .final-cta-title {
        font-size: 1.5rem;
    }
    
    .final-cta-text {
        font-size: 1rem;
    }
}

/* ============================================
   FOOTER - Apple Style Design
   ============================================ */
.footer {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0;
    color: var(--text-dark);
    font-size: 12px;
    line-height: 1.33337;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.footer-apple-style {
    background-color: #ffffff;
}

/* Footer inside blog article: same design as rest of site (full width, not constrained by .blog-post-container) */
.blog-post-container .footer.footer-apple-style,
.blog-post-content .footer.footer-apple-style {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}
.blog-post-container .footer.footer-apple-style .footer-container,
.blog-post-content .footer.footer-apple-style .footer-container {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.footer-container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 22px;
}

.footer-main {
    padding: 40px 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    border-bottom: 1px solid #d2d2d7;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
}

.footer-column-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column-links li {
    margin: 0;
    padding: 0;
}

.footer-column-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 12px;
    transition: text-decoration 0.2s;
}

.footer-column-links a:hover {
    text-decoration: underline;
    color: var(--text-dark);
}

.footer-bottom-apple {
    padding: 20px 0 30px;
    text-align: center;
    max-width: 100%;
}

.footer-more-ways {
    padding-bottom: 20px;
    border-bottom: 1px solid #d2d2d7;
    margin-bottom: 10px;
    text-align: center;
}

.footer-more-ways p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.33337;
}

.footer-more-ways a {
    color: var(--primary-blue);
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 102, 204, 0.2);
    touch-action: manipulation;
}

.footer-more-ways a:hover {
    text-decoration: underline;
    color: var(--primary-blue-dark);
}

.footer-more-ways a[href^="tel:"] {
    color: var(--primary-blue);
    cursor: pointer;
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.footer-copyright-apple {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.footer-legal-nav {
    display: none !important; /* Masqué - les liens sont dans la colonne "Légal" */
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.footer-legal-nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
}

.footer-legal-nav a:hover {
    text-decoration: underline;
    color: var(--text-dark);
}

.footer-separator {
    color: var(--text-light);
    font-size: 12px;
}

/* Mobile: Apple Style Footer */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px 0;
    }
    
    .footer-column {
        border-bottom: 1px solid #d2d2d7;
        padding: 12px 0;
    }
    
    .footer-column:last-child {
        border-bottom: none;
    }
    
    .footer-column-title {
        font-size: 12px;
        margin-bottom: 8px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-column-title::after {
        content: '+';
        font-size: 18px;
        font-weight: 300;
        color: var(--text-dark);
        transition: transform 0.3s;
    }
    
    .footer-column.expanded .footer-column-title::after {
        transform: rotate(45deg);
    }
    
    .footer-column-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        gap: 6px;
    }
    
    .footer-column.expanded .footer-column-links {
        max-height: 500px;
        padding: 8px 0 0 0;
    }
    
    .footer-legal-nav {
        display: none !important; /* Masquer sur mobile - les liens sont dans la colonne "Légal" */
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .footer-separator {
        display: none;
    }
    
    /* Masquer footer-more-ways sur mobile */
    .footer-more-ways {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Masquer complètement footer-legal-links sur mobile (les liens sont dans la colonne "Légal") */
    .footer-legal-links {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Masquer aussi le copyright sur mobile */
    .footer-copyright-apple {
        display: none !important;
    }
}

/* Legacy footer styles - Keep for compatibility */
.footer-old {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 5rem 0 2.5rem;
    color: var(--text-dark);
    margin-top: 6rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-blue-rgb), 0.15), transparent);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Desktop: Full width */
@media (min-width: 1025px) {
    .footer .container {
        max-width: 1400px;
        padding: 0 3rem;
    }
}

/* ============================================
   FOOTER - Premium Modern Design (SaaS/Streaming Style)
   ============================================ */

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section-brand {
    max-width: 100%;
}

.footer-section-brand .footer-text {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 1.25rem;
    max-width: 320px;
}

/* Footer Logo */
.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: opacity 0.2s ease;
}

.footer-logo-link:hover {
    opacity: 0.85;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.125rem;
    line-height: 1;
}

.footer-logo-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.125rem;
}

.footer-logo-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.footer-logo-waves {
    position: absolute;
    bottom: -0.125rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.125rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.footer-logo-waves .wave-line {
    width: 0.1875rem;
    height: 0.25rem;
    background: linear-gradient(180deg, rgba(var(--primary-blue-rgb), 0.6) 0%, rgba(var(--primary-blue-rgb), 0.3) 100%);
    border-radius: 0.0625rem;
    animation: waveAnimation 1.5s ease-in-out infinite;
}

.footer-logo-waves .wave-line:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-logo-waves .wave-line:nth-child(3) {
    animation-delay: 0.4s;
}

.footer-logo-iptv {
    font-size: 1.125rem;
    font-weight: 900;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    color: var(--primary-blue);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(var(--primary-blue-rgb), 0.15), 0 0 1px rgba(var(--primary-blue-rgb), 0.2);
    display: block;
    font-stretch: condensed;
}

.footer-logo-abonnement {
    font-size: 0.625rem;
    font-weight: 800;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    color: var(--gray-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    margin-top: 0.0625rem;
    font-stretch: condensed;
}

/* Tablet: Slightly larger */
@media (min-width: 481px) {
    .footer-logo-icon svg {
        width: 1.625rem;
        height: 1.625rem;
    }
    
    .footer-logo-iptv {
        font-size: 1.25rem;
    }
    
    .footer-logo-abonnement {
        font-size: 0.6875rem;
    }
}

/* Desktop: Maximum size */
@media (min-width: 1025px) {
    .footer-logo-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .footer-logo-iptv {
        font-size: 1.375rem;
    }
    
    .footer-logo-abonnement {
        font-size: 0.75rem;
    }
    
    .footer-logo-top {
        gap: 0.625rem;
    }
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

/* Footer Heading - Premium Typography */
.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    padding: 0;
    line-height: 1.2;
}

/* Footer Description - Brand Section */
.footer-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.47059;
    margin: 1rem 0 0 0;
    max-width: 280px;
}

/* Footer Navigation - Premium Link Style */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.47059;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
}

.footer-link:hover {
    color: var(--primary-blue);
    transform: translateX(2px);
}

.footer-link:active {
    transform: translateX(1px);
}

/* Legacy support - Keep old classes for compatibility */
.footer-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    padding: 0;
    line-height: 1.2;
}

.footer-text {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.47059;
    margin: 1rem 0 0 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
    padding: 0;
    line-height: 1.47059;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.47059;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 0.25rem 0;
    margin: 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 24px;
}

.footer-links a[aria-current="page"] {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 960px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 100000;
}

.cookie-banner-text {
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.47059;
    margin: 0;
}

.cookie-banner-link {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-banner-button {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 999px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-banner-button:hover {
    background: var(--primary-blue-dark);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .cookie-banner-button {
        width: 100%;
        text-align: center;
    }
}

/* Active footer link */
.footer-links a[aria-current="page"] {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Footer Section Toggle Button (Desktop: Hidden) */
.footer-section-toggle {
    display: none; /* Hidden on desktop by default */
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.footer-toggle-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-dark);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.footer-section-toggle[aria-expanded="true"] .footer-toggle-icon {
    transform: rotate(45deg);
}

/* Mobile: Ultra-compact collapsible footer (Netflix-style) */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 0.75rem !important; /* Drastically reduced padding */
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 0 !important; /* No gap between sections */
        margin-bottom: 1rem !important; /* Reduced margin */
        padding-bottom: 0.75rem !important; /* Reduced padding */
    }
    
    /* Reorder sections: Brand first, then Navigation, Support, Legal */
    .footer-section-brand {
        order: 1;
        margin-bottom: 1rem !important; /* Small gap after brand */
    }
    
    .footer-section:nth-of-type(2) {
        order: 2; /* Navigation */
    }
    
    .footer-section:nth-of-type(3) {
        order: 3; /* Support */
    }
    
    .footer-section:nth-of-type(4) {
        order: 4; /* Legal */
    }
    
    /* Brand section - Compact */
    .footer-section-brand {
        margin-bottom: 1rem;
    }
    
    .footer-text {
        font-size: 0.75rem !important; /* Smaller text */
        line-height: 1.47059;
        margin-top: 0.5rem !important; /* Reduced margin */
        color: #6b7280;
        max-width: 100%;
    }
    
    /* Collapsible sections */
    .footer-section-collapsible {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        margin-bottom: 0 !important;
    }
    
    .footer-section-collapsible:last-of-type {
        border-bottom: none;
    }
    
    /* Toggle button - Visible on mobile */
    .footer-section-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        padding: 0.75rem 0 !important; /* Compact padding */
        margin: 0;
        align-items: center;
        justify-content: space-between;
        background: none;
        border: none;
        cursor: pointer;
        min-height: 44px; /* Touch target */
        -webkit-tap-highlight-color: rgba(var(--primary-blue-rgb), 0.15);
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
        position: relative;
        z-index: 10 !important;
        pointer-events: auto !important;
        -webkit-touch-callout: none;
    }
    
    .footer-section-toggle:active {
        opacity: 0.7 !important;
        background-color: rgba(var(--primary-blue-rgb), 0.08) !important;
    }
    
    .footer-section-toggle:focus {
        outline: 2px solid var(--primary-blue);
        outline-offset: 2px;
    }
    
    .footer-section-collapsible {
        position: relative;
        z-index: 1;
        pointer-events: auto !important;
    }
    
    .footer-subtitle {
        font-size: 0.75rem !important;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #1a1a1a;
        margin: 0 !important; /* No margin */
        padding: 0;
        line-height: 1.2;
        flex: 1;
    }
    
    /* Footer links - Collapsed by default, 2 columns when open */
    .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 0.375rem 0.75rem !important; /* Minimal gap: vertical 0.375rem, horizontal 0.75rem */
        list-style: none;
    }
    
    /* Footer links - Expanded state */
    .footer-section-collapsible[aria-expanded="true"] .footer-links,
    .footer-links.expanded {
        max-height: 500px !important; /* Large enough for content */
        padding: 0.5rem 0 0.75rem 0 !important; /* Small padding when open */
        overflow: visible;
    }
    
    .footer-links li {
        margin: 0;
        padding: 0;
    }
    
    .footer-links a {
        font-size: 0.75rem !important; /* Smaller font */
        line-height: 1.47059;
        padding: 0.375rem 0 !important; /* Minimal padding */
        min-height: auto !important; /* No fixed min-height */
        display: block;
        color: #6b7280;
        text-decoration: none;
    }
    
    .footer-links a:hover {
        color: var(--primary-blue);
    }
    
    /* Footer bottom - Ultra compact */
    .footer-bottom {
        padding-top: 0.75rem !important; /* Reduced padding */
        margin-top: 0.5rem !important; /* Reduced margin */
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .footer-copyright {
        font-size: 0.6875rem !important; /* Smaller */
        margin-bottom: 0.25rem !important; /* Minimal margin */
        line-height: 1.4;
    }
    
    .footer-disclaimer {
        font-size: 0.625rem !important; /* Smaller */
        line-height: 1.47059;
        margin: 0;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Footer Content Grid - Responsive (Premium Design) */
@media (min-width: 481px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 769px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
    
    .footer-heading {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-nav {
        gap: 0.75rem;
    }
}

@media (min-width: 1025px) {
    .footer-content {
        grid-template-columns: 2.5fr 1fr 1fr 1fr;
        gap: 5rem;
        align-items: start;
    }
    
    .footer-section-brand {
        max-width: 380px;
    }
    
    .footer-heading {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
        letter-spacing: 0.06em;
    }
    
    .footer-description {
        font-size: 0.9375rem;
        margin-top: 1.5rem;
        max-width: 320px;
    }
    
    .footer-nav {
        gap: 0.875rem;
    }
    
    .footer-link {
        font-size: 0.9375rem;
    }
    
    .footer-section-brand .footer-text {
        font-size: 1rem;
        max-width: 360px;
    }
}

/* Footer Bottom - Premium Design */
.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    color: var(--text-light);
    margin-top: 2rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
}

.footer-disclaimer {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.47059;
    color: #9ca3af;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

@media (min-width: 769px) {
    .footer-disclaimer {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE-FIRST
   ============================================ */

/* Mobile styles are already defined above as base styles */
/* Tablet and desktop enhancements are in the header section above */

    /* Hero styles are now mobile-first, no need to override here */

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        gap: 2.5rem;
        max-width: 1200px;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .step-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .step-text {
        font-size: 1rem;
    }

    /* Header styles are now mobile-first, no need to override here */
}

/* ============================================
   MOBILE OPTIMIZATIONS (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
    /* Section spacing - Mobile optimized */
    section {
        padding: 2.5rem 0;
    }

    /* Social Proof - Mobile optimized */
    .social-proof {
        padding: 2.5rem 0 3rem;
    }

    .social-proof-header {
        margin-bottom: 2rem;
    }

    .social-proof-title {
        font-size: 1.625rem;
    }

    .social-proof-subtitle {
        font-size: 0.9375rem;
    }

    .reviews-grid-modern {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .review-card-modern {
        padding: 1.5rem;
    }

    .review-avatar-modern {
        width: 44px;
        height: 44px;
        font-size: 0.9375rem;
    }

    .review-name-modern {
        font-size: 0.9375rem;
    }

    .review-text-modern {
        font-size: 0.875rem;
    }

    .reviews-stats-modern {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.75rem 1rem;
    }

    .stat-value-modern {
        font-size: 1.5rem;
    }

    .stat-label-modern {
        font-size: 0.8125rem;
    }

    /* How It Works - Mobile compact (réduit sur téléphone) */
    .how-it-works {
        padding: 1.25rem 0;
        background: var(--white);
    }

    .how-it-works-header {
        margin-bottom: 0.875rem;
    }

    .how-it-works-title {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .how-it-works-subtitle {
        font-size: 0.8125rem;
    }

    /* Steps Grid - Mobile compact: numéro + titre + texte seulement */
    .steps-grid {
        gap: 0.625rem;
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .step-card {
        padding: 0.75rem 0.875rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 10px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9375rem;
        box-shadow: 0 2px 12px rgba(var(--primary-blue-rgb), 0.25), 0 1px 4px rgba(var(--primary-blue-rgb), 0.15);
    }

    .step-number-wrapper {
        margin-bottom: 0.5rem;
    }

    .step-connector {
        display: none;
    }

    .step-icon {
        display: none;
    }

    .step-content {
        gap: 0.25rem;
    }

    .step-title {
        font-size: 0.9375rem;
        margin-bottom: 0.125rem;
        font-weight: 700;
    }

    .step-text {
        font-size: 0.75rem;
        max-width: 100%;
        padding: 0;
        line-height: 1.4;
        color: rgba(31, 41, 55, 0.75);
    }

    /* Pricing cards - Mobile optimized */
    .pricing-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .price-amount {
        font-size: 2rem;
        line-height: 1.2;
    }

    .pricing-card-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    /* FAQ - Mobile optimized */
    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
        line-height: 1.47059;
    }

    /* Social proof - Mobile optimized */
    .review-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .review-text {
        font-size: 0.875rem;
        line-height: 1.47059;
    }

    /* Buttons - Mobile optimized */
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }

    /* Headings - Mobile optimized */
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    /* Text - Mobile optimized */
    p {
        font-size: 0.9375rem;
        line-height: 1.47059;
    }

    /* Lists - Mobile optimized */
    ul, ol {
        padding-left: 1.25rem;
    }

    li {
        font-size: 0.9375rem;
        line-height: 1.47059;
        margin-bottom: 0.5rem;
    }
}

/* Small mobile devices - Additional optimizations */
@media (max-width: 480px) {
    .container {
        padding: 0 0.875rem; /* Even tighter padding on very small screens */
    }

    section {
        padding: 2rem 0;
    }

    /* Footer - Mobile optimized premium spacing */
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-heading {
        font-size: 0.75rem;
        margin-bottom: 0.875rem;
        letter-spacing: 0.06em;
    }

    .footer-nav {
        gap: 0.5rem;
    }

    .footer-link {
        font-size: 0.875rem;
        padding: 0.25rem 0; /* Touch-friendly on mobile */
        line-height: 1.47059;
    }

    .footer-description {
        font-size: 0.8125rem;
        margin-top: 0.875rem;
        line-height: 1.47059;
    }

    .footer-logo-link {
        margin-bottom: 0.875rem;
    }

    .pricing-card {
        padding: 1rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    h3 {
        font-size: 1.125rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
/* ============================================
   HERO SECTION - Simplified & Modern (Mobile-First)
   ============================================ */
/* ============================================
   HERO SECTION - Premium Dark Theme
   ============================================ */

/* Premium Hero - Dark Theme */
.hero-premium {
    position: relative;
    padding: 3rem 0 4rem; /* Mobile: 48px top, 64px bottom */
    min-height: 90vh; /* Mobile: Minimum viewport height */
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    z-index: 0;
    display: flex;
    align-items: center;
}

/* Dark Background */
.hero-bg-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    z-index: 0;
}

/* Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(var(--primary-blue-rgb), 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Grid Pattern */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(var(--primary-blue-rgb), 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-blue-rgb), 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* Hero Wrapper Premium */

/* Desktop: Two-column layout */
@media (min-width: 1025px) {
    .hero-premium {
        padding: 10rem 0 8rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

/* ============================================
   HERO CONTENT - Cinematic Text Block
   ============================================ */
/* ============================================
   HERO CONTENT
   ============================================ */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Desktop: Better spacing for text organization */
@media (min-width: 1025px) {
    .hero-content {
        gap: 1.75rem;
        max-width: 600px;
    }
}
/* CLS Prevention - Hero Section - Removed duplicate, using main definition above */

.hero-bg-image {
    /* Explicit dimensions prevent CLS */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Reserve space */
    display: block;
}

/* Mobile: Adjust aspect ratio */
@media (max-width: 768px) {
    .hero-premium {
        aspect-ratio: 2 / 3; /* Mobile portrait */
        min-height: 100vh;
    }
    
    .hero-bg-image {
        object-position: center top;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop: Hero content */
@media (min-width: 1025px) {
    .hero-content {
        gap: 2.5rem;
    }
}

/* ============================================
   TRUST BADGES - Top Alignment (Above Title)
   ============================================ */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    width: 100%;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(var(--primary-blue-rgb), 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-blue-rgb), 0.3);
}

.trust-badge-icon {
    width: 1rem; /* 16px */
    height: 1rem;
    color: var(--accent-green-light); /* Green accent */
    flex-shrink: 0;
}

/* Desktop: Trust badges */
@media (min-width: 1025px) {
    .hero-trust-badges {
        gap: 0.875rem;
        margin-bottom: 2rem;
    }
    
    .trust-badge {
        font-size: 0.8125rem;
        padding: 0.5625rem 1rem;
    }
    
    .trust-badge-icon {
        width: 1rem;
        height: 1rem;
    }
}

/* ============================================
   HERO TITLE - Cinematic Bold
   ============================================ */
/* ============================================
   HERO TITLE
   ============================================ */
.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 100%;
    word-wrap: break-word;
}

/* Desktop: Hero title */
@media (min-width: 1025px) {
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
    }
}

/* ============================================
   HERO SUBTITLE - Short & Clear
   ============================================ */
/* ============================================
   HERO SUBTITLE
   ============================================ */
.hero-subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
    max-width: 100%;
    word-wrap: break-word;
}

/* Desktop: Larger subtitle */
@media (min-width: 1025px) {
    .hero-subtitle-premium {
        font-size: 1.25rem; /* Desktop: 20px */
        line-height: 1.47059;
        max-width: 45rem; /* 720px */
    }
}

/* Hero Rating */
/* ============================================
   HERO RATING - Below Subtitle (Secondary)
   ============================================ */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 2rem 0;
    align-self: flex-start;
}

.hero-stars {
    display: flex;
    gap: 0.25rem;
}

.hero-stars svg {
    width: 1.25rem; /* 20px */
    height: 1.25rem;
    color: var(--accent-gold); /* Gold/yellow */
    fill: currentColor;
}

.hero-rating-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* Desktop: Rating */
@media (min-width: 1025px) {
    .hero-rating {
        margin-bottom: 2.5rem;
    }
    
    .hero-stars svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .hero-rating-text {
        font-size: 0.9375rem;
    }
}

/* ============================================
   HERO CTA - Single Large Button
   ============================================ */
/* ============================================
   HERO CTA
   ============================================ */
.hero-cta {
    margin-top: 1rem;
}

.hero-cta .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 700;
    min-height: 3.5rem;
}

/* Desktop: Hero CTA */
@media (min-width: 1025px) {
    .hero-cta .btn-primary {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
        min-height: 3.75rem;
    }
}

/* Primary CTA Button */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    min-height: 3.5rem;
    border-radius: 12px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(var(--primary-blue-rgb), 0.4), 0 0 0 0 rgba(var(--primary-blue-rgb), 0.5);
    position: relative;
    overflow: hidden;
    min-height: 3.5rem; /* 56px */
    width: 100%;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--primary-blue-rgb), 0.5), 0 0 0 4px rgba(var(--primary-blue-rgb), 0.2);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue) 100%);
}

.btn-hero-primary:active {
    transform: translateY(-1px);
}

.btn-hero-primary svg {
    width: 1.25rem; /* 20px */
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

/* Desktop: Primary button */
@media (min-width: 1025px) {
    .btn-hero-primary {
        width: auto;
        padding: 1.25rem 2.5rem;
        font-size: 1.0625rem;
        min-height: 3.75rem;
    }
}

/* Secondary CTA Button */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2rem;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    min-height: 3.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 3.5rem; /* 56px */
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-hero-secondary:active {
    transform: translateY(0);
}

/* Desktop: Secondary button */
@media (min-width: 1025px) {
    .btn-hero-secondary {
        width: auto;
        padding: 1.25rem 2.5rem;
        font-size: 1.0625rem;
        min-height: 3.75rem;
    }
}

/* ============================================
   HERO IMAGE
   ============================================ */
.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(var(--primary-blue-rgb), 0.2);
}

/* Hide hero-visual if image fails to load */
.hero-visual:has(img[style*="display: none"]) {
    display: none;
}

/* Desktop: Hero image - Reduced size */
@media (min-width: 1025px) {
    .hero-image {
        justify-content: flex-end;
    }
    
    .hero-img {
        max-width: 60%; /* Reduced from 90% to 60% */
    }
}

/* Mobile: Hero image - Reduced size */
@media (max-width: 1024px) {
    .hero-img {
        max-width: 80%; /* Reduced for mobile */
    }
}

/* Mobile: Image first, text overlays bottom */

}

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Desktop: Larger TV */
@media (min-width: 1025px) {
    .device-tv {
        width: 400px;
        height: 260px;
    }
}

    100% {
        background-position: 0 100%;
    }
}

/* Optional: Subtle glow effect around the screen */
.tv-screen::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.3), rgba(74, 222, 128, 0.2));
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.device-tv:hover .tv-screen::before {
    opacity: 0.5;
}

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Device Compatibility Section - Modern Redesign */
.hero-devices-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* Desktop: More padding */
@media (min-width: 1025px) {
    .hero-devices-section {
        padding: 4rem 0;
    }
}

/* Hero Devices Container */
.hero-devices-section .hero-devices {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Section Title */
.hero-devices-section .hero-devices-title {
    font-size: 1.75rem;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    font-weight: 800;
    text-align: center;
    width: 100%;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Section Subtitle */
.hero-devices-section .hero-devices-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 2.5rem 0;
    font-weight: 400;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.47059;
}

/* Desktop: Larger titles */
@media (min-width: 1025px) {
    .hero-devices-section .hero-devices-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .hero-devices-section .hero-devices-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
        max-width: 700px;
    }
}

/* Devices Grid */
.hero-devices-section .hero-devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    justify-content: center;
    align-items: stretch;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Tablet: 2 columns */
@media (min-width: 481px) {
    .hero-devices-section .hero-devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop: 4 columns */
@media (min-width: 1025px) {
    .hero-devices-section .hero-devices-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1200px;
    }
}

/* Device Card - Premium Design with Title & Subtitle */
.hero-devices-section .hero-device-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 180px;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 2rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    gap: 1rem;
    cursor: pointer;
    text-align: center;
}

/* Gradient background on hover */
.hero-devices-section .hero-device-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.3), rgba(74, 222, 128, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
    z-index: 0;
}

.hero-devices-section .hero-device-card:hover::before {
    opacity: 1;
}

/* Glow effect on hover */
.hero-devices-section .hero-device-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.4), rgba(74, 222, 128, 0.3));
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(12px);
}

.hero-devices-section .hero-device-card:hover::after {
    opacity: 0.6;
}

.hero-devices-section .hero-device-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(var(--primary-blue-rgb), 0.5);
    box-shadow: 
        0 16px 48px rgba(var(--primary-blue-rgb), 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 0 2px rgba(var(--primary-blue-rgb), 0.3);
    color: #ffffff;
}

/* Active state */
.hero-devices-section .hero-device-card:active {
    transform: translateY(-4px) scale(1.01);
}

/* Desktop: Larger cards */
@media (min-width: 1025px) {
    .hero-devices-section .hero-device-card {
        min-height: 220px;
        padding: 2.5rem 1.5rem;
        gap: 1.25rem;
    }
}

/* Icon Wrapper - Premium Design */
.hero-devices-section .device-icon-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-bottom: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.hero-devices-section .hero-device-card:hover .device-icon-wrapper {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(var(--primary-blue-rgb), 0.5);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(var(--primary-blue-rgb), 0.3);
}

/* Device Icon - Strong Contrast */
.hero-devices-section .hero-device-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: block;
    position: relative;
    z-index: 1;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(var(--primary-blue-rgb), 0.4));
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease, filter 0.3s ease;
    opacity: 0.95;
}

.hero-devices-section .hero-device-card:hover .hero-device-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 16px rgba(var(--primary-blue-rgb), 0.6));
    opacity: 1;
}

/* Desktop: Larger icons */
@media (min-width: 1025px) {
    .hero-devices-section .hero-device-icon {
        width: 4.5rem;
        height: 4.5rem;
    }
    
    .hero-devices-section .device-icon-wrapper {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
}

/* Device Card Title */
.device-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Desktop: Larger title */
@media (min-width: 1025px) {
    .device-card-title {
        font-size: 1.25rem;
    }
}

/* Device Card Subtitle */
.device-card-subtitle {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.47059;
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 100%;
}

.hero-devices-section .hero-device-card:hover .device-card-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Desktop: Larger subtitle */
@media (min-width: 1025px) {
    .device-card-subtitle {
        font-size: 0.875rem;
    }
}

/* Device Label */
.hero-devices-section .hero-device-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.01em;
    word-break: break-word;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.hero-devices-section .hero-device-item:hover .hero-device-label {
    color: #ffffff;
}

/* Desktop: Larger label */
@media (min-width: 1025px) {
    .hero-devices-section .hero-device-label {
        font-size: 0.875rem;
    }
}

/* Transition from dark hero to light sections */
.hero-premium + section,
.hero-devices-section + section {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

/* Legacy Hero Styles (for backward compatibility) - background preserved from main .hero */
.hero {
    position: relative;
    padding: 2rem 0 3rem; /* Mobile: 32px top, 48px bottom */
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    z-index: 0;
}

/* Hero Background Illustration */
.hero-illustration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Allow clicks to pass through */
    opacity: 0.4; /* Very subtle on mobile to maintain readability */
    overflow: hidden;
    /* Core Web Vitals: Prevent layout shift */
    contain: layout style paint;
}

/* Tablet: Slightly more visible */
@media (min-width: 481px) {
    .hero-illustration {
        opacity: 0.5;
    }
}

.hero-illustration-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    /* Core Web Vitals: Prevent layout shift */
    min-width: 100%;
    min-height: 100%;
}

/* Desktop: More visible illustration */
@media (min-width: 1025px) {
    .hero-illustration {
        opacity: 0.8;
    }
}

/* Animated Elements */
.hero-circle-1 {
    animation: floatAnimation 8s ease-in-out infinite;
    transform-origin: center;
}

.hero-circle-2 {
    animation: floatAnimation 10s ease-in-out infinite 1s;
    transform-origin: center;
}

.hero-circle-3 {
    animation: floatAnimation 12s ease-in-out infinite 2s;
    transform-origin: center;
}

.hero-circle-4 {
    animation: floatAnimation 9s ease-in-out infinite 1.5s;
    transform-origin: center;
}

.hero-signal-1 {
    animation: signalPulse 4s ease-in-out infinite;
}

.hero-signal-2 {
    animation: signalPulse 5s ease-in-out infinite 1s;
}

.hero-signal-3 {
    animation: signalPulse 6s ease-in-out infinite 2s;
}

.hero-dot-1,
.hero-dot-3,
.hero-dot-4,
.hero-dot-6 {
    animation: dotPulse 3s ease-in-out infinite;
}

.hero-dot-2,
.hero-dot-5,
.hero-dot-7 {
    animation: dotPulse 3.5s ease-in-out infinite 0.5s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-20px) translateX(15px) scale(1.05);
        opacity: 0.8;
    }
    66% {
        transform: translateY(15px) translateX(-10px) scale(0.95);
        opacity: 0.7;
    }
}

@keyframes signalPulse {
    0%, 100% {
        opacity: 0.15;
        stroke-dashoffset: 0;
    }
    50% {
        opacity: 0.25;
        stroke-dashoffset: 20;
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }
}

/* Tablet: Increase hero padding */
@media (min-width: 481px) {
    .hero {
        padding: 3rem 0 4rem; /* Tablet: 48px top, 64px bottom */
    }
}

/* Desktop: Maximum hero padding */
@media (min-width: 1025px) {
    .hero {
        padding: 6rem 0 7rem; /* Desktop: 96px top, 112px bottom - More generous */
        background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 40%, var(--light-blue-bg) 100%);
        min-height: 85vh; /* Desktop: Minimum viewport height for impact */
    }
}

/* Large Desktop: Even more hero space */
@media (min-width: 1440px) {
    .hero {
        padding: 7rem 0 8rem; /* Large desktop: 112px top, 128px bottom */
        min-height: 90vh;
    }
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* Mobile: 32px */
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1; /* Above background illustration */
}

/* Desktop: Two-column layout */
@media (min-width: 1025px) {
    .hero-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 4rem; /* Desktop: 64px - Better spacing between columns */
        position: relative;
        max-width: 100%;
    }
}

/* Large Desktop: Even more spacing */
@media (min-width: 1440px) {
    .hero-wrapper {
        gap: 5rem; /* Large desktop: 80px */
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 1.25rem; /* Mobile: 20px */
    position: relative;
    z-index: 2; /* Above wrapper and illustration */
    box-sizing: border-box;
}

/* Desktop: Left-align content */
@media (min-width: 1025px) {
    .hero-content {
        align-items: flex-start;
        text-align: left;
        max-width: 40.625rem; /* 650px */
        flex: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--light-blue-bg);
    border: 1px solid rgba(var(--primary-blue-rgb), 0.12);
    border-radius: 50px;
    font-size: 0.8125rem; /* 13px - Readable on mobile */
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.01em;
}

/* Tablet: Larger badge */
@media (min-width: 481px) {
    .hero-badge {
        font-size: 0.875rem; /* 14px */
        padding: 0.5rem 1rem;
    }
}

.hero-badge-dot {
    width: 0.375rem; /* 6px */
    height: 0.375rem; /* 6px */
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 2rem; /* Mobile: 32px */
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 100%;
    word-wrap: break-word;
}

/* Tablet: Larger title */
@media (min-width: 481px) {
    .hero-title {
        font-size: 2.25rem; /* Tablet: 36px */
        line-height: 1.2;
    }
}

/* Desktop: Maximum title size */
@media (min-width: 1025px) {
    .hero-title {
        font-size: 3.25rem; /* Desktop: 52px */
        line-height: 1.15;
        letter-spacing: -0.03em;
        margin-bottom: 0.75rem;
    }
}

.hero-subtitle {
    font-size: 1.0625rem; /* Mobile: 17px */
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.65;
    font-weight: 400;
    max-width: 100%;
    word-wrap: break-word;
}

/* Tablet: Larger subtitle */
@media (min-width: 481px) {
    .hero-subtitle {
        font-size: 1.125rem; /* Tablet: 18px */
    }
}

/* Desktop: Maximum subtitle size */
@media (min-width: 1025px) {
    .hero-subtitle {
        font-size: 1.1875rem; /* Desktop: 19px */
        line-height: 1.7;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
}

.btn-hero-cta {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.75rem;
    min-height: 3.125rem; /* 50px - Above 44px minimum */
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.75rem; /* 12px */
    margin-top: 0.25rem;
}

/* Tablet: Auto width CTA */
@media (min-width: 481px) {
    .btn-hero-cta {
        width: auto;
        min-width: 15rem; /* 240px */
        max-width: 100%;
    }
}

/* Desktop: Fixed width CTA */
@media (min-width: 1025px) {
    .btn-hero-cta {
        width: auto;
        min-width: 15rem; /* 240px */
        padding: 1.125rem 2.5rem;
        font-size: 1.0625rem; /* 17px */
    }
}

.hero-devices {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2; /* Above illustration */
    margin: 0 auto;
    box-sizing: border-box;
}

.hero-devices-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-devices-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-height: 100px;
    color: var(--primary-blue);
    opacity: 0.85;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--light-blue-bg) 0%, rgba(var(--primary-blue-rgb), 0.05) 100%);
    border-radius: 16px;
    padding: 1rem 0.75rem;
    border: 1.5px solid rgba(var(--primary-blue-rgb), 0.1);
    box-shadow: 0 2px 8px rgba(var(--primary-blue-rgb), 0.08);
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

.hero-device-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-device-item:hover {
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.15) 0%, rgba(var(--primary-blue-rgb), 0.05) 100%);
    border-color: rgba(var(--primary-blue-rgb), 0.25);
    box-shadow: 0 8px 20px rgba(var(--primary-blue-rgb), 0.15);
}

.hero-device-item:hover::before {
    opacity: 1;
}

.hero-device-item:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-device-icon {
    width: 2.5rem; /* Mobile: 40px */
    height: 2.5rem; /* Mobile: 40px */
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(var(--primary-blue-rgb), 0.1));
    flex-shrink: 0;
    /* Core Web Vitals: Prevent layout shift */
    aspect-ratio: 1 / 1;
}

.hero-device-label {
    font-size: 0.75rem; /* Mobile: 12px - Minimum readable */
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.3; /* Better readability */
    margin-top: 0.25rem;
    letter-spacing: -0.01em;
    word-break: break-word;
}

/* Tablet: Larger icons and better spacing */
@media (min-width: 481px) {
    .hero-devices {
        margin-top: 2rem;
        padding: 2rem 1rem;
    }
    
    .hero-devices-label {
        font-size: 0.875rem; /* Tablet: 14px */
        margin-bottom: 1.75rem;
    }
    
    .hero-devices-grid {
        gap: 1.75rem;
        max-width: 56.25rem; /* 900px */
    }
    
    .hero-device-item {
        width: 6.25rem; /* 100px */
        min-height: 7.5rem; /* 120px */
        padding: 1.25rem 1rem;
    }

    .hero-device-icon {
        width: 2.75rem; /* Tablet: 44px */
        height: 2.75rem; /* Tablet: 44px */
    }

    .hero-device-label {
        font-size: 0.8125rem; /* Tablet: 13px */
    }
}

/* Desktop: Maximum icon size */
@media (min-width: 1025px) {
    .hero-devices {
        margin-top: 2.5rem;
        padding: 2.5rem 1rem;
    }
    
    .hero-devices-grid {
        gap: 2rem;
        max-width: 56.25rem; /* 900px */
    }

    .hero-device-icon {
        width: 3rem; /* Desktop: 48px */
        height: 3rem; /* Desktop: 48px */
    }

    .hero-device-label {
        font-size: 0.875rem; /* Desktop: 14px */
    }
}

.hero-visual {
    display: none;
}

/* ============================================
   WHY CHOOSE US - Trust Section (Mobile-First)
   ============================================ */
.why-choose-us {
    padding: 3rem 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.trust-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .trust-card {
        aspect-ratio: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .trust-card .trust-title,
    .trust-card .trust-text {
        text-align: center;
    }
}

.trust-card:hover {
    border-color: rgba(var(--primary-blue-rgb), 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue-bg);
    border-radius: 12px;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
}

.trust-text {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.47059;
}

/* ============================================
   REASSURANCE BAR (Mobile-First)
   ============================================ */
.reassurance-bar {
    padding: 2rem 0;
    background: var(--light-blue-bg);
    border-top: 1px solid rgba(var(--primary-blue-rgb), 0.1);
    border-bottom: 1px solid rgba(var(--primary-blue-rgb), 0.1);
}

.reassurance-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.reassurance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.reassurance-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(var(--primary-blue-rgb), 0.1);
}

.reassurance-icon svg {
    width: 20px;
    height: 20px;
}

.reassurance-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reassurance-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.reassurance-text span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ============================================
   CONTENT SECTION - Blog/Help Center (Mobile-First)
   ============================================ */
.content-section {
    padding: 3rem 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.content-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
    text-align: left;
}

.content-card:hover {
    border-color: rgba(var(--primary-blue-rgb), 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.content-card-category {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--light-blue-bg);
    color: var(--primary-blue);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.content-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.content-card-excerpt {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0 0 1rem;
    line-height: 1.47059;
}

.content-card-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.content-card-link:hover {
    color: var(--primary-blue-dark);
    gap: 0.75rem;
}

.content-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */
/* Tablet responsive fixes - Consolidated */
@media (min-width: 481px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .hero-visual {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 45%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .hero-visual-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-visual-wave,
    .hero-visual-circle {
        position: absolute;
        border-radius: 50%;
    }

    .hero-visual-wave {
        border: 2px solid rgba(var(--primary-blue-rgb), 0.1);
        animation: wave 8s ease-in-out infinite;
    }

    .hero-wave-1 {
        width: 200px;
        height: 200px;
        top: 20%;
        right: 10%;
        animation-delay: 0s;
    }

    .hero-wave-2 {
        width: 150px;
        height: 150px;
        top: 50%;
        right: 20%;
        animation-delay: 2s;
    }

    .hero-wave-3 {
        width: 100px;
        height: 100px;
        top: 70%;
        right: 30%;
        animation-delay: 4s;
    }

    .hero-visual-circle {
        background: rgba(var(--primary-blue-rgb), 0.08);
        animation: float 6s ease-in-out infinite;
    }

    .hero-circle-1 {
        width: 60px;
        height: 60px;
        top: 30%;
        right: 15%;
        animation-delay: 0s;
    }

    .hero-circle-2 {
        width: 40px;
        height: 40px;
        top: 60%;
        right: 25%;
        animation-delay: 2s;
    }

    .hero-circle-3 {
        width: 30px;
        height: 30px;
        top: 75%;
        right: 35%;
        animation-delay: 4s;
    }

    @keyframes wave {
        0%, 100% {
            transform: scale(1) translate(0, 0);
            opacity: 0.5;
        }
        50% {
            transform: scale(1.1) translate(10px, -10px);
            opacity: 0.8;
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
    }

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

    .reassurance-content {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }

    .content-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Desktop: 1025px and above - Final responsive enhancements */
@media (min-width: 1025px) {
    .hero-wrapper {
        gap: 3rem; /* Match our standardized gap */
    }

    .hero-devices {
        width: 100%;
        flex-basis: 100%;
        order: 3;
        margin-top: 2rem;
    }

    .trust-grid,
    .why-choose-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Help Center - Desktop: 3 columns */
    .help-center-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .help-popular-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 56.25rem; /* 900px */
        gap: 1.5rem;
    }

    /* Social Proof - Desktop: 2 columns */
    .reviews-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 62.5rem; /* 1000px */
        margin-left: auto;
        margin-right: auto;
    }

    .review-card {
        padding: 1.75rem;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE FIXES - Final Layer
   ============================================ */

/* Help Center Grid - Ensure proper responsive behavior */
.help-center-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: Single column */
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* FAQ List - Mobile First */
.faq-list {
    max-width: 100%;
    margin: 2rem auto 0;
    width: 100%;
    box-sizing: border-box;
}

.faq-item {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    min-height: 2.75rem; /* 44px - Touch target */
    text-align: left;
    padding: 1rem 1.25rem;
    box-sizing: border-box;
}

/* Contact Section - Responsive */
.contact-content {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.contact-whatsapp {
    width: 100%;
    box-sizing: border-box;
}

/* Social Proof - Mobile First */
.reviews-list {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: Single column */
    gap: 1.25rem;
    width: 100%;
    box-sizing: border-box;
}

.review-card {
    width: 100%;
    box-sizing: border-box;
}

/* Why Choose Us Grid - Responsive */
.why-choose-us-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2x2 grid */
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Tablet: 2 columns for most grids */
@media (min-width: 481px) {
    .help-center-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .reviews-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .why-choose-us-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop: 3-4 columns */
@media (min-width: 1025px) {
    .help-center-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .why-choose-us-grid,
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .reviews-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 62.5rem; /* 1000px */
    }
}

/* Prevent any element from causing horizontal scroll */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Ensure all sections and containers respect viewport */
section,
.container,
.hero-wrapper,
.pricing-grid,
.help-center-grid,
.reviews-list,
/* Additional overflow protection for steps-grid */
.steps-grid {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.step-card {
    box-sizing: border-box;
    max-width: 100%;
}

/* Fix any potential overflow issues */
.hero-devices-grid {
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
}

.hero-device-item {
    flex: 0 0 auto;
    max-width: calc(50% - 0.75rem); /* Mobile: 2 per row with gap */
}

@media (min-width: 481px) {
    .hero-device-item {
        max-width: calc(33.333% - 1rem); /* Tablet: 3 per row */
    }
}

@media (min-width: 1025px) {
    .hero-device-item {
        max-width: none; /* Desktop: All items visible */
        flex: 0 0 auto;
    }
}

/* Footer responsive styles are defined above in the main footer section */

/* Accessibility: Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Disable illustration animations for reduced motion */
    .hero-illustration * {
        animation: none !important;
    }
}

/* Print Styles - Hide unnecessary elements */
@media print {
    .header,
    .mobile-menu-overlay,
    .nav-mobile,
    .mobile-menu-toggle,
    .footer,
    .btn,
    .contact-section {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.47059;
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* Extra small devices (phones in portrait, less than 360px) */
@media (max-width: 360px) {
    html {
        font-size: 15px; /* Slightly smaller base for very small screens */
    }

    .container {
        padding: 0 0.75rem; /* 12px padding on very small screens */
    }

    .hero-title {
        font-size: 1.625rem; /* 26px - Still readable */
    }

    .section-title {
        font-size: 1.5rem; /* 24px */
    }

    .btn {
        padding: 0.625rem 1.25rem; /* Slightly smaller padding */
        font-size: 0.9375rem; /* 15px */
    }
}

/* Large screens (1920px and above) - Prevent over-stretching */
@media (min-width: 1920px) {
    .container {
        max-width: 75rem; /* 1200px - Don't exceed */
    }

    .hero-wrapper {
        max-width: 75rem;
        margin: 0 auto;
    }
}

/* Surrounding Devices - Phone */

.phone-content {
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.phone-channel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
    flex: 1;
}

.phone-channel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    min-height: 20px;
}

.phone-channel.active {
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.6), rgba(74, 222, 128, 0.4));
    border: 1px solid rgba(74, 222, 128, 0.5);
}

/* Tablet Device */

.tablet-content {
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tablet-movie-poster {
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.4), rgba(var(--primary-blue-rgb), 0.4));
    border-radius: 4px;
    position: relative;
}

.tablet-play-button {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tablet-play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid rgba(0, 0, 0, 0.8);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}

/* Laptop Device */

.laptop-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    border-radius: 2px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.laptop-channel-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.laptop-channel {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.laptop-channel:first-child {
    background: linear-gradient(90deg, rgba(var(--primary-blue-rgb), 0.6), rgba(74, 222, 128, 0.4));
}

.laptop-keyboard {
    width: 100%;
    height: 30%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0 0 4px 4px;
    margin-top: -2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Device Glow Effects */

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

    50% {
        transform: translateY(-15px) rotate(var(--device-rotation, 0deg));
    }
}

/* Desktop: Larger devices */
@media (min-width: 1025px) {

}

/* ============================================
   MOBILE UX IMPROVEMENTS (max-width: 768px)
   Senior Mobile UX Engineer Optimizations
   ============================================ */

@media (max-width: 768px) {
    
    /* ============================================
       1. TYPOGRAPHY & READABILITY (Base 16px)
       ============================================ */
    
    html {
        font-size: 16px; /* Base 16px for mobile readability */
    }
    
    body {
        font-size: 1rem; /* 16px base */
        line-height: 1.47059; /* Improved readability */
    }
    
    p, .hero-description, .section-subtitle, .pricing-subtitle {
        font-size: 1rem; /* 16px minimum */
        line-height: 1.7; /* Increased for paragraphs */
    }
    
    /* ============================================
       2. HERO SECTION (Mobile First Screen)
       ============================================ */
    
    .hero {
        padding: 3rem 0 2.5rem; /* Reduced vertical padding */
        min-height: auto; /* Remove min-height to avoid excessive scrolling */
    }
    
    .hero-container {
        gap: 2rem; /* Reduced gap between text and image */
        padding: 0 1rem; /* Side padding */
    }
    
    .hero-text {
        gap: 1rem; /* Tighter spacing for mobile */
        order: 1; /* Text first */
        align-items: center; /* Center content on mobile */
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.875rem; /* 30px - Reduced from 2.25rem */
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.9375rem; /* 15px - Slightly smaller but still readable */
        line-height: 1.47059;
        margin-bottom: 0.75rem;
    }
    
    .hero-actions {
        margin-top: 1rem; /* Reduced margin */
        text-align: center;
    }
    
    .hero-visual {
        order: 2; /* Image after text */
        margin-top: 0;
    }
    
    .hero-img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure primary CTA is visible without scrolling */
    .hero-cta {
        width: 100%; /* Full-width button */
        min-height: 52px; /* 48px+ for touch target */
        font-size: 1rem; /* 16px */
        font-weight: 700;
        padding: 0.875rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* ============================================
       3. NAVIGATION (Mobile Menu - Tap Targets)
       ============================================ */
    
    .mobile-menu-toggle {
        min-width: 48px !important; /* 48px minimum tap target */
        min-height: 48px !important;
        padding: 0.75rem !important;
        z-index: 1003 !important; /* Highest priority - above everything */
        position: relative !important;
        pointer-events: auto !important; /* Force clicks to work */
        cursor: pointer !important;
        display: flex !important;
        -webkit-tap-highlight-color: rgba(var(--primary-blue-rgb), 0.2);
        touch-action: manipulation;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
    
    /* Ensure menu toggle is always visible and clickable */
    .header {
        z-index: 1000; /* Below menu toggle */
    }
    
    .nav-link-mobile {
        min-height: 48px; /* 48px minimum tap target */
        padding: 0.875rem 1.25rem; /* Generous padding */
        font-size: 1rem; /* 16px */
        line-height: 1.47059;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        -webkit-tap-highlight-color: rgba(var(--primary-blue-rgb), 0.2);
    }
    
    .nav-link-text {
        flex: 1;
    }
    
    /* Improve spacing in mobile menu */
    .mobile-menu-content {
        padding: 1.5rem 0;
    }
    
    .mobile-menu-content .nav-link-mobile {
        margin-bottom: 0.25rem; /* Tighter spacing but still readable */
    }
    
    /* Mobile menu visibility and z-index fixes */
    /* Hide main header when menu is open to prevent duplication */
    .header.header-hidden-on-mobile {
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .nav-mobile {
        display: flex !important; /* Force display on mobile */
        z-index: 99999 !important; /* Highest z-index - above everything */
        pointer-events: none; /* Disable clicks when closed */
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 85% !important;
        max-width: 320px !important;
        isolation: isolate !important; /* Create new stacking context */
        background-color: #ffffff !important;
        isolation: isolate !important; /* Create new stacking context */
    }
    
    .nav-mobile.mobile-open {
        display: flex !important; /* Ensure it's displayed when open */
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important; /* Enable clicks when open */
    }
    
    .mobile-menu-overlay {
        z-index: 1001 !important; /* Above header (1000), below menu (1002) */
        pointer-events: none;
        isolation: isolate !important; /* Create new stacking context */
    }
    
    .mobile-menu-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        display: block !important;
    }
    
    /* Mobile menu close button */
    .mobile-menu-close {
        min-width: 48px !important;
        min-height: 48px !important;
        width: 48px !important;
        height: 48px !important;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: rgba(var(--primary-blue-rgb), 0.2);
        touch-action: manipulation;
    }
    
    /* Language selector in mobile menu */
    .lang-selector-mobile {
        padding: 1rem 1.25rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        margin-top: 0.5rem;
    }
    
    .lang-selector-mobile .lang-selector-btn {
        min-height: 44px; /* Touch-friendly */
        padding: 0.625rem 1rem;
        font-size: 0.9375rem;
    }
    
    /* ============================================
       4. PRICING SECTION (Mobile Ergonomics)
       ============================================ */
    
    .pricing-premium {
        padding: 2.5rem 0; /* Reduced vertical padding */
    }
    
    .pricing-header {
        margin-bottom: 2rem; /* Reduced margin */
        padding: 0 1rem;
    }
    
    .pricing-title {
        font-size: 1.75rem; /* Reduced from 2.25rem */
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .pricing-subtitle {
        font-size: 0.9375rem; /* 15px */
        margin-top: 0.5rem;
    }
    
    .pricing-grid-premium {
        gap: 1.5rem; /* Reduced gap */
        padding: 0 1rem;
    }
    
    .pricing-card-premium {
        padding: 1.5rem 1.25rem; /* Reduced padding */
        border-radius: 12px;
    }
    
    .pricing-label {
        font-size: 1rem; /* Reduced */
        margin-bottom: 1rem;
    }
    
    .pricing-price-block {
        margin-bottom: 0.75rem;
    }
    
    .pricing-amount {
        font-size: 2.5rem; /* Reduced from 3.5rem */
    }
    
    .pricing-period {
        font-size: 0.9375rem; /* 15px */
    }
    
    .pricing-savings-badge {
        font-size: 0.75rem; /* Smaller badge */
        padding: 0.25rem 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .pricing-benefits {
        gap: 0.625rem; /* Tighter spacing */
        margin-bottom: 1.5rem; /* Reduced margin */
    }
    
    .pricing-benefit {
        font-size: 0.9375rem; /* 15px */
        line-height: 1.47059;
        padding: 0.25rem 0;
        padding-left: 1.75rem !important; /* Space for icon */
        position: relative;
        display: block;
    }
    
    .pricing-benefit::before {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 1.25rem !important; /* Fixed width to prevent overlap */
        text-align: left;
        font-size: 1rem !important;
        line-height: 1.5 !important;
        display: block;
    }
    
    /* Pricing CTA - Always visible and easy to tap */
    .pricing-cta {
        min-height: 52px; /* 48px+ touch target */
        font-size: 1rem; /* 16px */
        font-weight: 700;
        padding: 0.875rem 1.5rem;
        width: 100%; /* Full-width */
        margin-top: auto; /* Push to bottom of card */
    }
    
    /* Old pricing cards (if still in use) */
    .pricing-card {
        padding: 1.5rem 1.25rem; /* Reduced padding */
    }
    
    .pricing-features {
        margin-bottom: 1.25rem; /* Reduced margin */
    }
    
    .pricing-features li {
        font-size: 0.9375rem; /* 15px */
        line-height: 1.47059;
        padding: 0.5rem 0;
        padding-left: 1.75rem !important; /* Space for icon */
        min-height: auto;
        position: relative;
        display: block;
    }
    
    .pricing-features li::before {
        position: absolute !important;
        left: 0 !important;
        top: 0.5rem !important;
        width: 1.25rem !important; /* Fixed width to prevent overlap */
        text-align: left;
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
        display: block;
    }
    
    .btn-pricing-cta {
        min-height: 52px; /* Touch-friendly */
        width: 100%; /* Full-width */
        font-size: 1rem; /* 16px */
        padding: 0.875rem 1.5rem;
    }
    
    /* Trust bar - Compact sur mobile */
    .pricing-trust-bar {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem !important;
        margin-top: 1.25rem !important;
        padding: 0.625rem 0.75rem !important;
        align-items: center;
        justify-items: center;
    }
    
    .trust-item {
        font-size: 0.6875rem !important; /* 11px - plus compact */
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
        padding: 0.35rem 0.25rem !important;
        width: 100%;
        text-align: center !important;
        min-height: auto;
    }
    
    .trust-icon {
        font-size: 1rem !important;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .trust-text {
        font-size: 0.6875rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Instructions de commande - adapté mobile */
    .pricing-instructions {
        margin-top: 1.25rem !important;
        padding: 1rem 1rem !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    .pricing-instructions p {
        text-align: center !important;
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
        margin: 0 0 0.5rem 0 !important;
    }
    .pricing-instructions p:first-child {
        font-size: 0.9375rem !important;
        margin-bottom: 0.5rem !important;
    }
    .pricing-instructions p:last-child {
        margin-bottom: 0 !important;
    }
    .pricing-instructions a {
        white-space: nowrap;
    }
    
    /* ============================================
       5. CTA BUTTONS (Unified & Touch-Friendly)
       ============================================ */
    
    .btn, .btn-primary, .btn-secondary, .btn-hero {
        min-height: 52px; /* 48px+ for touch */
        font-size: 1rem; /* 16px */
        font-weight: 700;
        padding: 0.875rem 1.5rem;
        width: 100%; /* Full-width on mobile */
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }
    
    /* Ensure good contrast */
    .btn-primary {
        background-color: var(--primary-blue);
        color: var(--white);
        box-shadow: 0 4px 12px rgba(var(--primary-blue-rgb), 0.3);
    }
    
    .btn-primary:active {
        transform: scale(0.98); /* Tactile feedback */
    }
    
    /* ============================================
       6. SCROLL & COGNITIVE LOAD (Reduced Spacing)
       ============================================ */
    
    /* Reduce vertical spacing between sections */
    section {
        padding: 3rem 0; /* Reduced from typical 5-6rem */
    }
    
    .section-title {
        font-size: 1.75rem; /* Reduced */
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9375rem; /* 15px */
        margin-bottom: 1.5rem;
        line-height: 1.47059;
    }
    
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* FAQ section - More compact */
    .faq-item {
        margin-bottom: 1rem; /* Reduced */
        padding: 1rem; /* Reduced padding */
    }
    
    .faq-question {
        font-size: 1rem; /* 16px */
        min-height: 48px; /* Touch-friendly */
        padding: 0.875rem 1rem;
    }
    
    .faq-answer {
        font-size: 0.9375rem; /* 15px */
        line-height: 1.47059;
        padding: 0.75rem 1rem;
    }
    
    /* ============================================
       FEATURES & TRUST - Réduire taille mobile
       ============================================ */
    
    .features-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        gap: 0.5rem;
    }
    
    .feature-card {
        padding: 0.75rem;
        text-align: center;
    }
    
    .feature-card .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-title {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }
    
    .feature-text {
        font-size: 0.75rem;
        line-height: 1.4;
        overflow-wrap: break-word;
    }
    
    .trust-grid {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .trust-card {
        padding: 0.75rem;
    }
    
    .trust-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }
    
    .trust-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .trust-title {
        font-size: 0.8125rem;
    }
    
    .trust-text {
        font-size: 0.75rem;
        overflow-wrap: break-word;
    }
    
    .feature-card,
    .trust-card {
        min-width: 0;
    }
    
    .features-section,
    .why-choose-us {
        padding: 2rem 0;
    }
    
    /* How it works - très compact sur petit mobile */
    .step-icon,
    .step-connector {
        display: none !important;
    }
    
    .how-it-works {
        padding: 1rem 0;
    }
    
    .how-it-works-header {
        margin-bottom: 0.75rem;
    }
    
    .how-it-works-title {
        font-size: 1.125rem;
    }
    
    .how-it-works-subtitle {
        font-size: 0.75rem;
    }
    
    .steps-grid {
        gap: 0.5rem;
    }
    
    .step-card {
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8125rem;
    }
    
    .step-number-wrapper {
        margin-bottom: 0.375rem;
    }
    
    .step-title {
        font-size: 0.875rem;
    }
    
    .step-text {
        font-size: 0.6875rem;
        line-height: 1.4;
    }
    
    /* ============================================
       7. TRUST & REASSURANCE (Early Visibility)
       ============================================ */
    
    /* Trust bar - garder compact (défini plus haut dans ce media) */
    .pricing-trust-bar {
        margin-top: 1.25rem !important;
    }
    
    /* Contact section - Ensure visibility */
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    /* Footer - Compact but readable */
    footer {
        padding: 2.5rem 0 1.5rem;
        font-size: 0.9375rem; /* 15px */
    }
    
    .footer-links a {
        min-height: 44px; /* Touch-friendly */
        padding: 0.5rem 0;
        font-size: 0.9375rem;
    }
    
    /* ============================================
       BLOG ARTICLES - Mobile responsive
       ============================================ */
    
    .blog-post-container {
        padding: 1rem;
        box-sizing: border-box;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .blog-post-title {
        font-size: 1.5rem !important;
    }
    
    .blog-post-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .blog-post-content {
        font-size: 1rem !important;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .blog-post-content h2 {
        font-size: 1.375rem !important;
    }
    
    .blog-post-content h3 {
        font-size: 1.25rem !important;
    }
    
    .blog-post-content img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .blog-post-content ul,
    .blog-post-content ol {
        padding-left: 1.25rem;
    }
    
    .method-box,
    .tip-box,
    .warning-box {
        padding: 1rem !important;
    }
    
    .article-cta {
        padding: 1.25rem 1rem !important;
        margin: 2rem 0 !important;
    }
    
    .article-cta-content h3 {
        font-size: 1.25rem !important;
    }
    
    .blog-post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Tables - wrapper scroll horizontal */
    .table-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 1.5rem 0;
        max-width: 100%;
    }
    
    .table-scroll-wrapper .comparison-table {
        min-width: 400px;
        max-width: none;
    }
    
    .blog-post-content pre,
    .blog-post-content code,
    pre, code {
        max-width: 100%;
        overflow-x: auto;
    }
    
    /* ============================================
       8. ADDITIONAL MOBILE OPTIMIZATIONS
       ============================================ */
    
    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }
    
    /* Improve tap target spacing */
    a, button {
        -webkit-tap-highlight-color: rgba(var(--primary-blue-rgb), 0.2);
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Reduce animation on mobile for performance */
    .pricing-card-featured {
        animation: none; /* Disable glow animation on mobile */
    }
    
    /* Ensure images don't cause layout shift */
    img {
        height: auto;
        max-width: 100%;
    }
    
    /* Header - Sticky but compact */
    .header {
        padding: 0.75rem 0; /* Reduced padding */
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    /* Logo - Slightly smaller on mobile */
    .logo-container {
        max-width: 140px;
    }
    
    /* Final CTA section */
    .final-cta {
        padding: 2.5rem 0;
    }
    
    .final-cta-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .final-cta-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        line-height: 1.47059;
    }
    
    .final-cta-button {
        min-height: 52px;
        width: 100%;
        font-size: 1rem;
    }
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */
.legal-page {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f6f7fb 0%, #ffffff 100%);
    min-height: calc(100vh - 200px);
}

.legal-hero {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2.5rem 2.25rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.06) 0%, rgba(var(--primary-blue-rgb), 0.02) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(var(--primary-blue-rgb), 0.12);
    box-shadow: var(--shadow-md);
}

.legal-hero-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.legal-hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.47059;
}

.legal-updated {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.legal-section {
    background-color: var(--white);
    border-radius: calc(var(--border-radius) - 2px);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.75rem 2rem;
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.legal-section-number {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: var(--primary-blue);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.legal-section-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-list {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.legal-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: var(--primary-blue-dark);
}

/* Desktop: Better spacing and typography */
@media (min-width: 1025px) {
    .legal-page {
        padding: 6rem 0;
    }

    .legal-hero-title {
        font-size: 2rem;
    }

    .legal-section-title {
        font-size: 1.5rem;
    }

    .legal-content p,
    .legal-list li {
        font-size: 1.0625rem;
        line-height: 1.75;
    }
}

/* Mobile: tighter padding */
@media (max-width: 768px) {
    .legal-page {
        padding: 2rem 0 1rem;
        min-height: auto;
    }

    .legal-hero {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
        max-width: calc(100% - 2rem);
    }

    .legal-hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .legal-hero-subtitle {
        font-size: 0.9375rem;
    }

    .legal-updated {
        font-size: 0.8125rem;
    }

    .legal-content {
        padding: 0 1rem;
        gap: 1.25rem;
    }

    .legal-section {
        padding: 1.25rem 1rem;
        margin: 0;
    }

    .legal-section-header {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .legal-section-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .legal-section-title {
        font-size: 1.125rem;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .legal-content p,
    .legal-list li {
        font-size: 0.9375rem;
        line-height: 1.47059;
        word-wrap: break-word;
    }

    .legal-list {
        padding-left: 1rem;
        margin-top: 0.5rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (min-width: 768px) {
    .cookie-consent-banner {
        padding: 1.5rem;
    }
}

.cookie-consent-content {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-consent-content {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        padding: 1.75rem 2rem;
    }
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cookie-consent-message {
    font-size: 0.9375rem;
    line-height: 1.47059;
    color: var(--text-light);
    margin: 0;
}

.cookie-consent-link {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-consent-link:hover {
    color: var(--primary-blue-dark);
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cookie-consent-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.cookie-consent-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
    min-width: 100px;
}

.cookie-consent-btn-accept {
    background: var(--primary-blue);
    color: var(--white);
}

.cookie-consent-btn-accept:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--primary-blue-rgb), 0.3);
}

.cookie-consent-btn-decline {
    background: var(--gray-lighter);
    color: var(--text-dark);
}

.cookie-consent-btn-decline:hover {
    background: var(--gray-light);
    transform: translateY(-1px);
}

/* Legacy cookie-banner styles (keep for compatibility) */
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 99999;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 1rem 1.25rem;
    display: none;
    gap: 0.75rem;
}

.cookie-banner.show {
    display: flex;
    flex-direction: column;
}

.cookie-banner-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.cookie-banner-text {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.47059;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-banner a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-btn {
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-btn-primary {
    background: var(--primary-blue);
    color: #ffffff;
}

.cookie-btn-secondary {
    background: #f3f4f6;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .cookie-banner {
        left: 2rem;
        right: auto;
        max-width: 420px;
    }
}

/* Legal Pages Links Section */
.legal-pages-links {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.legal-pages-links h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.legal-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.legal-links-list li {
    margin: 0;
}

.legal-links-list a {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--gray-lighter);
    border-radius: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.legal-links-list a:hover {
    background: var(--light-blue-bg);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .legal-pages-links {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .legal-links-list {
        grid-template-columns: 1fr;
    }
}

/* Improved legal content max-width for readability */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.legal-content p {
    max-width: 75ch; /* Optimal reading width */
    margin-left: auto;
    margin-right: auto;
}

.legal-section {
    max-width: 100%;
}

/* ============================================
   COMPETITIONS SECTION - Animated Horizontal
   ============================================ */
.competitions {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    overflow: hidden;
    opacity: 1 !important; /* Ensure section is always visible */
    display: block !important;
}

.competitions::before {
    display: none;
}

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

/* Competitions Header */
.competitions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.competitions-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.competitions-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

/* Desktop: Larger text */
@media (min-width: 1024px) {
    .competitions-title {
        font-size: 2.5rem;
    }
    
    .competitions-subtitle {
        font-size: 1.25rem;
    }
}

/* Competitions Wrapper - Hide overflow */
/* Competitions Wrapper - Apple-style scrolling */
.competitions-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

/* Fade gradients removed per request */

.competitions-wrapper::-webkit-scrollbar {
    display: none;
}

/* Competitions Track - Apple-style smooth scrolling */
.competitions-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    width: fit-content;
    align-items: center;
    animation: scroll-competitions-apple 40s linear infinite;
    will-change: transform;
    /* Smooth rendering */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Pause animation on hover (desktop only) - Apple-style */
@media (min-width: 1024px) {
    .competitions-wrapper:hover .competitions-track {
        animation-play-state: paused;
        transition: transform 0.3s ease-out;
    }
}

/* Mobile: même mouvement animé qu'en desktop */
@media (max-width: 1023px) {
    .competitions-wrapper {
        overflow: hidden;
    }
    
    .competitions-track {
        gap: 1rem;
    }
}

/* Apple-style smooth scroll animation */
@keyframes scroll-competitions-apple {
    0% {
        transform: translateX(-50%) translateZ(0);
    }
    100% {
        transform: translateX(0) translateZ(0);
    }
}

/* Smooth acceleration/deceleration effect (optional) */
@media (prefers-reduced-motion: no-preference) {
    .competitions-track {
        animation-timing-function: linear;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .competitions-track {
        animation: none;
    }
    
    .competitions-wrapper {
        overflow-x: auto;
    }
}


/* Competition Card - No frame, just the logo */
.competition-card {
    flex: 0 0 auto;
    width: 160px;
    height: 160px;
    aspect-ratio: 1 / 1;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    backdrop-filter: none;
}

/* Desktop: Larger cards */
@media (min-width: 1024px) {
    .competition-card {
        width: 180px;
        height: 180px;
    }
}

/* Mobile: Smaller cards */
@media (max-width: 767px) {
    .competition-card {
        width: 140px;
        height: 140px;
        padding: 0;
    }
}

/* Hover effect (desktop only) */
@media (min-width: 1024px) {
    .competition-card:hover {
        transform: scale(1.05);
    }
}

/* Competition Logo - Full size without frame */
.competition-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1);
    transition: filter 0.3s ease;
    border-radius: 0;
    opacity: 1 !important; /* Ensure images are always visible */
    display: block;
}

.competition-card:hover .competition-logo {
    filter: brightness(1.1) contrast(1.05);
}

/* Mobile: Enable horizontal scrolling - Already handled above */

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .competition-card {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   SPORTS SHOWCASE SECTION - Large Visual Cards
   ============================================ */
.sports-showcase {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    overflow: hidden;
}

/* Subtle radial gradient overlay */
.sports-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(var(--primary-blue-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.sports-showcase .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Sports Showcase Header - centered in page */
.sports-showcase-header {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
}

.sports-showcase-title,
.sports-showcase-subtitle {
    text-align: center !important;
}

.sports-showcase-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sports-showcase-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
    line-height: 1.47059;
}

/* Desktop: Larger text */
@media (min-width: 1024px) {
    .sports-showcase-title {
        font-size: 3rem;
    }
    
    .sports-showcase-subtitle {
        font-size: 1.25rem;
    }
}

/* Sports Showcase Wrapper - Apple-style scrolling */
.sports-showcase-wrapper {
    position: relative;
    width: 100%;
    align-self: stretch;
    overflow: hidden;
    padding: 2rem 0;
}

/* Sports Showcase Track - Apple-style smooth scrolling */
.sports-showcase-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    width: fit-content;
    animation: scroll-sports-showcase-apple 53s linear infinite;
    will-change: transform;
    /* Smooth rendering */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Pause animation on hover (desktop only) - Apple-style */
@media (min-width: 1024px) {
    .sports-showcase-wrapper:hover .sports-showcase-track {
        animation-play-state: paused;
        transition: transform 0.3s ease-out;
    }
}

/* Mobile: même mouvement animé qu'en desktop */
@media (max-width: 1023px) {
    .sports-showcase-wrapper {
        overflow: hidden;
    }
    
    .sports-showcase-track {
        gap: 1rem;
    }
}

/* Apple-style smooth scroll animation */
@keyframes scroll-sports-showcase-apple {
    0% {
        transform: translateX(0) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

/* Smooth acceleration/deceleration effect (optional) */
@media (prefers-reduced-motion: no-preference) {
    .sports-showcase-track {
        animation-timing-function: linear;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .sports-showcase-track {
        animation: none;
    }
    
    .sports-showcase-wrapper {
        overflow-x: auto;
    }
}

/* Sports Card */
.sports-card {
    flex: 0 0 auto;
    width: 260px;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out backwards;
}

/* Desktop: Larger cards */
@media (min-width: 1024px) {
    .sports-card {
        width: 320px;
    }
}

/* Mobile: Smaller cards */
@media (max-width: 767px) {
    .sports-card {
        width: 240px;
    }
}

/* Staggered animation delay */
.sports-card:nth-child(1) { animation-delay: 0.1s; }
.sports-card:nth-child(2) { animation-delay: 0.2s; }
.sports-card:nth-child(3) { animation-delay: 0.3s; }
.sports-card:nth-child(4) { animation-delay: 0.4s; }
.sports-card:nth-child(5) { animation-delay: 0.5s; }
.sports-card:nth-child(6) { animation-delay: 0.6s; }

/* Sports Card Image Container */
.sports-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* Hover effect (desktop only) */
@media (min-width: 1024px) {
    .sports-card:hover .sports-card-image {
        transform: scale(1.04);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 40px rgba(var(--primary-blue-rgb), 0.3);
    }
}

/* Sports Card Background Image */
.sports-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* Sports Card Overlay - Dark gradient bottom fade */
.sports-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Sports Card Logo Overlay */
.sports-card-logo {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

/* Competition Logo Overlay */
.competition-logo-overlay {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

/* Desktop: Larger logo */
@media (min-width: 1024px) {
    .sports-card-logo {
        width: 90px;
        height: 90px;
        bottom: 2rem;
    }
}

/* Mobile: Smaller logo */
@media (max-width: 767px) {
    .sports-card-logo {
        width: 70px;
        height: 70px;
        bottom: 1.25rem;
    }
}

/* Sports Card Label */
.sports-card-label {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    letter-spacing: 0.02em;
}

/* Desktop: Larger label */
@media (min-width: 1024px) {
    .sports-card-label {
        font-size: 1.125rem;
        margin-top: 1.25rem;
    }
}

/* Mobile: Smaller label */
@media (max-width: 767px) {
    .sports-card-label {
        font-size: 0.9375rem;
        margin-top: 0.875rem;
    }
}

/* Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intersection Observer - Only animate when in viewport */
.sports-showcase.visible .sports-card {
    animation-play-state: running;
}

.sports-showcase:not(.visible) .sports-card {
    animation-play-state: paused;
    /* Force visibility even without .visible class */
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .sports-card {
        width: 280px;
    }
}

/* ============================================
   END MOBILE UX IMPROVEMENTS
   ============================================ */

/* ============================================
   PREMIUM ANIMATIONS - Apple.com Inspired
   ============================================ */

/* 1. Global Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 2. Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Stagger effect for child elements */
.scroll-reveal:nth-child(1) { transition-delay: 0ms; }
.scroll-reveal:nth-child(2) { transition-delay: 50ms; }
.scroll-reveal:nth-child(3) { transition-delay: 100ms; }
.scroll-reveal:nth-child(4) { transition-delay: 150ms; }
.scroll-reveal:nth-child(5) { transition-delay: 200ms; }
.scroll-reveal:nth-child(6) { transition-delay: 250ms; }

/* 3. Parallax Elements */
.parallax-element {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* 4. Typography Animations */
.animate-on-load {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.animate-on-load.animated {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Letter-by-letter animation for headings */
@keyframes letterReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 5. Premium Hover Interactions */
.premium-hover {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

@media (hover: hover) and (pointer: fine) {
    .premium-hover:hover {
        transform: scale(1.03);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12),
                    0 4px 8px rgba(0, 0, 0, 0.08);
    }
    
    .premium-hover:active {
        transform: scale(1.01);
    }
}

/* Button hover effects */
.btn-primary.premium-hover:hover,
.btn-secondary.premium-hover:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 16px rgba(var(--primary-blue-rgb), 0.25);
}

/* Card hover effects */
.pricing-card-premium.premium-hover:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.trust-card.premium-hover:hover {
    transform: translateY(-2px) scale(1.02);
}

.sports-card.premium-hover:hover {
    transform: translateY(-4px) scale(1.03);
}

/* 6. Hero Section Animations */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-image,
.hero-img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Hero content fade-in */
.hero-title,
.hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title.animated,
.hero-subtitle.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hero buttons stagger */
.hero-cta,
.hero .btn-primary {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta.animated,
.hero .btn-primary.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 7. Performance Optimizations */
@media (max-width: 767px) {
    .scroll-reveal,
    .animate-on-load {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .parallax-element {
        transform: none !important;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .animate-on-load,
    .premium-hover,
    .parallax-element {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}

/* 8. Smooth Page Transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.4s ease-in-out;
}

/* 9. Loading State */
.page-loading {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page-loaded {
    opacity: 1;
}

/* 10. Section Entrance Animations */
section {
    position: relative;
}

section:not(.hero) {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 11. Enhanced Focus States (Accessibility) */
.premium-hover:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
    transform: scale(1.02);
}

/* 12. Smooth Image Loading */
img {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

img.loaded {
    opacity: 1;
}

/* 13. Scroll Indicator Animation */
@keyframes scrollIndicator {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.6;
    }
}

.scroll-indicator {
    animation: scrollIndicator 2s ease-in-out infinite;
}

/* 14. Premium Card Entrance */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-entrance {
    animation: cardEntrance 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

/* 15. Text Reveal Animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-reveal {
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

/* ============================================
   PREMIUM ANIMATIONS - Apple.com Inspired
   ============================================ */

/* 1. Global Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 2. Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

/* Exclude competitions section from scroll-reveal */
.competitions.scroll-reveal,
.competitions.scroll-reveal.revealed {
    opacity: 1 !important;
    transform: none !important;
}

/* Ensure elements are visible if JavaScript fails or is disabled */
.no-js .scroll-reveal,
.scroll-reveal.no-animation {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* 3. Parallax Elements */
.parallax-element {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* 4. Typography Animations */
.animate-on-load {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

/* 5. Premium Hover Interactions */
.premium-hover {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

@media (hover: hover) and (pointer: fine) {
    .premium-hover:hover {
        transform: scale(1.03);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    }
    .btn-primary.premium-hover:hover, .btn-secondary.premium-hover:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 16px rgba(var(--primary-blue-rgb), 0.25);
    }
    .pricing-card-premium.premium-hover:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    }
    .sports-card.premium-hover:hover {
        transform: translateY(-4px) scale(1.03);
    }
}

/* 6. Mobile Optimizations */
@media (max-width: 767px) {
    .scroll-reveal, .animate-on-load {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .parallax-element { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal, .animate-on-load, .premium-hover, .parallax-element {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}

/* ============================================
   HERO IMAGE - Dernière règle, priorité max
   ============================================ */
section#accueil.hero .hero-bg {
    background-image: url('images/hero-panda.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Annuler le gradient blanc Legacy sur desktop - garder fond sombre pour l'image */
section#accueil.hero {
    background: transparent !important;
    background-color: transparent !important;
}

/* Hero content - texte blanc pour lisibilité sur l'image */
section#accueil.hero .hero-content,
section#accueil.hero .hero-title,
section#accueil.hero .hero-title-accent,
section#accueil.hero .hero-subtitle,
section#accueil.hero .hero-stat-number,
section#accueil.hero .hero-stat-label,
section#accueil.hero .hero-reassurance {
    color: var(--white) !important;
}

/* ============================================
   ACCESSIBILITÉ - Contraste & Focus (WCAG AA)
   ============================================ */

/* Focus visible global - outline visible au clavier uniquement */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Liens - skip-ink pour meilleure lisibilité */
a {
    text-decoration-skip-ink: auto;
}

/* Liens footer - contraste au survol/focus */
.footer-column-links a:hover,
.footer-column-links a:focus-visible {
    color: var(--primary-blue);
}

/* Placeholder - contraste WCAG AA */
::placeholder {
    color: var(--gray-dark);
    opacity: 0.85;
}

