* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            color: #1B3B5F;
            line-height: 1.7;
            overflow-x: hidden;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 60px 80px;
            position: relative;
            overflow: hidden;
            
            /* Image de background avec overlay */
            background-image: 
                linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.90) 100%),
                url('../IMG/formateur_enlignefreepik.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(184, 120, 84, 0.05), transparent 70%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

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

        .hero-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: #B87854;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 30px;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 30px;
            color: #1B3B5F;
        }

        .hero-highlight {
            color: #B87854;
            position: relative;
            display: inline-block;
        }

        .hero-highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(184, 120, 84, 0.15);
            z-index: -1;
        }

        .hero p {
            font-size: 20px;
            line-height: 1.7;
            color: #4A5568;
            margin-bottom: 50px;
            max-width: 650px;
        }

        .hero-cta {
            display: inline-block;
            background: #1B3B5F;
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            margin-right: 15px;
        }

        .hero-cta:hover {
            background: #2d5280;
            transform: translateX(5px);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .hero-stat {
            text-align: center;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(27, 59, 95, 0.03);
        }

        .hero-stat-number {
            display: block;
            font-size: 36px;
            font-weight: 700;
            color: #B87854;
            margin-bottom: 8px;
        }

        .hero-stat-label {
            font-size: 13px;
            color: #4A5568;
        }

        .section {
            padding: 120px 60px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-label-createur {
            font-size: 13px;
            font-weight: 600;
            color: #B87854;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .section-label-createur.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title-createur {
            font-size: 48px;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 25px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.1s;
        }

        .section-title-createur.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-intro-createur {
            font-size: 19px;
            color: #4A5568;
            max-width: 700px;
            margin-bottom: 70px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.2s;
        }

        .section-intro-createur.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .grid-createur {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
        }

        .card-createur {
            background: white;
            padding: 45px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 10px 30px rgba(27, 59, 95, 0.03);
        }

        .card-createur.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .card-createur:nth-child(1) { transition-delay: 0.1s; }
        .card-createur:nth-child(2) { transition-delay: 0.2s; }
        .card-createur:nth-child(3) { transition-delay: 0.3s; }

        .card-createur:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(27, 59, 95, 0.08);
        }

        .card-header-createur {
            margin-bottom: 30px;
        }

        .card-icon-createur {
            width: 60px;
            height: 60px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .card-createur:hover .card-icon-createur {
            background: #1B3B5F;
        }

        .card-icon-createur::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 15px;
            height: 15px;
            background: #B87854;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .card-createur:hover .card-icon-createur::after {
            opacity: 1;
        }

        .card-title-createur {
            font-size: 24px;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .card-createur:hover .card-title-createur {
            color: #B87854;
        }

        .card-content-createur {
            font-size: 16px;
            color: #4A5568;
            line-height: 1.8;
        }

        .card-content-createur p {
            margin-bottom: 18px;
            position: relative;
            padding-left: 20px;
        }

        .card-content-createur p::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #B87854;
            font-weight: 700;
        }

        .card-content-createur strong {
            color: #1B3B5F;
            font-weight: 600;
        }

        .accent-section {
            background: linear-gradient(135deg, white 0%, #f7f8fa 100%);
            color: #1B3B5F;
            padding: 100px 60px;
            margin: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .accent-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(184, 120, 84, 0.1), transparent 70%);
            border-radius: 50%;
        }

        .accent-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .accent-section h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #1B3B5F;
        }

        .accent-section p {
            font-size: 19px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.7;
        }

        .accent-cta {
            display: inline-block;
            background: #B87854;
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
        }

        .accent-cta:hover {
            background: #a36848;
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .hero {
                background-attachment: scroll;
                background-position: center center;
                padding: 100px 20px 60px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .section {
                padding: 80px 20px;
            }

            .section-title-createur {
                font-size: 36px;
            }

            .grid {
                grid-template-columns: 1fr;
            }
        }
/* ========== RESPONSIVE MOBILE CRÉATEURS DE CONTENU ========== */

/* Tablettes (768px - 1024px) */
@media (max-width: 1024px) {
    /* Hero */
    .hero {
        padding: 100px 40px 60px;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-cta {
        padding: 16px 32px;
        font-size: 15px;
        margin-right: 10px;
    }

    /* Hero Stats */
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 60px;
    }

    .hero-stat-number {
        font-size: 40px;
    }

    .hero-stat-label {
        font-size: 13px;
    }

    /* Sections */
    .section {
        padding: 80px 40px;
    }

    .section-title-createur {
        font-size: 40px;
    }

    .section-intro-createur {
        font-size: 17px;
        margin-bottom: 50px;
    }

    /* Grid - 2 colonnes */
    .grid-createur {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* Mobile (481px - 767px) */
@media (max-width: 767px) {
    /* Hero */
    .hero {
        padding: 80px 24px 50px;
        min-height: auto;
        padding-top: 140px; /* Compenser le header mobile */
    }

    .hero::before {
        width: 100%;
        opacity: 0.5;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero-highlight::after {
        height: 6px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 35px;
        max-width: 100%;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 14px;
        margin-right: 0;
        margin-bottom: 12px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero-cta:last-of-type {
        margin-bottom: 35px;
    }

    /* Hero Stats - En colonne sur mobile */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
        padding: 30px 20px;
    }

    .hero-stat {
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 12px;
    }

    .hero-stat-number {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .hero-stat-label {
        font-size: 13px;
    }

    /* Sections */
    .section {
        padding: 60px 24px;
    }

    .section-label-createur {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .section-title-createur {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .section-intro-createur {
        font-size: 16px;
        margin-bottom: 40px;
        max-width: 100%;
    }

    /* Grid - 1 colonne */
    .grid-createur {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Cards Créateur */
    .card-createur {
        padding: 30px 24px;
    }

    .card-icon-createur {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .card-icon-createur::after {
        width: 12px;
        height: 12px;
        bottom: -4px;
        right: -4px;
    }

    .card-title-createur {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .card-content-createur {
        font-size: 15px;
    }

    .card-content-createur p {
        margin-bottom: 15px;
        padding-left: 18px;
    }

    /* Accent Section */
    .accent-section {
        padding: 60px 24px;
        margin: 60px 0;
    }

    .accent-section::before {
        display: none;
    }

    .accent-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .accent-section p {
        font-size: 16px;
        margin-bottom: 35px;
        max-width: 100%;
    }

    .accent-cta {
        padding: 16px 32px;
        font-size: 15px;
        width: 100%;
        display: block;
        text-align: center;
    }
}

/* Petits mobiles (320px - 480px) */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        padding: 70px 20px 40px;
        padding-top: 120px;
    }

    .hero-label {
        font-size: 10px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hero-highlight::after {
        height: 5px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .hero-cta {
        padding: 12px 24px;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .hero-cta:last-of-type {
        margin-bottom: 30px;
    }

    /* Hero Stats */
    .hero-stats {
        gap: 20px;
        margin-top: 35px;
        padding: 25px 15px;
    }

    .hero-stat {
        padding: 15px;
    }

    .hero-stat-number {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .hero-stat-label {
        font-size: 12px;
    }

    /* Sections */
    .section {
        padding: 50px 20px;
    }

    .section-label-createur {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .section-title-createur {
        font-size: 28px;
        margin-bottom: 18px;
        line-height: 1.25;
    }

    .section-intro-createur {
        font-size: 15px;
        margin-bottom: 35px;
    }

    /* Cards */
    .card-createur {
        padding: 25px 20px;
    }

    .card-icon-createur {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 18px;
    }

    .card-icon-createur::after {
        width: 10px;
        height: 10px;
        bottom: -3px;
        right: -3px;
    }

    .card-title-createur {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .card-content-createur {
        font-size: 14px;
    }

    .card-content-createur p {
        margin-bottom: 12px;
        padding-left: 16px;
    }

    /* Accent Section */
    .accent-section {
        padding: 50px 20px;
        margin: 50px 0;
    }

    .accent-section h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .accent-section p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .accent-cta {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Correction débordement horizontal */
@media (max-width: 767px) {
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    * {
        max-width: 100%;
    }

    .hero-container,
    .accent-container {
        width: 100%;
        max-width: 100%;
    }
}

/* Désactiver le parallax sur mobile */
@media (max-width: 767px) {
    .hero-content {
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Animations mobiles optimisées */
@media (max-width: 767px) {
    .card-createur:hover {
        transform: translateY(-4px);
    }

    /* Réduire les délais d'animation sur mobile */
    .card-createur {
        transition-delay: 0s !important;
    }

    /* Animation des stats au scroll */
    .hero-stat {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .hero-stat:nth-child(1) {
        animation-delay: 0.2s;
    }

    .hero-stat:nth-child(2) {
        animation-delay: 0.4s;
    }

    .hero-stat:nth-child(3) {
        animation-delay: 0.6s;
    }

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

/* Mode paysage mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 24px 40px;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-cta {
        display: inline-block;
        width: auto;
        margin-right: 10px;
        padding: 12px 24px;
    }

    .hero-cta:last-of-type {
        margin-bottom: 20px;
    }

    /* Stats en ligne sur paysage */
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 30px;
        padding: 20px 15px;
    }

    .hero-stat {
        padding: 15px 10px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .hero-stat-label {
        font-size: 11px;
    }

    .section {
        padding: 50px 24px;
    }
}

/* Fix pour les boutons CTA empilés sur mobile */
@media (max-width: 767px) {
    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-cta {
        order: 1;
    }

    .hero-stats {
        order: 2;
    }
}

/* Amélioration des cards sur très petits écrans */
@media (max-width: 360px) {
    .card-createur {
        padding: 20px 16px;
    }

    .card-content-createur p::before {
        font-size: 12px;
    }
}

/* Gestion des marges pour éviter le collage */
@media (max-width: 767px) {
    .section:first-of-type {
        padding-top: 40px;
    }

    .section:last-of-type {
        padding-bottom: 40px;
    }
}

/* Optimisation des stats pour tablette portrait */
@media (min-width: 768px) and (max-width: 900px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 36px;
    }
}

/* Correction spécifique pour les emoji sur mobile */
@media (max-width: 480px) {
    .card-icon-createur {
        font-size: 22px;
        line-height: 1;
    }
}