    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'poppins', sans-serif;
        color: #301c14;
    }

    /* Navigation */
    .navbar {
        background: #edeceb; /* Au lieu de #fff */
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: transform 0.3s ease;
        transform: translateY(0);
        
    }

    .navbar.hidden {
        transform: translateY(-100%); /* Cache complètement */
    }

    .nav-container {
        background: #edeceb;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 3%;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Logo */
    .logo a {
        font-size: 1.5rem;
        font-weight: bold;
        text-decoration: none;
        color: #333;
    }

    .logo img {
        height: 60px; /* Ajuste la hauteur */
        width: auto;  /* Garde les proportions */
        transition: transform 0.3s ease;
    }

    .logo img:hover {
        transform: scale(1.05); /* Effet hover optionnel */
    }

    /* Menu de navigation */
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-menu li a {
        text-decoration: none;
        color: #301c14;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .nav-menu li a:hover {
        color: #301c14; /* Change cette couleur */
    }


    /* ===== NAVBAR SCROLL EFFECT ===== */
    .navbar.scrolled {
        background: #edeceb !important;
        backdrop-filter: blur(10px);
    }

    .navbar.scrolled .nav-menu li a {
        color: #301c14;
    }

    .navbar.scrolled .nav-menu li a:hover {
        color: #8b4513;
    }

    /* ===== SMOOTH SCROLL ===== */
    html {
        scroll-behavior: smooth;
    }

    /* ===== LOADING ANIMATION ===== */
    body:not(.loaded) {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    body.loaded {
        opacity: 1;
    }

    /* Container pour tout aligner sur une ligne */
    .scroll-text-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap; /* Permet de passer à la ligne sur mobile */
        font-style: italic;
    }

    .scroll-cta p {
        font-size: 1rem;
        color: #fbfbfb;
        margin-bottom: 0.1rem;
        font-style: italic;
        text-align: center;
    }

    /* Branding Section */
    .branding {
        position: relative;
        min-height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 20px 10px;
        background: #edeceb;
        overflow: hidden;
    }

    .branding::before {
        content: '';
        position: absolute;
        top: 50%;
        right: -55%;
        transform: translateY(-50%) translateX(50px);
        width: 70%;
        height: 70%;
        background-image: url('img/xXdK5iuhD8NI4n1Qmob7ZOGaVWU.png'); /* Votre fichier */
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        opacity: 0; /* Très subtil */
        z-index: 0;
        filter: 
            sepia(30%) 
            saturate(500%) 
            hue-rotate(340deg) 
            brightness(80%) 
            contrast(90%);
        animation: gentleSlideIn 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
    }

    @keyframes gentleSlideIn {
        0% {
            opacity: 0;
            transform: translateY(-50%) translateX(50px);
        }
        100% {
            opacity: 0.03;
            transform: translateY(-50%) translateX(0);
        }
    }

    .vertical-layout {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        max-width: 800px;
        width: 100%;
        padding: 60px 0px;
    }

    .mouse-animation {
        display: flex;
        justify-content: center;
    }

    .mouse {
        font-size: 2rem;
        animation: bounce 2s infinite;
        line-height: 1;
        
    }

    .mouse:hover {
        transform: scale(1.1);
    }

    .mouse-svg {
        width: 25px;
        height: 29px;
        animation: bounce 2s infinite;
        filter: invert(15%) sepia(15%) saturate(1500%) hue-rotate(340deg); /* Pour couleur #301c14 */
    }

    /* Animations */
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-5px);
        }
        60% {
            transform: translateY(-2px);
        }
    }

    /* Barre verticale à gauche */
    .branding-content {
        position: relative;
        max-width: 800px;
        width: 100%;
        /* SUPPRIME le padding-left */
    }

    .vertical-bar {
        position: absolute;
        left: -100px; /* Barre en dehors du conteneur */
        top: 50%;
        transform: translateY(-50%);
        width: 1.3px;
        height: 170px;
        background: #301c14;
    }

    .text-content {
        flex: 1;
        text-align: center;
        padding: 130px 0px 50px;
    }

    .text-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #301c14;
        font-weight: bold;
    }

    .text-content p {
        font-size: 1.3rem;
        color: #301c14;
        line-height: 1.3;
        margin-bottom: 3rem;

    }

    /* CTA Scroll */
    .scroll-cta p {
        font-size: 1rem;
        color: #301c14;
        margin-bottom: 0rem;
        font-style: italic;
        text-align: center;
    }

    .checkbox-item {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }

    .checkbox {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        border: 2px solid #333;
        border-radius: 3px;
        font-size: 0.8rem;
        font-weight: bold;
    }


    /* Section Projets */
    .projets {
        padding: 20px 0px 60px;
        background: #edeceb;
    }

    .container {
        max-width: 100%;
        margin: 0 auto;
    }

    .container .cta-button {
        position: relative;
        padding-left: 2.5rem;
        padding-right: 2rem;
    }

    .container .cta-button::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background: #301c14;
        border-radius: 50%;
    }

    .behance-btn {
    position: absolute;
    bottom: 20px; /* Position en bas */
    left: 50%; /* CENTRE HORIZONTALEMENT */
    transform: translate(-50%, -50%); /* CENTRAGE PARFAIT */
    width: 80%;
    max-width: 200px;
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.3); /* #301c14 avec transparence */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    z-index: 10; /* ASSURE QU'IL EST AU-DESSUS */
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.behance-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

    /* Au survol de la carte */
    .projet-card:hover .behance-btn {
        opacity: 1;
        backdrop-filter: blur(50%);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        transform: translateX(-50%) translateY(0); /* Apparaît en place */
    }

    .projet-card:hover .projet-image img {
        filter: grayscale(0%);
        transform: scale(1.05);
    }

    /* Grid 3 colonnes */
    .projets-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 1rem; /* ESPACE UNIQUEMENT ENTRE LIGNES */
        column-gap: 1rem;
        padding: 10px 10px;
        margin-bottom: 2rem;
    }

    /* Carte de projet */
    .projet-card {
        background: transparent;
    }

    /* Lien de l'image */
    .projet-link {
        text-decoration: none;
        display: block;
    }

    /* Image */
    .projet-image {
        overflow: hidden;
        border-radius: 16px;
        position: relative;
        width: 100%;
        height: 400px; /* PREND TOUTE LA HAUTEUR */
        aspect-ratio: 1 / 1; 
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Optionnel : ombre légère */
    transition: all 0.3s ease;
    }

    .projet-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
        filter: grayscale(100%);
        position: relative; /* Pour z-index */
    z-index: 1;
    object-fit: cover;
    }

    /* Effet au survol */
    .projet-link:hover .projet-image img {
       content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: all 0.3s ease;
    }

    /* Indicateur visuel que c'est cliquable */
    .projet-link {
        cursor: pointer;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .projets-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .projet-image {
        height: 300px; /* Hauteur réduite sur tablette */
    }
    }

    @media (max-width: 768px) {
        .projets-grid {
            grid-template-columns: 1fr;
        }
        .projet-image {
        height: 250px; /* Hauteur réduite sur tablette */
    }
    .projets {
        padding: 30px 0px 30px;
    }
    }


    /* Section About */
    .about {
        min-height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 0px;
        background: #edeceb;
        position: relative;
    }

    .about-content {
        position: relative;
        max-width: 1200px; /* Plus large pour 2 colonnes */
        width: 100%;
        padding-left: 30px;
    }

    /* Layout 2 colonnes */
    .about-columns {
        display: grid;
        grid-template-columns: 2fr 1fr; /* Texte plus large, qualités plus étroit */
        gap: 6rem;
        align-items: stretch;
        margin-left: -40px;
    }

    /* Colonne de gauche */
    .about-text {
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centre verticalement le contenu */
        height: 100%; /* Prend toute la hauteur disponible */
    }

    .about-text h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
        color: #301c14;
        font-weight: bold;
    }

    .about-text p {
        font-size: 1.2rem;
        color: #301c14;
        line-height: 1.6;
    }

    /* Colonne de droite */
    .qualities-section {
        text-align: left;
        display: flex;
        flex-direction: column;
        height: 100%; /* Prend toute la hauteur */
    }

    .separator {
        width: 80px;
        height: 2px;
        background: #333;
        margin: 0 0 2rem 0;
    }

    .packs-carousel {
    padding: 80px 20px;
    background: #edeceb;
    position: relative;
    overflow: visible;
    z-index: 10;
    }

.packs-carousel .cta-button {
    display: inline-flex;
    gap: 1rem;
    font-size: 2rem;
    color: #301c14;
    font-weight: 600;
    background: #edeceb;
    padding: 1rem 2rem;
    border-radius: 80px;
    text-align: center;
    border: 1.3px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: default;
    text-decoration: none;
    box-shadow: inset 0 1px 6px rgba(0,0,0,0.08);
}

.packs-carousel .cta-button:hover {
    border-color: #301c14;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.packs-carousel .section-title {
     text-align: left; /* Aligne à gauche comme les autres */
    margin-left: 3rem; /* Supprime les marges automatiques */
    margin-right: 0;
    margin-bottom: 3rem; /* Même espacement que les autres titres */
    padding-left: 3rem; /* Espace pour la pastille */
    position: relative;
}

.packs-carousel .section-title::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #301c14;
    border-radius: 50%;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* STYLE DE BASE PACK CARD */
.pack-card {
    position: absolute;
    width: 380px;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(48, 28, 20, 0.15);
    border: 2px solid #301c14;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateX(-50%);
    left: 50%;
    top: 50%;
    pointer-events: none;
}

/* CARTE ACTIVE (CENTRE) */
.pack-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translate(-50%, -50%);
    z-index: 30;
    pointer-events: auto;
}

/* CARTE PRÉCÉDENTE (GAUCHE) */
.pack-card.prev {
    opacity: 0.7;
    visibility: visible;
    transform: translate(-150%, -50%) scale(0.85) rotateY(10deg);
    z-index: 10;
    pointer-events: auto;
}

/* CARTE SUIVANTE (DROITE) */
.pack-card.next {
    opacity: 0.7;
    visibility: visible;
    transform: translate(50%, -50%) scale(0.85) rotateY(-10deg);
    z-index: 10;
    pointer-events: auto;
}


/* Pour les cartes spécifiques */
.pack-card.active:hover {
    transform: translate(-50%, -50%) scale(1) !important;
}

.pack-card.prev:hover {
    transform: translate(-150%, -50%) scale(0.85) !important;
}

.pack-card.next:hover {
    transform: translate(50%, -50%) scale(0.85) !important;
}

/* Header des packs */
.pack-header {
    text-align: center;
    margin-bottom: 1rem;
    border-bottom: 2px solid #edeceb;
}

.pack-header h3 {
    font-size: 1.5rem;
    color: #301c14;
    margin-bottom: 0rem;
    font-weight: 600;
}

.pack-price {
    font-size: 1.4rem;
    color: #d6ccc1;
    font-weight: 700;
}

/* Liste des features */
.pack-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.pack-features li {
    padding: 0.8rem 0;
    color: #301c14;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.4;
    border-bottom: 1px solid #f0f0f0;
}

.pack-features li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.pack-features1 {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.pack-features1 li {
    padding: 0.8rem 0;
    color: #301c14;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.pack-features1 li:before {
    content: "✺";
    position: absolute;
    left: 0;
    color: #301c14;
    font-weight: bold;
}

/* Bouton CTA */
.pack-cta {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #301c14;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 200;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.pack-cta:hover {
    background: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(48, 28, 20, 0.3);
}

/* Contrôles du carousel */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-prev,
.carousel-next {
    background: #301c14;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d6d5d4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #301c14;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-container {
        height: 500px;
    }
    
    .pack-card {
        width: 320px;
        padding: 2rem;
    }
    
    .pack-header h3 {
        font-size: 1.3rem;
    }
}

    .pack-price {
        font-size: 1.4rem;
        color: #8b4513;
        font-weight: 700;
    }

    /* Liste des features */
    .pack-features {
        list-style: none;
        padding: 0;
        margin-bottom: 2.5rem;
    }

    .pack-features li {
        padding: 0.8rem 0;
        color: #301c14;
        position: relative;
        padding-left: 2rem;
        font-size: 1rem;
        line-height: 1.4;
        border-bottom: 1px solid #f0f0f0;
    }

    .pack-features li:before {
        content: "✦";
        position: absolute;
        left: 0;
        color: #8b4513;
        font-weight: bold;
    }

    /* Bouton CTA */
    .pack-cta {
        width: 100%;
        padding: 1.2rem 2rem;
        background: #301c14;
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .pack-cta:hover {
        background: #8b4513;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(48, 28, 20, 0.3);
    }

    /* Contrôles du carousel */
    .carousel-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-top: 3rem;
    }

    .carousel-prev,
    .carousel-next {
        background: #301c14;
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .carousel-prev:hover,
    .carousel-next:hover {
        background: #8b4513;
        transform: scale(1.1);
    }

    .carousel-dots {
        display: flex;
        gap: 1rem;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #d6d5d4;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: #301c14;
        transform: scale(1.2);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .carousel-container {
            height: 500px;
        }
        
        .pack-card {
            width: 85%;
            padding: 2rem;
        }
        
        .pack-header h3 {
            font-size: 1.5rem;
        }
        
        .pack-features li {
            font-size: 0.9rem;
            padding: 0.6rem 0;
        }
        
        /* Adaptation mobile du positionnement */
        .pack-card[data-index="0"] {
            transform: translate(-50%, -50%) scale(1);
        }
        
        .pack-card[data-index="1"],
        .pack-card[data-index="2"] {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0.4;
        }
    }

    /* Qualités */
    .qualities {
        display: flex;
        gap: 2rem;
    }

    .qualities-column {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .qualities-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 colonnes */
        grid-template-rows: repeat(2, auto); /* 2 lignes */
        gap: 0.8rem;
    }

    .quality-item {
        font-size: 1.1rem;
        color: #301c14;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border: 2px solid #301c14;
        border-radius: 50px;
        text-align: center;
        background: #edeceb;
        transition: all 0.3s ease;
        cursor: default;
        white-space: nowrap; /* Empêche le texte de passer à la ligne */
        flex-shrink: 0; /* Empêche la réduction */
    }

    .quality-item:hover {
        background: #301c14;
        color: white;
        transform: translateY(-2px);
    }

    .about-image {
        width: 100%;
        margin-top: 1.5rem;
        object-position: 100px;
    }

    .about-image img {
        width: 100%; /* Même largeur que le container des qualités */
        height: 360px;
        object-fit: cover;
        border-radius: 8px;
        object-position: center 5%;
        min-height: 200px;
        border: 1px solid white;
        box-shadow: 0 4px 20px rgba(48, 28, 20, 0.15);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .about-image img:hover {
        box-shadow: 0 8px 35px rgba(48, 28, 20, 0.25);
        transform: translateY(-3px);
    }

    .about-text .cta-button {
        display: inline-block;
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #301c14;
        font-weight: 600;
        background: #edeceb;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
        width: fit-content; /* S'ADAPTE AU TEXTE */
    } /* UNIQUEMENT DANS LA SECTION ABOUT */

    .about-text .cta-button::before {
        content: '';
        position: absolute;
        left: 1rem; /* Ajustez cette valeur pour l'espacement */
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background: #301c14;
        border-radius: 50%;
    }




    .cta-button {
        display: inline-flex;
        gap: 1rem;
        font-size: 2rem;
        margin-bottom: 0rem;
        color: #301c14;
        font-weight: 600;
        background: #edeceb;
        padding: 1rem 1rem;
        border-radius: 80px;
        text-align: center;
        border: 1.3px solid #e9ecef;
        transition: all 0.3s ease;
        cursor: default;
        text-decoration: none;
        box-shadow: inset 0 1px 6px rgba(0,0,0,0.08);
    }

    .cta-button .title-bullet {
        width: 12px;
        height: 12px;
        background: #301c14;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .cta-button:hover {
        border-color: #301c14;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    /* Section 2 colonnes */
    .two-columns {
        padding: 90px 0px 40px;
        background: #edeceb;
    }

    .columns-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 0px;
    }

    .columns-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 colonnes égales */
        gap: 5rem;
        align-items: stretch;
        max-width: 100%;
    }

    /* Colonne image (gauche) */
    .image-column {
        height: 100%; /* Prend toute la hauteur */
        display: flex;
        align-items: stretch; /* Étire l'image */
        margin-left: -10px;
    }

    .image-column img {
        width: calc(100% + 10px);
        height: 100%;
        object-fit: cover;
        border-radius: 10px 10px;
        min-height: 700px;
        border: 1px solid black;
        box-shadow: 0 4px 20px rgba(48, 28, 20, 0.15);
    }


    /* Colonne de texte (droite) */
    .text-column h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: #301c14;
        font-weight: 600;
        padding-right: 2rem;
    }

    .text-column p {
        font-size: 1.2rem;
        color: #301c14;
        line-height: 1.6;
        padding-right: 20px;
        justify-content: flex-start;
    }

    .text-column .cta-button {
        position: relative;
        padding-left: 2.5rem;
    }

    .text-column .cta-button::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background: #301c14;
        border-radius: 50%;
    }

    /* Encadré minimaliste */
    .encadre-minimaliste {
        border: 1px solid #e0e0e0;
        border-radius: 20px;
        padding: 1.5rem;
        background: #edeceb;
        margin-top: 2rem;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
        position: relative;
    }

    /* En-tête avec titre et numéro */
    .encadre-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .encadre-header h3 {
        font-size: 1.5rem;
        color: #301c14;
        margin: 0;
        flex: 1; /* Prend l'espace disponible */
    }

    /* Numéro en haut à droite */
    .encadre-number {
        background: #301c14;
        color: #301c14;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: bold;
        flex-shrink: 0; /* Empêche la réduction */
        margin-left: 1rem; /* Espace avec le titre */
        background: transparent; /* FOND TRANSPARENT */
        border: 1px solid rgba(48, 28, 20, 0.2); /* BORDURE TRÈS SUBTILE */
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .separateur-horizontal {
        width: 50px;
        height: 2px;
        background: #007bff;
        margin: 0.5rem 0 1rem 0;
    }

    .encadre-minimaliste p {
        font-size: 1rem;
        color: #301c14;
        line-height: 1.5;
        margin-top: 1rem;
    }



    /* Section Packs */
    .packs {
        background: #edeceb;
        padding-bottom: 0px;
    }

    .packs h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #301c14;
    }

    /* Grid des packs */
    .packs-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Carte de pack */
    .pack-card {
        background: #edeceb;
        padding: 1.5rem 1.5rem 1.5rem ;
        border-radius: 18px;
        box-shadow: inset 0 2px 10px rgba(0,0,0,0.08);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .pack-card:hover {
        box-shadow: inset 0 4px 15px rgba(0,0,0,0.12);
        transform: translateY(-2px);
    }

    .pack-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #301c14;
        text-align: center;
    }


    /* Liste des features */
    .pack-features {
        list-style: none;
        padding: 0;
        margin-bottom: 1rem;
        text-align: left;
    } 

    .pack-features li {
        padding: 0.5rem 0;
        color: #301c14;
        position: relative;
        padding-left: 1.5rem;
    }

    .pack-features li:before {
        content: "✦";
        position: absolute;
        left: 0;
        color: #301c14;
        font-weight: lighter;
    }

    .pack-features2 {
        list-style: none;
        padding: 0;
        margin-bottom: 2.5rem;
        text-align: left;
    }

    .pack-features2 li {
        padding: 0.5rem 0;
        color: #301c14;
        position: relative;
        padding-left: 1.5rem;
    }

    .pack-features2 li:before {
        content: "✺";
        position: absolute;
        left: 0;
        color: #301c14;
        font-weight: lighter;
    }

    /* Bouton */
    .pack-button {
        background: #007bff;
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 25px;
        font-size: 1.1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .pack-button:hover {
        background: #0056b3;
        transform: translateY(-2px);
    }

    .faq-section {
        padding: 90px 20px;
        background: #ededed;
    }

    .faq-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* ===== SECTION MARQUEE DÉFILANT ===== */
    .marquee-section {
        background: #edeceb;
        padding: 5rem 0 1rem;
        overflow: hidden;
        position: relative;
    }

    .marquee-container {
        width: calc(100% - 200px);
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .marquee-track {
        display: flex;
        gap: 3rem;
        animation: marqueeScrollLeft 30s linear infinite;
        white-space: nowrap;
        width: max-content;
        
    }

    .marquee-item {
        font-size: 0.9rem;
        font-weight: 400;
        color: #301c14;
        padding: 0.5rem 1rem;
        background: transparent;
        transition: all 0.3s ease;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .marquee-item i {
        margin-right: 0.2rem; /* ⭐ RÉGLEZ CETTE VALEUR ⭐ */
    }

    .marquee-icon {
        font-size: 1.3rem;
        color: #edeceb;
        transition: all 0.3s ease;
        width: 24px; /* Largeur fixe pour l'alignement */
        text-align: center;
    }

    .marquee-item:hover {
        background: #edeceb;
        color: #301c14;
        transform: scale(1.05);
    }

    .marquee-item:hover .marquee-icon {
        color: #301c14;
        transform: scale(1.1);
    }

    .marquee-item:hover {
        background: #edeceb;
        color: #301c14;
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(237, 236, 235, 0.3);
    }

    /* Animation du défilement */
    @keyframes marqueeScrollLeft {
        0% {
            transform: translateX(0); /* Commence avec l'espace */
        }
        100% {
            transform: translateX(-50%); /* Se termine à moitié */
        }
    }

    /* Animation du défilement - SANS PAUSE */
    @keyframes marqueeScrollLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }


    /* Responsive */
    @media (max-width: 768px) {
        .marquee-item {
            font-size: 0.8rem;
            padding: 0.4rem 0.8rem;
        }
        
        .marquee-track {
            gap: 1rem;
            padding-left: 30px; /* Espace réduit sur mobile */
        }
        
        .marquee-section {
            padding: 3rem 0;
        }
    }



    .marquee-section2 {
        background: #edeceb;
        padding: 1rem 0 1rem;
        overflow: hidden;
        position: relative;
    }

    .marquee-container2 {
        width: calc(100% - 200px);
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .marquee-track2 {
        display: flex;
        gap: 3rem;
        animation: marqueeScrollRight 20s linear infinite;
        white-space: nowrap;
        width: max-content;
        
    }

    .marquee-item2 {
        font-size: 0.9rem;
        font-weight: 400;
        color: #301c14;
        padding: 0.5rem 1rem;
        background: transparent;
        transition: all 0.3s ease;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .marquee-item2 i {
        margin-right: 0.2rem; /* ⭐ RÉGLEZ CETTE VALEUR ⭐ */
    }

    .marquee-item2:hover {
        background: #edeceb;
        color: #301c14;
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(237, 236, 235, 0.3);
    }

    /* Animation du défilement */
    @keyframes marqueeScrollRight {
        0% {
            transform: translateX(-50%); /* Commence avec l'espace */
        }
        100% {
            transform: translateX(0); /* Se termine à moitié */
        }
    }

    /* Animation du défilement - SANS PAUSE */
    @keyframes marqueeScrollRight {
        0% {
            transform: translateX(-50%);
        }
        100% {
            transform: translateX(0);
        }
    }


    /* Responsive */
    @media (max-width: 768px) {
        .marquee-item2 {
            font-size: 0.8rem;
            padding: 0.4rem 0.8rem;
        }
        
        .marquee-track2 {
            gap: 1rem;
            padding-left: 30px; /* Espace réduit sur mobile */
        }
        
        .marquee-section2 {
            padding: 3rem 0;
        }
    }

    /* Colonne de gauche */
    .faq-text h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: #301c14;
        font-weight: 600;
    }

    .faq-text p {
        font-size: 1.2rem;
        color: #301c14;
        line-height: 1.6;
        margin-bottom: 2.5rem;
    }

    .faq-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #301c14;
        color: #ededed;
        padding: 1.2rem 4rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border: 2px solid #333;
        position: relative;
        overflow: hidden;
        min-height: 60px;
    }

    .button-text-default,
    .button-text-hover {
        position: absolute;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .button-text-default {
        transform: translateY(0);
        opacity: 1;
    }

    .button-text-hover {
        transform: translateY(30px);
        opacity: 0;
    }

    .faq-button:hover {
        background: #ededed;
        color: #301c14;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .faq-button:hover .button-text-default {
        transform: translateY(-30px);
        opacity: 0;
    }

    .faq-button:hover .button-text-hover {
        transform: translateY(0);
        opacity: 1;
    }

    .faq-text .cta-button {
        position: relative;
        padding-left: 2.5rem;  
    }

    .faq-text .cta-button::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background: #301c14;
        border-radius: 50%;
    }

    /* Colonne de droite : Questions/Réponses */
    .faq-cards {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .faq-card {
        background: #ededed;
        border-radius: 30px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        cursor: pointer;
        box-shadow: inset 0 3px 12px rgba(0,0,0,0.08)
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        color: #301c14;
        font-weight: 400;
        margin: 0;
    }

    .faq-answer {
        padding: 0 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.3s ease 0.1s;
        opacity: 0;
    }

    .faq-answer p {
        font-size: 0.9rem;
        color: #301c14;
        line-height: 1.5;
        margin: 0;
        padding-bottom: 1.5rem;
    }

    /* Effet au survol */
    .faq-card:hover {
        background: #301c14;
        border-color: #333;
        box-shadow: inset 0 5px 20px rgba(0,0,0,0.25);
    }

    .faq-card:hover .faq-answer {
        max-height: 300px;
        opacity: 1;
        color: #edeceb;
    }

    .faq-card:hover .faq-question h3 {
        color: #f0f0f0; /* Texte question devient blanc */
    }

    .faq-card:hover .faq-answer p {
        color: #f0f0f0; /* Texte réponse devient gris clair */
    }

    .faq-card:hover .faq-answer {
        max-height: 200px;
        opacity: 1;
    }

    /* Variante avec flèche indicateur */
    .faq-question {
        position: relative;
        padding-right: 2.5rem;
    }

    .faq-question:after {
        content: "↓";
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }

    .faq-card:hover .faq-question:after {
        transform: translateY(-50%) rotate(180deg);
    }

    /* ===== IMAGE FAQ SECTION ===== */
    .faq-image {
        margin-top: 3rem;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease 0.5s;
    }

    .decoration-img {
        width: 80%;
        max-width: 230px;
        height: auto;
        border-radius: 15px;
        object-fit: cover;
        transition: all 0.4s ease;
        filter: grayscale(20%);
    }

    /* Animation au scroll */
    .faq-section.section-visible .faq-image {
        opacity: 1;
        transform: translateY(0);
    }

    /* Ajustement responsive */
    @media (max-width: 968px) {
        .faq-image {
            margin-top: 2rem;
            max-width: 250px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 768px) {
        .faq-image {
            margin-top: 1.5rem;
            max-width: 200px;
        }
    }

    /*------------------------------------------------------------------------


    /* Section Contact Formulaire */
    .contact-form-section {
        padding: 0px 20px 90px;
        background: #ededed;
    }

    .contact-form-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Colonne de gauche : Formulaire */
    .form-column {
        background: #ededed;
        padding: 2.5rem;
        border-radius: 12px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-group {
        position: relative;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid #301c14;
        border-radius: 30px;
        font-size: 1rem;
        background: #edeceb;
        transition: all 0.3s ease;
        resize: vertical;
        font-family: 'freight sans', sans-serif; /* Même que votre site */
        font-weight: 400; /* Épaisseur */
        color: #301c14; /* Couleur du texte */
        letter-spacing: 0.3px; /* Espacement des lettres */
    }

    .form-group label {
        position: absolute;
        top: 1rem;
        left: 1rem;
        color: #666;
        font-size: 1rem;
        transition: all 0.3s ease;
        pointer-events: none;
        background: #edeceb;
        padding: 0 0.5rem;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #301c14;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    }

    .form-group input:focus + label,
    .form-group textarea:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:not(:placeholder-shown) + label {
        top: -0.5rem;
        left: 0.8rem;
        font-size: 0.8rem;
        color: #301c14;
        font-weight: 500;
    }

    .submit-button {
        background: #301c14;
        color: #edeceb;
        border: none;
        padding: 1.2rem 2rem;
        border-radius: 30px;
        font-size: 1.1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 1rem;
    }

    .submit-button:hover {
        background: #301c14;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Container titre + pastille */
    .title-with-bullet {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        justify-content: right; /* Centre le tout */
        width: fit-content; /* Largeur selon le contenu */
        margin-left: 50px;
        margin-right: auto;
        
    }

    /* Pastille ronde */
    .title-with-bullet .title-bullet {
        width: 12px;
        height: 12px;
        background: #301c14;
        border-radius: 50%;
        flex-shrink: 0;
        display: block;
    }

    /* Ajustement du H1 */
    .title-with-bullet .cta-button {
        margin-bottom: 0; /* Supprime la marge basse existante */
    }

    /* Colonne de droite : Informations */
    .contact-info h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: #301c14;
        font-weight: 600;
    }

    .contact-info p {
        font-size: 1.2rem;
        color: #301c14;
        line-height: 1.6;
        margin-bottom: 2.5rem;
    }

    .contact-info .cta-button {
        position: relative;
        padding-left: 2.5rem; /* Espace pour la pastille */
        margin-top: 2rem;
    }

    .contact-info .cta-button::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background: #301c14;
        border-radius: 50%;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    /* Valeur (info.yudio@gmail.com, +33...) */
    .contact-item span {
        font-weight: 400; /* Plus léger */
        color: #666;
        font-size: 1rem;
    }

    .contact-item strong {
        color: #301c14;
        font-size: 1.1rem;
    }

    .contact-item span {
        color: #301c14;
        font-size: 1rem;
    }

    /*------------------------------------------

    /* Footer */
    .site-footer {
        background: #301c14;
        color: #edeceb;
        padding: 2rem 0;
        border-top: 1px solid #444;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-left p {
        margin: 0;
        color: #ccc;
        font-size: 0.9rem;
    }

    /* Liens sociaux */
    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        transform: translateY(-2px);
    }

    .social-icon {
        width: 20px;
        height: 20px;
        fill: white;
    }


    /* Responsive */
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 1.5rem;
            text-align: center;
        }
        
        .social-links {
            justify-content: center;
        }
    }



    /* Responsive */
    @media (max-width: 768px) {
        .contact-form-wrapper {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .contact-info h1 {
            font-size: 2.5rem;
        }
        
        .form-column {
            padding: 2rem;
        }
    }


    /* Responsive */
    @media (max-width: 968px) {
        .about-columns {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .about-content {
            padding-left: 40px;
        }
        .qualities-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur mobile */
            grid-template-rows: repeat(4, auto); /* 4 lignes sur mobile */
        }
    }

    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur mobile */
        }
        
        .services h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .faq-wrapper {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .faq-text h1 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .scroll-text-container {
            flex-direction: column; /* Empile sur mobile */
            gap: 0.5rem;
        }
        
        .mouse {
            order: -1; /* Met la souris en premier sur mobile */
        }
    }



    /* ===== ANIMATIONS MORPHING LETTERS ===== */
    .morphing-text {
        display: inline-block;
    }

    .morphing-char {
        display: inline-block;
        opacity: 0;
        transform: translateY(30px) rotate(10deg);
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Animation spécifique pour chaque caractère */
    .morphing-char.animate-in {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }

    /* Effet de rebond subtil */
    @keyframes gentleBounce {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px);
        }
    }

    .morphing-char.animate-in:hover {
        animation: gentleBounce 0.4s ease;
        color: #8b4513; /* Changement de couleur au survol */
    }


    /* ===== ANIMATIONS SCROLL POUR TOUTES LES SECTIONS ===== */

    /* ===== ANIMATIONS SCROLL CORRIGÉES ===== */

    /* Animation du contenu seulement - ne touche pas au background */
    section {
        /* Le background reste intact */
    }

    section .container,
    section .branding-content,
    section .columns-container,
    section .faq-wrapper,
    section .contact-form-wrapper {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    section.section-visible .container,
    section.section-visible .branding-content,
    section.section-visible .columns-container,
    section.section-visible .faq-wrapper,
    section.section-visible .contact-form-wrapper {
        opacity: 1;
        transform: translateY(0);
    }

    /* Gardez toutes les autres animations spécifiques (projet-card, etc.) */
    .projet-card {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        transition: all 0.6s ease;
    }

    .projet-card.card-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    /* Animations spécifiques pour chaque section */

    /* Section Projets - Cartes en cascade */
    .projet-card {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        transition: all 0.6s ease;
    }

    .projet-card.card-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    /* Section About */
    .about-text,
    .qualities-grid,
    .about-image {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.8s ease;
    }

    .about-text.animate-in {
        opacity: 1;
        transform: translateX(0);
    }

    .qualities-grid.animate-in {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.3s;
    }

    .about-image.animate-in {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.6s;
    }

    /* Section Two Columns */
    .image-column,
    .text-column {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s ease;
    }

    .image-column.animate-in {
        opacity: 1;
        transform: translateX(0);
    }

    .text-column.animate-in {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.3s;
    }

    .encadre-minimaliste {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .encadre-minimaliste.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    /* Section Services */
    .service-item {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
        transition: all 0.5s ease;
    }

    .service-item.animate-in {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    /* Section Packs */
    .pack-card {
        opacity: 0;
        transform: translateY(40px) rotateX(10deg);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .pack-card.animate-in {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }

    /* Section FAQ */
    .faq-card {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.6s ease;
    }

    .faq-card.animate-in {
        opacity: 1;
        transform: translateX(0);
    }

    /* Section Contact */
    .form-column,
    .contact-info {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .form-column.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .contact-info.animate-in {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    /* Délais progressifs pour les grilles */
    .qualities-grid .quality-item,
    .services-grid .service-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }

    .qualities-grid.animate-in .quality-item,
    .services-grid .service-item.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    /* Animation en cascade pour les grilles */
    .qualities-grid.animate-in .quality-item:nth-child(1) { transition-delay: 0.1s; }
    .qualities-grid.animate-in .quality-item:nth-child(2) { transition-delay: 0.2s; }
    .qualities-grid.animate-in .quality-item:nth-child(3) { transition-delay: 0.3s; }
    .qualities-grid.animate-in .quality-item:nth-child(4) { transition-delay: 0.4s; }
    .qualities-grid.animate-in .quality-item:nth-child(5) { transition-delay: 0.5s; }
    .qualities-grid.animate-in .quality-item:nth-child(6) { transition-delay: 0.6s; }
    .qualities-grid.animate-in .quality-item:nth-child(7) { transition-delay: 0.7s; }
    .qualities-grid.animate-in .quality-item:nth-child(8) { transition-delay: 0.8s; }


    /* ===== CORRECTIONS RESPONSIVE CIBLÉES ===== */

    /* Navigation Mobile */
    @media (max-width: 768px) {
        /* Navigation */
        .nav-container {
            padding: 1rem;
        }
        
        .nav-menu {
            gap: 1.5rem;
        }
        
        .nav-menu li a {
            font-size: 0.9rem;
        }
        
        .logo img {
            height: 50px;
        }

        /* Section Branding */
        .branding {
            min-height: 70vh;
            padding: 80px 20px 40px;
        }
        
        .text-content h1 {
            font-size: 2rem;
            line-height: 1.2;
        }
        
        .text-content p {
            font-size: 1.1rem;
            line-height: 1.4;
        }
        
        .vertical-layout {
            padding: 30px 0px;
        }
        
        /* Cacher l'élément graphique sur mobile */
        .branding::before {
            display: none;
        }

        /* Section Projets */
        .projets-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 10px;
        }
        
        .projet-image img {
            height: 300px;
        }

        /* Section About */
        .about-columns {
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-left: 0;
        }
        
        .about-content {
            padding-left: 20px;
            padding-right: 20px;
        }
        
        .about-text h1 {
            font-size: 2rem;
        }
        
        .about-text p {
            font-size: 1rem;
        }
        
        .qualities-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
        }
        
        .quality-item {
            font-size: 0.9rem;
            padding: 0.8rem 0.5rem;
        }
        
        .about-image img {
            height: 250px;
        }

        /* Section Two Columns */
        .columns-wrapper {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .image-column img {
            min-height: 400px;
        }
        
        .text-column h1 {
            font-size: 1.8rem;
            padding-right: 0;
        }
        
        .text-column p {
            padding-right: 0;
        }

        /* Section Services */
        .services-grid {
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem;
        }
        
        .service-item {
            font-size: 0.9rem;
            padding: 0.8rem 1.2rem;
            white-space: normal;
        }

        /* Section Packs */
        .packs-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .pack-card h3 {
            font-size: 1.5rem;
        }

        /* Sections Marquee */
        .marquee-container,
        .marquee-container2 {
            width: calc(100% - 40px);
        }
        
        .marquee-item,
        .marquee-item2 {
            font-size: 0.8rem;
            padding: 0.4rem 0.8rem;
        }
        
        .marquee-track,
        .marquee-track2 {
            gap: 1.5rem;
        }

        /* Section FAQ */
        .faq-wrapper {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .faq-text h1 {
            font-size: 1.8rem;
        }
        
        .faq-button {
            padding: 1rem 2rem;
            font-size: 1rem;
        }
        
        .faq-image {
            margin-top: 2rem;
        }

        /* Section Contact */
        .contact-form-wrapper {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .form-column {
            padding: 1.5rem;
        }
        
        .contact-info h1 {
            font-size: 1.8rem;
        }
        
        .contact-info p {
            font-size: 1rem;
        }
        
        .contact-item {
            font-size: 1rem;
        }

        /* Footer */
        .footer-content {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        
        .social-links {
            justify-content: center;
        }
    }

    /* Pour les très petits écrans */
    @media (max-width: 480px) {
        .text-content h1 {
            font-size: 1.8rem;
        }
        
        .text-content p {
            font-size: 1rem;
        }
        
        .about-text h1 {
            font-size: 1.8rem;
        }
        
        .qualities-grid {
            grid-template-columns: 1fr;
        }
        
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .service-item {
            font-size: 0.8rem;
            padding: 0.6rem 1rem;
        }
        
        .scroll-text-container {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .mouse-svg {
            width: 20px;
            height: 24px;
        }
    }

    /* Correction spécifique pour les écrans moyens */
    @media (max-width: 1024px) and (min-width: 769px) {
        .projets-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .about-columns {
            gap: 3rem;
        }
        
        .columns-wrapper {
            gap: 3rem;
        }
    }

    /* Empêcher le zoom sur les inputs iOS */
    @media (max-width: 768px) {
        input,
        textarea,
        select {
            font-size: 16px; /* Empêche le zoom automatique sur iOS */
        }
    }
    
    /* ===== MODALE PACK DÉTAILLÉE ===== */

.pack-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pack-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 28, 20, 0.8);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.3);
    border: 2px solid #301c14;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pack-modal.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #301c14;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #8b4513;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #edeceb;
}

.modal-title {
    font-size: 2.2rem;
    color: #301c14;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.modal-column h3 {
    font-size: 1.4rem;
    color: #301c14;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pack-description {
    line-height: 1.6;
    color: #301c14;
}

.pack-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.info-item {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.info-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #301c14;
    flex: 1;
}

.info-value {
    color: #8b4513;
    font-weight: 500;
    text-align: right;
}

.modal-cta {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #301c14;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2rem;
}

.modal-cta:hover {
    background: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(48, 28, 20, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-container {
        padding: 2rem;
        margin: 1rem;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
}

.simple-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.simple-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 28, 20, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content-box {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 800px; /* PLUS LARGE */
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    border: 2px solid #301c14;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.simple-modal.active .modal-content-box {
    transform: scale(1);
    opacity: 1;
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #301c14;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: #8b4513;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #edeceb;
}

.modal-title {
    color: #301c14;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.modal-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.modal-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.column-title {
    color: #301c14;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Colonne gauche - Description */
.pack-description {
    color: #301c14;
    line-height: 1.6;
    font-size: 1rem;
}

.features-list {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.features-list h4 {
    color: #301c14;
    margin-bottom: 1rem;
    font-weight: 600;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: #301c14;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

/* Colonne droite - Infos */
.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    height: fit-content;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.info-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #301c14;
    flex: 1;
}

.info-value {
    color: #8b4513;
    font-weight: 500;
    text-align: right;
}

.modal-cta-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #301c14;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.modal-cta-btn:hover {
    background: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(48, 28, 20, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-content-box {
        padding: 2rem;
        margin: 1rem;
        max-width: 95%;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
}

/* Animation de sortie */
.simple-modal.closing .modal-content-box {
    transform: scale(0.7);
    opacity: 0;
}

.simple-modal.closing .modal-overlay {
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}