/* =========================================
        🎨 DESIGN SYSTEM 2026 - VARIABLES
        =========================================
        🎨 DESIGN SYSTEM SOBRE & COHÉRENT 2026
        =========================================
        Palette INATEC Premium - Élégance professionnelle
        Gradients subtils, cohérence totale
        ========================================= */
    :root {
        /* 🎨 Couleurs principales INATEC */
        --primary: #00ffcc;
        --primary-light: #3d6dd6;
        --primary-dark: #093ba8;
        --secondary: #0856d6;

        /* 🎨 Gradients SUBTILS (pas kitsch) */
        --gradient-primary: linear-gradient(135deg, #0b45c3 0%, #1a56d6 100%);
        --gradient-hero-overlay: linear-gradient(135deg, rgba(11, 69, 195, 0.95) 0%, rgba(26, 86, 214, 0.95) 100%);
        --gradient-montant: linear-gradient(135deg, #e0f2ff 0%, #bae6ff 100%);  /* Bleu très clair sur bleu foncé */
        --gradient-success: linear-gradient(135deg, #d4f4dd 0%, #b8e7ce 100%);  /* Vert pastel */
        --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);

        /* 🎨 Couleurs accent */
        --cta-color: #FF6B35;
        --cta-hover: #e55a2a;
        --success: #22c55e;
        --success-light: #86efac;
        --montant-color: #00ffcc;  /* Bleu ciel pour montants */
        --montant-light: #00ffcc;

        /* 🎨 Neutrals (échelle complète) */
        --neutral-50: #fafbfc;
        --neutral-100: #f4f6f8;
        --neutral-200: #e5e9ef;
        --neutral-300: #d1d7e0;
        --neutral-400: #9ea8ba;
        --neutral-500: #0b45c3;
        --neutral-600: #515967;
        --neutral-700: #3a424f;
        --neutral-800: #1e293b;
        --neutral-900: #f0f4f8;

        --dark: var(--neutral-500);
        --gray: var(--neutral-500);
        --light-bg: var(--neutral-50);
        --white: #FFFFFF;

        /* 🎨 Ombres subtiles (cohérence) */
        --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
        --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
        --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.03);

        /* Typographie Premium 2026 */
        --font-heading: 'Anton', sans-serif;           /* Montants & gros titres */
        --font-subheading: 'Anton', sans-serif;  /* Sous-titres & CTA */
        --font-body: 'Helvetica Neue';  /* Corps de texte */
    }

   /* --- REGULAR --- */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/helvetica-neue/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 400; /* 400 = Normal */
    font-style: normal;
}

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        color: var(--dark);
        line-height: 1.65;
        overflow-x: hidden;
        background: var(--white);
        font-size: 17px;
        font-weight: 400;
    }

    /* =========================================
        ✨ ANIMATIONS GLOBALES
        ========================================= */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

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

    @keyframes shimmer {
        0% { background-position: -1000px 0; }
        100% { background-position: 1000px 0; }
    }

    /* Classe pour animations au scroll */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Délais d'animation en cascade */
    .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
    .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
    .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
    .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
    .animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }

    /* Container */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* =========================================
        📌 SECTION 1: BANDEAU URGENCE (Rouge)
        Loss Aversion + Scarcité
        ========================================= */
    .urgence-banner {
        background: linear-gradient(135deg, #f5576c 0%, #ff6b9d 100%);
        color: var(--white);
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 300;
        position: relative;
        overflow: hidden;
        animation: pulse-bg-gradient 3s ease-in-out infinite;
    }

    .urgence-banner::before {
        content: '⚠️';
        margin-right: 8px;
        font-size: 18px;
    }

    @keyframes pulse-bg-gradient {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.9; filter: brightness(1.1); }
    }

    /* =========================================
        📌 SECTION 2: HERO - HIÉRARCHIE VISUELLE
        Ordre: 5 000 € (120px) → CTA orange → Texte
        ========================================= */
    .hero {
        background: var(--neutral-800);
        color: var(--white);
        padding: 80px 20px 100px;
        position: relative;
        overflow: hidden;
        text-align: center;
        animation: fadeIn 0.8s ease-out;
    }

    /* Effets visuels TRÈS subtils (pas flashy) */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 50%, rgba(61, 109, 214, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 80% 80%, rgba(26, 86, 214, 0.08) 0%, transparent 60%);
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
    }

    /* 🎯 MONTANT 5 000 € - Typographie premium Sora */
    .hero-montant {
        font-family: var(--font-heading);
        font-size: 120px;
        color: var(--montant-light);
        line-height: 0.9;
        margin-bottom: 20px;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-shadow: 0 2px 12px rgba(125, 211, 252, 0.3);
        animation: subtle-glow 4s ease-in-out infinite, scaleIn 0.8s ease-out 0.2s both;
        cursor: default;
        user-select: none;
        text-transform: uppercase;
    }

    @keyframes subtle-glow {
        0%, 100% {
            text-shadow: 0 2px 12px rgba(125, 211, 252, 0.3);
        }
        50% {
            text-shadow: 0 4px 20px rgba(125, 211, 252, 0.5), 0 0 40px rgba(14, 165, 233, 0.2);
        }
    }

    /* Texte sous le montant */
    .hero-texte-etat {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 1.3;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .hero-texte-etat strong {
        color: var(--montant-color);
        text-transform: uppercase;
        font-size: 36px;
    }

    /* Sous-titre - Space Grotesk */
    .hero-subtitle {
        font-family: var(--font-subheading);
        font-size: 22px;
        opacity: 0.95;
        margin-bottom: 40px;
        font-weight: 500;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    /* 🎯 CTA PRINCIPAL - Typographie Space Grotesk */
    .cta-hero {
        display: inline-block;
        background: var(--secondary);
        color: var(--white);
        font-family: var(--font-subheading);
        font-size: 24px;
        font-weight: 700;
        padding: 22px 60px;
        border-radius: 12px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: var(--shadow-lg);
        transition: all 0.3s ease;
        letter-spacing: 0.01em;
        animation: fadeInUp 0.8s ease-out 0.8s both;
        position: relative;
    }
    }

    /* Effet shimmer sur hover */
    .cta-hero::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.5s;
    }

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

    .cta-hero::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .cta-hero:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-xl);
        background: var(--primary-light);
    }

    .fab:hover {
        color: #d4f4dd;
    }

    .cta-hero-text {
        position: relative;
        z-index: 1;
        font-weight: 300;
        letter-spacing: 0.02em;
    }

    /* Micro-copy sous le CTA (friction reducer) */
    .hero-microcopy {
        margin-top: 20px;
        font-size: 15px;
        opacity: 0.8;
        font-weight: 400;
    }

    /* =========================================
        📌 SECTION 3: ANCRAGE TRIPLE VISUEL
        Fond avec gradient pour voir le glass-morphism
        ========================================= */
    .ancrage-section {
        background: linear-gradient(180deg, #f0f4f8 0%, #dce4ec 100%);
        padding: 100px 20px;
        position: relative;
    }

    /* Pattern subtil pour accentuer le glass-morphism */
    .ancrage-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(11, 69, 195, 0.06) 0%, transparent 50%);
        pointer-events: none;
    }

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

    .ancrage-card {
        text-align: center;
        padding: 50px 30px;
        border-radius: 20px;
        transition: all 0.3s ease;
        position: relative;
        cursor: default;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    }

    .ancrage-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    /* Carte 1: Coût formation (barré) - Glass-morphism */
    .ancrage-card.cout {
        background: rgba(244, 246, 248, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 2px dashed rgba(209, 215, 224, 0.8);
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .ancrage-card.cout .ancrage-montant {
        color: var(--neutral-500);
        opacity: 0.7;
    }

    /* Carte 2: Coût réel (0 €) - Glass-morphism */
    .ancrage-card.zero {
        background: rgba(220, 252, 231, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 2px solid rgba(34, 197, 94, 0.4);
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .ancrage-card.zero .ancrage-montant {
        color: var(--success);
    }

    /* Carte 3: Aide État (+5 000 €) - Glass-morphism premium */
    .ancrage-card.aide {
        background: #0b45c3;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 2px solid rgba(11, 69, 195, 0.4);
        box-shadow: 0 8px 32px 0 rgba(11, 69, 195, 0.15);
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    .ancrage-card.aide .ancrage-montant {
        color: var(--primary);
        font-size: 72px;
    }

    .ancrage-card.aide::after {
        content: '✅';
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 32px;
        animation: float 3s ease-in-out infinite;
    }

    .ancrage-card.aide::after {
        content: '✅';
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 32px;
        animation: float 3s ease-in-out infinite;
    }

    .ancrage-montant {
        font-family: var(--font-heading);
        font-size: 64px;
        font-weight: 500;
        line-height: 0.9;
        margin-bottom: 15px;
        letter-spacing: 0.02em;
        transition: all 0.3s ease;
    }

    .ancrage-card:hover .ancrage-montant {
        transform: scale(1.05);
    }

    .ancrage-label {
        font-family: var(--font-subheading);
        font-size: 18px;
        font-weight: 400;
        color: var(--neutral-700);
        margin-bottom: 8px;
        letter-spacing: 0.02em;
    }

    .ancrage-label-inatec {
        font-family: var(--font-subheading);
        font-size: 18px;
        font-weight: 400;
        color: var(--primary-dark);
        margin-bottom: 8px;
        letter-spacing: 0.02em;
        background-color: #00ffcc;
        border-radius: .2em;
    }

    .ancrage-desc {
        font-size: 15px;
        color: var(--gray);
        line-height: 1.4;
    }

    /* =========================================
        📌 SECTION 4: LOGOS AUTORITÉ
        Ministère Travail, France Compétences, Qualiopi
        ========================================= */
    .autorite-section {
        background: var(--light-bg);
        padding: 40px 20px;
        text-align: center;
    }

    .autorite-title {
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--gray);
        margin-bottom: 30px;
        font-weight: 600;
    }

    .logos-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        flex-wrap: wrap;
    }

    .logo-item {
        opacity: 0.85;
        transition: all 0.3s ease;
        filter: grayscale(20%);
    }

    .logo-item:hover {
        opacity: 1;
        filter: grayscale(0%);
        transform: scale(1.05);
    }

    .logo-item img {
        height: 50px;
        width: auto;
        object-fit: contain;
    }

    /* =========================================
        📌 SECTION CONFIANCE: ILS NOUS FONT CONFIANCE
        Logos défilants (preuve sociale)
        ========================================= */
    .confiance-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        padding: 80px 20px;
        text-align: center;
        overflow: hidden;
    }

    .confiance-title {
        font-family: var(--font-heading);
        font-size: 36px;
        font-weight: 200;
        color: var(--dark);
        margin-bottom: 12px;
        letter-spacing: 0.02em;
        text-transform: uppercase;
    }

    .confiance-subtitle {
        font-size: 18px;
        color: var(--gray);
        margin-bottom: 50px;
    }

    .logos-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .logos-track {
        display: flex;
        gap: 60px;
        animation: scroll-logos 30s linear infinite;
        width: fit-content;
    }

    .logo-confiance {
        font-family: var(--font-heading);
        font-size: 28px;
        font-weight: 700;
        color: var(--secondary);
        opacity: 0.7;
        transition: all 0.3s ease;
        white-space: nowrap;
        padding: 20px 30px;
        /* background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
        border-radius: 12px;
        border: 1px solid rgba(11, 69, 195, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
    }

    .logo-confiance:hover {
        opacity: 1;
        transform: scale(1.05);
        /* border-color: var(--primary-light); */
    }

    .logo-confiance img {
    height: 50px;           /* Hauteur uniforme pour tous les logos */
    width: auto;            /* Garde le ratio de l'image */
    margin-bottom: 12px;    /* Espace entre l'image et le nom */
    filter: grayscale(100%); /* Optionnel : logos en noir et blanc */
    transition: filter 0.3s;
    }

    .logo-confiance:hover img {
        filter: grayscale(0%);  /* Repasse en couleur au survol */
    }

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

    /* Pause animation on hover */
    .logos-slider:hover .logos-track {
        animation-play-state: paused;
    }

    /* =========================================
        📌 SECTION 5: SIMULATEUR PROGRESSIF
        Zeigarnik Effect - Barre de progression
        ========================================= */
    /* =========================================
        📌 SECTION 4: SIMULATEUR
        Fond avec gradient pour voir le glass-morphism
        ========================================= */
    .simulateur-section {
        background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%);
        padding: 120px 20px;
        position: relative;
    }

    /* Pattern subtil */
    .simulateur-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            radial-gradient(circle at 30% 20%, rgba(11, 69, 195, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(61, 109, 214, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

    .simulateur-container {
        max-width: 700px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 24px;
        padding: 50px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }

    .simulateur-title {
        font-family: var(--font-heading);
        font-size: 36px;
        color: var(--dark);
        text-align: center;
        margin-bottom: 12px;
        line-height: 1.2;
        letter-spacing: 0.02em;
        font-weight: 500;
        text-transform: uppercase;
    }

    .simulateur-subtitle {
        text-align: center;
        color: var(--gray);
        font-size: 16px;
        margin-bottom: 50px;
    }

    /* Barre de progression (Zeigarnik) */
    .progress-bar-container {
        margin-bottom: 40px;
    }

    .progress-steps {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        position: relative;
    }

    .progress-steps::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        height: 2px;
        background: #e5e7eb;
        z-index: 0;
    }

    .progress-line {
        position: absolute;
        top: 15px;
        left: 0;
        height: 2px;
        background: var(--montant-color);
        transition: width 0.4s ease;
        z-index: 1;
    }

    .progress-step {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--white);
        border: 2px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
        color: var(--gray);
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }

    .progress-step.active {
        background: var(--montant-color);
        border-color: var(--montant-color);
        color: var(--dark);
        transform: scale(1.2);
    }

    .progress-step.completed {
        background: var(--montant-color);
        border-color: var(--montant-color);
        color: var(--dark);
    }

    .progress-labels {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: var(--gray);
    }

    /* Formulaire étapes */
    .form-step {
        display: none;
    }

    .form-step.active {
        display: block;
        animation: fadeInUp 0.4s ease;
    }

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

    .form-group {
        margin-bottom: 25px;
    }

    .form-label {
        display: block;
        font-weight: 600;
        margin-bottom: 12px;
        color: var(--dark);
        font-size: 17px;
    }

    .form-select,
    .form-input {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-family: var(--font-body);
        transition: all 0.3s ease;
        background: var(--white);
    }

    .form-select:focus,
    .form-input:focus {
        outline: none;
        border-color: var(--montant-color);
        box-shadow: 0 0 0 4px rgba(0, 255, 204, 0.1);
    }

    .form-buttons {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

    .btn-retour,
    .btn-suivant {
        flex: 1;
        padding: 16px 32px;
        font-size: 17px;
        font-weight: 600;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: var(--font-body);
    }

    .btn-retour {
        background: var(--light-bg);
        color: var(--dark);
    }

    .btn-retour:hover {
        background: #e5e7eb;
    }

    .btn-suivant {
        background: var(--primary-dark);
        color: var(--white);
        box-shadow: var(--shadow-md);
    }

    .btn-suivant:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        background: var(--primary-light);
    }

    /* Résultat simulation - Glass-morphism premium */
    .resultat-box {
        display: none;
        background: rgba(219, 234, 254, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 2px solid rgba(11, 69, 195, 0.3);
        border-radius: 20px;
        padding: 40px;
        margin-top: 30px;
        text-align: center;
        box-shadow: 0 8px 32px 0 rgba(11, 69, 195, 0.15);
        animation: fadeInScale 0.5s ease;
    }

    .resultat-box.show {
        display: block;
    }

    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .resultat-montant {
        font-family: var(--font-heading);
        font-size: 72px;
        color: var(--success);
        line-height: 0.9;
        margin-bottom: 15px;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
    }

    .resultat-montant-devise {
        font-family: var(--font-heading);
        font-size: 84px;
        color: var(--success);
        line-height: 1;
        margin: 20px 0;
        text-shadow: 0 4px 20px rgba(0, 255, 204, 0.2);
    }

    .resultat-label {
        font-size: 20px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 25px;
    }

    .resultat-details {
        text-align: left;
        background: var(--white);
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 25px;
    }

    .resultat-line {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #e5e7eb;
        font-size: 15px;
    }

    .resultat-line:last-child {
        border-bottom: none;
        font-weight: 700;
        font-size: 17px;
        color: var(--montant-color);
    }

    .resultat-line-label {
        color: var(--gray);
    }

    .resultat-line-value {
        font-weight: 600;
        color: var(--dark);
    }

    .resultat-cta {
        display: inline-block;
        background: var(--cta-color);
        color: var(--white);
        padding: 18px 50px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 18px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    }

    .resultat-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }

    /* =========================================
        📌 SECTION : FORMATIONS BEST SELLER IA
        Cards attractives avec toutes les infos
        ========================================= */
    .formations-section {
        background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        padding: 120px 20px;
        position: relative;
    }

    .formations-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 60px auto 0;
    }

    .formation-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 24px;
        padding: 40px 35px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
        position: relative;
        overflow: hidden;
    }

    .formation-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--gradient-primary);
    }

    .formation-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.15);
        border-color: rgba(11, 69, 195, 0.3);
    }

    .formation-badge {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
    }

    .formation-title {
        font-family: var(--font-subheading);
        font-size: 26px;
        color: var(--neutral-800);
        margin-bottom: 8px;
        line-height: 1.2;
        font-weight: 300;
        letter-spacing: 0.02em;
    }

    .formation-niveau {
        font-family: var(--font-subheading);
        font-size: 15px;
        color: var(--primary-dark);
        font-weight: 200;
        margin-bottom: 25px;
        letter-spacing: 0.02em;
    }

    .formation-certif {
        background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        border-left: 3px solid var(--success);
        padding: 12px 16px;
        border-radius: 8px;
        margin-bottom: 25px;
    }

    .formation-certif-label {
        font-size: 12px;
        font-weight: 300;
        color: var(--success);
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .formation-certif-name {
        font-size: 14px;
        font-weight: 300;
        color: var(--dark);
        line-height: 1.4;
    }

    .formation-badge-info {
        display: inline-block;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        color: var(--primary-dark);
        font-size: 12px;
        font-weight: 400;
        padding: 6px 12px;
        border-radius: 6px;
        margin-top: 10px;
        border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .formation-infos {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }

    .formation-info {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
    }

    .formation-info-icon {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 16px;
        flex-shrink: 0;
    }

    .formation-info-text {
        color: var(--dark);
        line-height: 1.4;
    }

    .formation-info-text strong {
        font-weight: 600;
        color: var(--neutral-500);
    }

    .formation-cta {
        display: block;
        width: 100%;
        text-align: center;
        background: var(--neutral-500);
        color: white;
        padding: 14px 28px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        margin-top: 25px;
        border: none;
        cursor: pointer;
        font-family: var(--font-body);
    }

    .formation-cta:hover {
        background: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    /* =========================================
        📌 SECTION 6: BUSINESS CASE RÉEL
        119 000 € pour 10 collaborateurs
        ========================================= */
    .business-case-section {
        background: var(--light-bg);
        padding: 120px 20px;
    }

    .business-case-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .section-title {
        font-family: var(--font-heading);
        font-size: 42px;
        text-align: center;
        color: var(--dark);
        margin-bottom: 15px;
        line-height: 1.1;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .section-subtitle {
        font-family: var(--font-subheading);
        text-align: center;
        font-size: 20px;
        color: var(--gray);
        margin-bottom: 50px;
        font-weight: 300;
    }

    .business-case-card {
        background: var(--white);
        border-radius: 24px;
        padding: 50px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }

    .case-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 2px solid #e5e7eb;
    }

    .case-titre {
        font-family: var(--font-subheading);
        font-size: 24px;
        font-weight: 300;
        color: var(--dark);
        margin-bottom: 12px;
    }

    .case-contexte {
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 16px;
        color: var(--gray);
    }

    .case-montant-total {
        font-family: var(--font-heading);
        font-size: 84px;
        color: var(--neutral-500);
        line-height: 1;
        margin: 20px 0;
        text-shadow: 0 4px 20px rgba(0, 255, 204, 0.2);
    }

    .case-montant-total-devise {
        font-family: var(--font-heading);
        font-size: 84px;
        color: var(--neutral-500);
        line-height: 1;
        margin: 20px 0;
        text-shadow: 0 4px 20px rgba(0, 255, 204, 0.2);
    }

    .case-label-total {
        font-size: 22px;
        color: var(--dark);
        font-weight: 600;
    }

    .case-details-table {
        margin-top: 40px;
    }

    .case-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid #e5e7eb;
        font-size: 17px;
    }

    .case-row:last-child {
        border-bottom: none;
    }

    .case-row-label {
        color: var(--dark);
        font-weight: 500;
    }

    .case-row-value {
        font-weight: 700;
        font-size: 20px;
    }

    .case-row-value.positive {
        color: var(--neutral-800);
    }

    .case-row-value.highlight {
        color: var(--neutral-500);
        font-size: 24px;
    }

    .case-footer {
        margin-top: 30px;
        padding: 30px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 16px;
    }

    /* =========================================
        📌 CTA ALTERNATIFS
        ========================================= */
    .btn-action {
        transition: all 0.3s ease;
    }

    .btn-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
        background: var(--primary) !important;
        color: white !important;
    }

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

    /* Style d'impression */
    @media print {
        .resultat-actions,
        .resultat-optin,
        .resultat-cta,
        .urgence-banner,
        .hero-cta,
        footer,
        nav {
            display: none !important;
        }

        .resultat-box {
            box-shadow: none !important;
            border: 2px solid #000;
        }
    }

    /* =========================================
        ✨ MICRO-INTERACTIONS FORMULAIRES
        ========================================= */
    input[type="number"],
    input[type="email"],
    select {
        transition: all 0.3s ease;
    }

    input[type="number"]:focus,
    input[type="email"]:focus,
    select:focus {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(11, 69, 195, 0.2);
        border-color: var(--primary);
        outline: none;
    }

    input[type="number"]:hover,
    input[type="email"]:hover,
    select:hover {
        border-color: var(--primary);
    }

    /* Animation boutons */
    .btn-suivant,
    .btn-retour {
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-suivant:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 20px #00ffcc;
    }

    .btn-retour:hover {
        transform: translateX(-5px);
    }

    .btn-suivant:active,
    .btn-retour:active {
        transform: scale(0.95);
    }

    /* Animation progress bar */
    #progressLine {
        transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .progress-step {
        transition: all 0.4s ease;
    }

    .progress-step.active {
        animation: pulse 1s ease-in-out infinite;
    }

    .progress-step.completed {
        animation: scaleIn 0.3s ease-out;
    }

    /* Responsive CTA alternatifs */
    @media (max-width: 768px) {
        .resultat-actions > div {
            flex-direction: column;
        }

        .btn-action {
            width: 100%;
            min-width: auto !important;
        }
    }

    /* =========================================
        📌 FAQ
        ========================================= */
    .faq-section {
        text-align: center;
        padding-top: 30px;
        border-top: 2px solid #e5e7eb;
    }

    .case-footer-text {
        font-size: 15px;
        color: var(--gray);
        font-style: italic;
    }

    /* =========================================
        📌 SECTION 7: FAQ + CTA FINAL
        Max 7 questions (Cognitive Load)
        ========================================= */
    /* =========================================
        📌 SECTION 7: FAQ
        Fond avec gradient pour voir le glass-morphism
        ========================================= */
    .faq-section {
        background: linear-gradient(180deg, #f8fafc 0%, #e5e9ef 100%);
        padding: 120px 20px;
        position: relative;
    }

    /* Pattern subtil */
    .faq-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(11, 69, 195, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

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

    .faq-item {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(229, 233, 239, 0.5);
        border-radius: 16px;
        margin-bottom: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.05);
    }

    .faq-item:hover {
        border-color: rgba(61, 109, 214, 0.4);
        box-shadow: 0 8px 24px 0 rgba(31, 38, 135, 0.1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .faq-question {
        padding: 25px 30px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--font-subheading);
        font-weight: 300;
        font-size: 18px;
        color: var(--dark);
        transition: all 0.3s ease;
        letter-spacing: 0.02em;
    }

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

    .faq-icon {
        font-size: 20px;
        color: var(--neutral-500);
        transition: transform 0.3s ease;
    }

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

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 30px;
        color: var(--gray);
        font-size: 16px;
        line-height: 1.7;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 30px 25px;
    }

    /* CTA Final */
    .cta-final-section {
        background: var(--neutral-800);
        padding: 80px 20px;
        text-align: center;
        color: var(--white);
    }

    .cta-final-title {
        font-family: var(--font-heading);
        font-size: 48px;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: 500;
        letter-spacing: 0.02em;
    }

    .cta-final-subtitle {
        font-size: 22px;
        margin-bottom: 40px;
        opacity: 0.95;
    }

    .cta-final-button {
        display: inline-block;
        background: var(--neutral-500);
        color: var(--white);
        padding: 24px 70px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        font-size: 24px;
        box-shadow: 0 8px 24px #00ffcc;
        transition: all 0.3s ease;
        animation: heartbeat-cta 2s ease-in-out infinite;
        border: none;
        cursor: pointer;
        font-family: var(--font-subheading);
        letter-spacing: 0.05em;
    }

    .cta-final-button:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 32px #00ffcc;
        animation: none;
    }

    .cta-final-microcopy {
        margin-top: 25px;
        font-size: 15px;
        opacity: 0.85;
    }

    .cta-final-contact {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .contact-links {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .contact-link {
        color: var(--white);
        text-decoration: none;
        font-size: 17px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .contact-link:hover {
        color: var(--montant-color);
        transform: translateY(-2px);
    }

    /* =========================================
        📌 BOUTON TÉLÉPHONE STICKY
        ========================================= */
    .sticky-phone {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 65px;
        height: 65px;
        background: var(--success);
        border-radius: 50%;
        box-shadow: 0 5px 8px var(--montant-color);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateY(100px);
        animation: slideUpFade 0.5s ease-out 3s forwards;
        text-decoration: none;
    }

    .sticky-phone:hover {
        transform: scale(1.1) translateY(0);
        box-shadow: 0 8px 10px var(--montant-light);
        background: var(--success-light);
    }

    .sticky-phone:active {
        transform: scale(0.95);
    }

    .sticky-phone i {
        font-size: 28px;
        color: white;
    }

    .sticky-phone::before {
        content: '01 89 71 50 52';
        position: absolute;
        right: 75px;
        background: var(--dark);
        color: white;
        padding: 12px 20px;
        border-radius: 25px;
        white-space: nowrap;
        font-size: 15px;
        font-weight: 600;
        opacity: 0;
        transform: translateX(10px);
        transition: all 0.3s ease;
        pointer-events: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .sticky-phone:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

    @keyframes slideUpFade {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive mobile */
    @media (max-width: 768px) {
        .sticky-phone {
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
        }

        .sticky-phone i {
            font-size: 24px;
        }

        .sticky-phone::before {
            display: none; /* Masquer le tooltip sur mobile */
        }
    }

    /* =========================================
        📌 MODAL FORMULAIRE EXPERT
        ========================================= */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        z-index: 10000;
        display: none;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;
    }

    .modal-overlay.active {
        display: flex;
    }

    .modal-content {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        max-width: 650px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 24px;
        padding: 50px 40px;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 1px rgba(255, 255, 255, 0.5) inset;
        animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

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

    .modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #f5f5f5;
        border: none;
        font-size: 28px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 300;
        color: #666;
    }

    .modal-close:hover {
        background: #093ba8;
        color: #00ffcc;
        transform: rotate(90deg);
    }

    .modal-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .modal-title {
        font-family: var(--font-heading);
        font-size: 32px;
        color: var(--dark);
        margin-bottom: 10px;
    }

    .modal-subtitle {
        font-size: 18px;
        color: var(--gray);
        line-height: 1.5;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .form-label {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 8px;
    }

    .form-label .required {
        color: #ff4136;
        margin-left: 3px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 16px;
        font-family: var(--font-body);
        transition: all 0.3s ease;
        background: white;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
        transform: scale(1.01);
    }

    .form-textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-consent {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin: 25px 0;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 12px;
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    .form-consent input[type="checkbox"] {
        margin-top: 3px;
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

    .cta-expert-submit {
        width: 100%;
        background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
        color: white;
        padding: 20px 40px;
        border: none;
        border-radius: 50px;
        font-size: 20px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .cta-expert-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(0, 102, 204, 0.5);
        background: linear-gradient(135deg, #004999 0%, #003366 100%);
    }

    .cta-expert-submit:disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .form-reassurance {
        margin-top: 25px;
        padding: 20px;
        background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
        border-radius: 12px;
        border-left: 5px solid #4caf50;
    }

    .form-reassurance-title {
        font-size: 16px;
        font-weight: 700;
        color: #2e7d32;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .form-reassurance-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .form-reassurance-list li {
        font-size: 14px;
        color: #2e7d32;
        padding: 5px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .form-reassurance-list li::before {
        content: "✓";
        font-weight: 700;
        color: #4caf50;
    }

    .cta-expert-trigger {
        background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
        color: white;
        padding: 18px 40px;
        border: none;
        border-radius: 50px;
        font-size: 19px;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        margin-top: 15px;
    }

    .cta-expert-trigger:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(0, 102, 204, 0.5);
        background: linear-gradient(135deg, #004999 0%, #003366 100%);
    }

    /* Responsive modal */
    @media (max-width: 768px) {
        .modal-content {
            width: 95%;
            padding: 40px 25px;
            max-height: 95vh;
        }

        .modal-title {
            font-size: 26px;
        }

        .modal-subtitle {
            font-size: 16px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .cta-expert-submit {
            font-size: 18px;
            padding: 18px 35px;
        }
    }

    /* =========================================
        📌 FOOTER
        ========================================= */
    /* =========================================
        FOOTER - Cohérent avec le design sobre
        ========================================= */
    .footer {
        background: var(--neutral-50);
        color: var(--dark);
        padding: 80px 20px 30px;
        border-top: 1px solid var(--neutral-200);
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section h3 {
        font-family: var(--font-heading);
        font-size: 18px;
        margin-bottom: 20px;
        color: var(--primary-dark);
        font-weight: 400;
        letter-spacing: 0.02em;
    }

    .footer-section p,
    .footer-section a {
        font-size: 15px;
        line-height: 1.8;
        color: var(--gray);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-section a:hover {
        color: var(--primary-light);
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 12px;
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: var(--white);
        border: 1px solid var(--neutral-200);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray);
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--neutral-100);
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 30px;
        margin-top: 40px;
        border-top: 1px solid var(--neutral-200);
        text-align: center;
        font-size: 13px;
        color: var(--gray);
    }

    /* =========================================
        📱 RESPONSIVE - Mobile First
        Cognitive Load: Simplifier sur mobile
        ========================================= */
    @media (max-width: 768px) {
        /* Hero */
        .hero {
            padding: 60px 15px 80px;
        }

        .hero-montant {
            font-size: 72px;
        }

        .hero-texte-etat {
            font-size: 22px;
        }

        .hero-texte-etat strong {
            font-size: 24px;
        }

        .hero-subtitle {
            font-size: 17px;
        }

        .cta-hero {
            font-size: 20px;
            padding: 18px 40px;
        }

        /* Ancrage */
        .ancrage-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .ancrage-montant {
            font-size: 48px;
        }

        .ancrage-card.aide .ancrage-montant {
            font-size: 56px;
        }

        /* Simulateur */
        .simulateur-container {
            padding: 30px 20px;
        }

        .simulateur-title {
            font-size: 28px;
        }

        .form-buttons {
            flex-direction: column;
        }

        /* Business case */
        .business-case-card {
            padding: 30px 20px;
        }

        .case-montant-total {
            font-size: 56px;
        }

        .case-montant-total-devise {
        font-size: 56px;
        }

        .section-title {
            font-size: 32px;
        }

        /* FAQ */
        .faq-question {
            font-size: 16px;
            padding: 20px;
        }

        .faq-answer {
            font-size: 15px;
        }

        /* CTA Final */
        .cta-final-title {
            font-size: 32px;
        }

        .cta-final-subtitle {
            font-size: 18px;
        }

        .cta-final-button {
            font-size: 20px;
            padding: 20px 50px;
        }

        /* Footer */
        .footer-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }
