:root {
            --primary-dark: #0a0b0c; /* Noir Prestige */
            --accent-gold: #d4af37;  /* Doré Or */
            --bg-light: #ffffff;    /* Blanc Pur */
            --bg-soft: #f8f9fa;     /* Gris très clair */
            --text-dark: #1a1a1a;
            --text-gray: #666666;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

     

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .reveal { opacity: 0; transform: translateY(30px); transition: var(--transition); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- 1. ABOUT (SOMBRE & DORÉ - CONSERVÉ) --- */
        .about { display: flex; align-items: stretch; min-height: 85vh; background: var(--primary-dark); color: #fff; }
        .about-content { flex: 1; padding: 80px 5%; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
        .about-content h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 0.95; text-transform: uppercase; }
        .about-content h1 span { color: var(--accent-gold); display: block; }
        .about-content p { margin-top: 25px; color: #aaa; max-width: 450px; border-left: 3px solid var(--accent-gold); padding-left: 20px; }
        
        .about-image { 
            flex: 1; 
            background: linear-gradient(to right, var(--primary-dark) 0%, transparent 15%), 
                        url('image/t.webp') center/cover; 
            clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%); 
        }

     /* --- CODE CORRECTIF MOBILE (À METTRE À LA FIN DE VOTRE CSS) --- */
@media (max-width: 768px) {
    .about {
        flex-direction: column; /* Empile l'image et le texte verticalement */
        display: block;        /* Sécurité pour forcer le bloc */
        width: 100%;
        min-height: 100vh;
        background: var(--primary-dark);
        overflow: hidden;      /* Empêche tout débordement */
    }

    .about-image {
        width: 100%;
        height: 250px;         /* L'image s'affiche en haut */
        clip-path: none;       /* Enlève la coupure bizarre */
        order: -1;
    }

    .about-content {
        width: 100%;
        padding: 40px 20px;    /* Marges internes pour que le texte ne touche pas les bords */
        text-align: center;    /* CENTRE LE TEXTE */
        display: flex;
        flex-direction: column;
        align-items: center;   /* Centre les éléments du flex */
        box-sizing: border-box; /* IMPORTANT : inclut le padding dans la largeur */
    }

    .about-content h1 {
        font-size: 2.2rem;     /* Taille réduite pour mobile */
        text-align: left;
        width: 100%;
        margin-bottom: 20px;
        line-height: 1.2;
        margin-top: 50px;
    }

    .about-content p {
        text-align: left;    /* Centre le paragraphe */
        max-width: 100%;       /* Utilise toute la largeur disponible */
            /* Enlève la barre dorée à gauche qui décale le texte */
        padding-left: 10px;
        margin: 0 auto;        /* Centre le bloc p */
        color: #ccc;
        font-size: 1rem;
        word-wrap: break-word; /* Coupe les mots s'ils sont trop longs */
    }
}




:root {
            --gold: #D4AF37;
            --black: #000000;
            --white: #ffffff;
            --dark-gray: #1a1a1a;
        }

        .number { margin: 0; background-color: #f0f0f0; font-family: 'Montserrat', sans-serif; }

        /* Style de la Bande */
        .stats-banner {
            background-color: var(--black);
            color: var(--white);
            padding: 40px 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
          
        }

        .banner-container {
            display: flex;
            width: 90%;
            max-width: 1200px;
            justify-content: space-around;
            align-items: center;
        }

        .stat-item {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 10px;
        }

        /* Séparateurs verticaux comme sur ton image */
        .stat-item:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 10%;
            height: 80%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--gold), transparent);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            display: block;
            margin-bottom: 5px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--white);
        }

        /* Animation au scroll */
        .animate .stat-value {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Mobile */
        @media (max-width: 768px) {
         
            .stat-item {
                padding-bottom: 20px;
                width: 100%;
            }
            .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .stat-label {
            font-size: 0.8rem;
        }
        }

         :root {
            --bg-white: #ffffff;
            --beige-card: #F5F0E6; /* Couleur beige des containers */
            --gold-primary: #C59D5F; /* Couleur dorée du bouton et icônes */
            --text-black: #1A1A1A;
            --text-gray: #555555;
        }

      
        .clients-section {
            padding: 100px 5%;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80vh;
            background: white;
        }

        .container {
            max-width: 1200px;
            display: flex;
            gap: 60px;
            align-items: center;
            flex-wrap: wrap; /* Pour le mobile */
        }

        /* Partie Texte */
        .content-side {
            flex: 1;
            min-width: 320px;
        }

        .content-side .subtitle {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-black);
            margin-bottom: 10px;
            display: block;
        }

        .content-side h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.1;
            color: var(--text-black);
            margin: 0 0 20px 0;
        }

        .content-side p {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 450px;
        }

        .btn-learn {
            display: inline-block;
            padding: 14px 35px;
            background-color: var(--gold-primary);
            color: white;
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            transition: transform 0.2s, background-color 0.2s;
        }

        .btn-learn:hover {
            background-color: #a37e45;
            transform: translateY(-2px);
        }

        /* Grille de Logos */
        .grid-side {
            flex: 1.2;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            min-width: 320px;
        }

        .logo-card {
            background-color: var(--beige-card);
            aspect-ratio: 1.1 / 1; /* Légèrement rectangulaire comme sur l'image */
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .logo-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        /* Style des faux logos (icônes + texte) */
        .logo-card img {
            font-size: 1.5rem;
            color: var(--gold-primary);
            margin-bottom: 8px;
            font-style: normal;
            font-weight: bold;
            width: 100px;
            background:transparent;
          
            
        }

        .logo-card span {
            font-size: 0.9rem;
            color: var(--gold-primary);
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .grid-side { grid-template-columns: repeat(3, 1fr); }
            .clients-section { padding: 60px 5%; }
        }

        @media (max-width: 650px) {
            .grid-side { grid-template-columns: repeat(3, 1fr); }
            .container { gap: 40px; }
        }

        :root {
            --bg-white: #ffffff;
            --bg-beige: #F5F0E6; /* Beige de l'image */
            --gold: #C59D5F;    /* Doré mat */
            --text-dark: #1A1A1A;
            --text-gray: #666666;
            --transition: all 0.3s ease;
        }

        

        /* --- FAQ STYLES --- */
        .faq-section {
            font-family: 'Segoe UI', Arial, sans-serif;
            padding: 80px 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-header .subtitle {
            display: block;
            color: var(--gold);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .faq-header h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin: 0;
        }

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            background-color: var(--bg-white);
            border-radius: 12px;
            border-color: var(--bg-beige);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--gold);
        }

        /* Style quand l'item est ouvert */
        .faq-item.active {
            border-color: var(--gold);
            background-color: var(--bg-white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .faq-question {
            width: 100%;
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .faq-question .icon {
            display: inline-block;
            width: 24px;
            height: 24px;
            position: relative;
            transition: var(--transition);
        }

        /* Création du "+" avec des barres CSS */
        .faq-question .icon::before,
        .faq-question .icon::after {
            content: '';
            position: absolute;
            background-color: var(--gold);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq-question .icon::before { width: 100%; height: 2px; } /* Barre horizontale */
        .faq-question .icon::after { width: 2px; height: 100%; }  /* Barre verticale */

        .faq-item.active .icon {
            transform: rotate(45deg); /* Le + devient un x */
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 25px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 300px; /* Hauteur max de sécurité */
            padding-bottom: 25px;
        }

        @media (max-width: 780px) {
            .faq-header h2 { font-size: 1.8rem; }
            .faq-question { padding: 20px; font-size: 1rem; }
            .logo-card {
                 padding: 5px;
            }
            .logo-card i {
            font-size: 1rem;
     

          
        }

        }

        .service-about {
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 50vh;
            background-color: white; /* Fond de page neutre */
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }

       

       .service-about h2 {
            color: var(--black);
            font-size: 2.8rem;
            margin-bottom: 40px;
            font-weight: 700;
            line-height: 1.2;
            margin-top: 100px;
        }

        .services-list {
            display: inline-block; /* Pour centrer le bloc mais aligner le texte à gauche */
            text-align: left;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-item {
            font-size: 2rem;
            color: #444; /* Gris très foncé pour la lisibilité */
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .service-item:hover {
            transform: translateX(10px);
            color: var(--black);
        }

        /* Style de la coche (V) */
        .checkmark {
            color: var(--gold);
            font-size: 1.6rem;
            margin-right: 15px;
            font-weight: bold;
        }

        /* --- Animation d'entrée --- */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        @media (max-width: 780px) {
            .service-about h2 {
          
            font-size: 2.5rem;

        }
        .service-item {
            font-size: 1rem;
        
            
        }
    }
    /* --- CODE CORRECTIF MOBILE GLOBAL --- */
@media (max-width: 768px) {
    
    /* 1. Section ABOUT - Ajustement texte et image */
    .about {
        flex-direction: column;
        min-height: auto;
    }
    .about-image {
        height: 200px;
        clip-path: none; /* Supprime le biseau pour plus de clarté sur petit écran */
        background: url('image/t.webp') center/cover;
    }
    .about-content {
        padding: 40px 20px;
        text-align: center;
    }
    .about-content h1 {
        font-size: 2.2rem; /* Réduction proportionnelle */
    }
    .about-content p {
        font-size: 0.95rem;
        max-width: 100%;
        padding-left: 15px;
    }

    /* 2. Section STATS (Bande Noire) */
    .banner-container {
        flex-direction: row; /* On garde l'alignement horizontal mais on réduit tout */
        flex-wrap: nowrap;
        width: 95%;
    }
    .stat-item {
        padding: 5px;
    }
    .stat-value {
        font-size: 1.4rem; /* Chiffres plus petits pour tenir sur une ligne */
    }
    .stat-label {
        font-size: 0.6rem; /* Libellés miniaturisés */
        letter-spacing: 1px;
    }

    /* 3. Section CLIENTS (Grille de logos) */
    .clients-section {
        padding: 50px 20px;
    }
    .content-side h1 {
        font-size: 1.8rem;
    }
    .content-side p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .grid-side {
        grid-template-columns: repeat(3, 1fr); /* On garde les 4 colonnes */
        gap: 8px; /* On resserre l'espace */
    }
    .logo-card img {
            
            width: 50px;
            
            
        }
    .logo-card {
        padding: 8px 4px;
        border-radius: 8px;
    }
    .logo-card i {
        font-size: 1rem; /* Icônes miniaturisées */
        margin-bottom: 4px;
    }
    .logo-card span {
        font-size: 0.6rem; /* Texte des logos très petit */
    }

    /* 4. Section FAQ */
    .faq-section {
        padding: 40px 15px;
    }
    .faq-header h2 {
        font-size: 1.6rem;
    }
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    .faq-question .icon {
        width: 18px;
        height: 18px;
    }

    /* 5. Section SERVICES (Liste à cocher) */
    .service-about h2 {
        font-size: 1.8rem;
        margin-top: 50px;
        text-align: center;
    }
    .service-item {
        font-size: 1.1rem; /* Texte réduit pour éviter les retours à la ligne */
        margin-bottom: 12px;
    }
    .checkmark {
        font-size: 1.2rem;
        margin-right: 10px;
    }
}

/* Ajustement spécifique pour les très petits écrans (iPhone SE, etc.) */
@media (max-width: 380px) {
    .stat-value { font-size: 1.1rem; }
    .stat-label { font-size: 0.5rem; }
    .grid-side { grid-template-columns: repeat(2, 1fr); } /* Passage en 2x2 si trop étroit */
}