/* ===== Bloc 1 ===== */

        /* ============================================
           HERO SLIDER (style Helpo "promo")
           Le header reste absolu (style.css) et passe par dessus
           toute la zone slider en transparence.
           ============================================ */

        /* Force : pas d'espace au dessus du slider */
        body { margin: 0 !important; padding: 0 !important; }

        .home-promo {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin: 0;
            padding: 0 !important; /* override la regle globale section { padding: 70px 0 } */
        }

        /* Slider Slick : retire toutes les marges par defaut */
        .home-slider,
        .home-slider .slick-list,
        .home-slider .slick-track,
        .home-slider .slick-slide {
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Avant l'init Slick, on n'affiche que la 1ere slide pour eviter
           que les 3 slides s'empilent verticalement et faussent le layout */
        .home-slider:not(.slick-initialized) .home-slide:not(:first-child) {
            display: none !important;
        }

        /* Une slide */
        .home-slide {
            position: relative;
            width: 100%;
            height: 880px;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            display: flex !important;
            align-items: center;
            padding-top: 160px !important;
            padding-bottom: 60px;
        }

        /* Variante : slide a contenu centre */
        .home-slide--centered {
            justify-content: center;
            text-align: center;
        }

        .home-slide--centered .home-slide-content {
            text-align: center;
            max-width: 1200px;
        }

        .home-slide--centered .home-slide-title {
            max-width: 100%;
        }

        .home-slide--centered .home-slide-text {
            margin-left: auto;
            margin-right: auto;
        }

        /* Slide 1 : sous-titre Storytella jaune */
        .home-slide-handwrite {
            display: block;
            font-family: 'Storytella', cursive;
            font-size: 120px;
            color: #efc940;
            line-height: 1;
            font-weight: normal;
            letter-spacing: 0;
            margin-top: -10px;
            -webkit-text-stroke: 2px #efc940;
            text-stroke: 2px #efc940;
            paint-order: stroke fill;
        }

        /* Slide 1 : H1 principal en Quicksand 60px blanc */
        .home-slide-title--xl {
            font-size: 60px;
            font-weight: 700;
            color: #fff;
            line-height: 1;
            letter-spacing: -3.5px;
        }

        /* Overlay sombre sur l'image */
        .home-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(27, 42, 74, 0.30);
            z-index: 1;
        }

        /* Conteneur du contenu */
        .home-slide-content {
            position: relative;
            z-index: 2;
            max-width: 1440px;
            width: 100%;
            margin: 0 auto;
            padding: 0 40px;
            text-align: left;
        }

        /* Titre H1 */
        .home-slide-title {
            font-family: 'Quicksand', sans-serif;
            font-size: 60px;
            font-weight: 700;
            color: #fff;
            line-height: 1;
            letter-spacing: -3.5px;
            margin-bottom: 25px;
            max-width: 60%;
        }

        .home-slide-title span { display: block; }
        .home-slide-title .inv-bold { font-weight: 700; }
        .home-slide-title .inv-light { font-weight: 300; }

        /* Sous-titre */
        .home-slide-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 20px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.4;
            max-width: 900px;
            margin-bottom: 35px;
        }

        /* Bouton CTA : outline jaune transparent par defaut */
        .home-slide-btn {
            display: inline-block;
            font-family: 'Quicksand', sans-serif;
            font-size: 17px;
            font-weight: 600;
            color: #fff;
            background: transparent;
            border: 1.5px solid #efc940;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .home-slide-btn:hover {
            background: #efc940;
            color: #4a4c70;
            transform: translateY(-5px);
            box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
        }

        .home-slide-btn i {
            margin-left: 12px;
        }

        /* ============================================
           Navigation custom (style Helpo .slider__nav--promo)
           Compteur 1/3 + ligne 120px + cercles jaunes
           ============================================ */
        .home-slider-nav {
            position: absolute;
            bottom: 45px;
            right: 50px;
            z-index: 10;
            display: inline-flex;
            align-items: center;
        }

        /* Compteur "1/3" */
        .home-slider-count {
            font-family: 'Quicksand', sans-serif;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: -0.050em;
        }

        /* Ligne horizontale entre le compteur et les fleches */
        .home-slider-count::after {
            content: "";
            display: inline-block;
            vertical-align: middle;
            height: 1px;
            width: 120px;
            margin: 0 30px;
            background: #7b7da5;
        }

        /* Conteneur des fleches */
        .home-slider-arrows {
            display: inline-flex;
        }

        /* Fleches : cercles 45px contour jaune */
        .home-slider-prev,
        .home-slider-next {
            display: inline-flex !important;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            color: #fff;
            height: 45px;
            width: 45px;
            border: 2px solid #efc940;
            border-radius: 50%;
            background: transparent;
            transition: all 0.3s;
        }

        .home-slider-prev {
            margin-right: 17px;
        }

        .home-slider-prev:hover,
        .home-slider-next:hover {
            color: #343877;
            background-color: #efc940;
        }

        /* ============================================
           PANNEAU BAS-GAUCHE (style Helpo .promo-pannel)
           Watch our video + telephones + email
           Reste fixe par dessus toutes les slides
           ============================================ */
        .home-promo-pannel {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            max-width: 850px;
            background-color: #f9f7f6;
            display: flex;
            align-items: stretch;
            z-index: 5;
        }

        /* Bloc video (image floutee + bouton play) */
        .home-promo-pannel__video {
            position: relative;
            width: 100%;
            max-width: 300px;
            min-height: 110px;
            overflow: hidden;
            display: flex;
            flex-shrink: 0;
        }

        .home-promo-pannel__video::before {
            content: "";
            display: block;
            position: absolute;
            inset: 0;
            background-color: rgba(56, 57, 118, 0.79);
            z-index: 2;
        }

        .home-promo-pannel__video img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transform: scale(1);
            transition: transform 1s;
        }

        .home-promo-pannel__video:hover img {
            transform: scale(1.2);
        }

        .home-promo-pannel__video .video-trigger {
            color: #fff;
            position: relative;
            z-index: 2;
            margin: auto;
            transition: opacity 0.3s;
            display: flex;
            align-items: center;
            text-decoration: none;
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
            font-size: 15px;
            white-space: nowrap;
        }

        .home-promo-pannel__video .video-trigger i {
            color: #343877;
            height: 45px;
            width: 45px;
            min-width: 45px;
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            background-color: #fff;
            margin-left: 20px;
            transition: background-color 0.3s;
            font-size: 14px;
            flex-shrink: 0;
        }

        .home-promo-pannel__video .video-trigger:hover {
            opacity: 0.75;
        }

        /* Phones et Email : memes regles */
        .home-promo-pannel__phones,
        .home-promo-pannel__email {
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .home-promo-pannel__phones {
            width: 100%;
            max-width: 250px;
        }

        .home-promo-pannel__email {
            width: 100%;
            max-width: 250px;
        }

        .home-promo-pannel__title {
            color: #9e9e9e;
            font-family: 'Quicksand', sans-serif;
            font-size: 11px;
            line-height: 25px;
            font-weight: 700;
            text-transform: uppercase;
            margin: 0 0 4px 0;
            letter-spacing: 0.5px;
        }

        .home-promo-pannel__link {
            color: #4a4c70;
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: opacity 0.3s;
            display: inline-block;
        }

        .home-promo-pannel__phones .home-promo-pannel__link:not(:last-of-type) {
            margin-right: 15px;
        }

        .home-promo-pannel__link:hover {
            color: #4a4c70;
            opacity: 0.75;
        }

        /* Responsive : on cache phones+email, on garde juste la video */
        @media (max-width: 1024px) {
            .home-promo-pannel {
                max-width: 335px;
            }
            .home-promo-pannel__phones,
            .home-promo-pannel__email {
                display: none;
            }
        }

        /* ============================================
           LIGHTBOX VIDEO (popup YouTube)
           ============================================ */
        .video-lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-lightbox.is-open {
            display: flex;
            opacity: 1;
        }

        .video-lightbox__inner {
            position: relative;
            width: 100%;
            max-width: 1100px;
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
        }

        .video-lightbox__inner iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .video-lightbox__close {
            position: absolute;
            top: -50px;
            right: -10px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fff;
            border: none;
            cursor: pointer;
            color: #343877;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s, background 0.2s;
        }

        .video-lightbox__close:hover {
            background: #efc940;
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .video-lightbox__close {
                top: -45px;
                right: 0;
            }
        }

        /* ============================================
           SECTION "TROIS ENGAGEMENTS" — overrides inv-pourquoi
           (memes patterns que la section "Le Constat" d'entreprises.php)
           ============================================ */

        /* 4 cards au lieu de 3 : on annule le grid-column: 2 force sur le last-child */
        .inv-pourquoi-cards .inv-pourquoi-card:last-child {
            grid-column: auto;
        }

        /* Card 3 "credentials" : fond vert pale + contenu centre verticalement */
        .inv-pourquoi-card--credentials {
            background: #dfe8a0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .inv-pourquoi-credentials-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .inv-pourquoi-credentials-list li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .inv-pourquoi-credentials-list li:not(:last-child) {
            border-bottom: 1px solid rgba(74, 76, 112, 0.15);
        }

        /* Picto rond sur fond blanc translucide */
        .inv-pourquoi-credentials-list > li > i {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            color: #5a6b2a;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Label (15px bold) et sous-titre (13px) */
        .inv-pourquoi-credentials-list > li > div {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .credentials-label {
            font-family: 'Quicksand', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: #4a4c70;
        }

        .credentials-sub {
            font-family: 'Quicksand', sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: #5a6b2a;
            margin-top: 2px;
        }

        /* ============================================
           SECTION : ECOSYSTEME (transition vers La Solution)
           Contenu centre, mot manuscrit Storytella au dessus du H2
           ============================================ */
        .home-ecosystem {
            padding: 120px 0 90px;
            background: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Backgrounds decoratifs */
        .home-ecosystem-bg {
            position: absolute;
            z-index: 0;
            pointer-events: none;
            max-width: 35%;
            height: auto;
        }

        .home-ecosystem-bg--right {
            top: -80px;
            right: 0;
        }

        .home-ecosystem-bg--left {
            bottom: 40px;
            left: 0;
            max-width: 20%;
        }

        .home-ecosystem-container {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Mot manuscrit au dessus du H2 */
        .home-ecosystem-handwrite {
            display: block;
            font-family: 'Storytella', cursive;
            font-size: 200px;
            color: #efc940;
            line-height: 0.85;
            letter-spacing: 0;
            margin-bottom: -20px;
            white-space: nowrap;
            -webkit-text-stroke: 2px #efc940;
            paint-order: stroke fill;
        }

        /* H2 */
        .home-ecosystem-title {
            font-family: 'Quicksand', sans-serif;
            font-size: 50px;
            color: #4a4c70;
            line-height: 1.1;
            letter-spacing: -3.5px;
            margin-bottom: 20px;
        }

        .home-ecosystem-title .inv-bold { font-weight: 700; }
        .home-ecosystem-title .inv-light { font-weight: 400; }

        /* Paragraphe */
        .home-ecosystem-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #666;
            line-height: 1.5;
            margin: 0 auto;
            max-width: 700px;
        }

        /* Grille 2 cards en forme de capsule verticale */
        .home-eco-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 800px;
            margin: 70px auto 0;
            align-items: start;
        }

        /* Card individuelle - forme capsule verticale */
        .home-eco-card {
            background: #f9f7f6;
            border-radius: 9999px; /* capsule : rayon enorme = coins fully arrondis */
            padding: 30px 20px 50px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.4s;
        }

        /* Decalage vertical : 1ere card remonte, 2eme card descend (effet zigzag) */
        .home-eco-card:nth-child(1) {
            margin-top: -30px;
        }

        .home-eco-card:nth-child(2) {
            margin-top: 40px;
        }

        .home-eco-card:hover {
            transform: translateY(-8px);
        }

        /* Image circulaire en haut de la capsule */
        .home-eco-card-img {
            position: relative;
            width: 95%;
            margin: 0 auto 25px;
            border-radius: 50%;
            overflow: hidden;
        }

        .home-eco-card-img::before {
            content: "";
            display: block;
            padding-top: 100%; /* carre = cercle parfait */
        }

        .home-eco-card-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .home-eco-card:hover .home-eco-card-img img {
            transform: scale(1.08);
        }

        /* Body de la card */
        .home-eco-card-body {
            padding: 0 30px;
            display: flex;
            flex-direction: column;
            flex: 1;
            width: 100%;
        }

        /* Titre centre */
        .home-eco-card-title {
            font-family: 'Quicksand', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #4a4c70;
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin: 0 0 22px;
            text-align: center;
        }

        /* Liste 3 lignes centrees avec separateurs */
        .home-eco-card-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
            flex: 1;
        }

        .home-eco-card-list li {
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #666;
            line-height: 1.4;
            padding: 12px 0;
            border-bottom: 1px solid rgba(74, 76, 112, 0.1);
            text-align: center;
        }

        .home-eco-card-list li:first-child {
            padding-top: 0;
        }

        .home-eco-card-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .home-eco-card-list strong {
            color: #4a4c70;
            font-weight: 700;
        }

        /* Label texte au dessus du bouton */
        .home-eco-card-label {
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #4a4c70;
            text-align: center;
            margin: 0 0 4px;
        }

        /* Bouton outline jaune (style coherent avec le reste de la page) */
        .home-eco-card-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            align-self: center;
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #4a4c70;
            text-decoration: none;
            background: #fff;
            border: 1.5px solid #efc940;
            padding: 12px 28px;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .home-eco-card-btn i {
            margin-left: 12px;
        }

        .home-eco-card-btn:hover {
            background: #efc940;
            color: #4a4c70;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .home-ecosystem-handwrite { font-size: 140px; }
            .home-ecosystem-title { font-size: 36px; letter-spacing: -2px; }
            .home-eco-cards { grid-template-columns: 1fr; gap: 30px; }
        }

        @media (max-width: 768px) {
            .home-ecosystem { padding: 80px 0 80px; }
            .home-ecosystem-handwrite { font-size: 90px; margin-bottom: -10px; }
            .home-ecosystem-title { font-size: 28px; }
            .home-eco-card-body { padding: 25px; }
            .home-eco-card-title { font-size: 22px; }
        }

        /* ============================================
           SECTION : TESTIMONIALS (style Helpo style-3)
           Heading + nav a gauche, slider 3 cards a droite
           ============================================ */
        .testimonials--style-3 {
            position: relative;
            padding: 125px 0;
            overflow: hidden;
        }

        /* Bandeau beige sur la partie droite (52% de la section) */
        .testimonials--style-3::before {
            content: "";
            display: block;
            height: 100%;
            width: 52%;
            background-color: #f9f7f6;
            position: absolute;
            top: 0;
            right: 0;
            z-index: 0;
        }

        .testimonials-container {
            position: relative;
            z-index: 1;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: end;
        }

        /* Colonne gauche : heading + nav */
        .testimonials-heading {
            display: flex;
            flex-direction: column;
        }

        .testimonials-title {
            font-family: 'Quicksand', sans-serif;
            font-size: 50px;
            color: #4a4c70;
            line-height: 1.1;
            letter-spacing: -3.5px;
            margin: 0 0 25px;
        }

        .testimonials-title .inv-bold { font-weight: 700; }
        .testimonials-title .inv-light { font-weight: 400; }

        .testimonials-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #666;
            line-height: 1.5;
            margin: 0 0 50px;
        }

        /* Nav fleches (style identique au home-slider-nav) */
        .testimonials-nav {
            display: inline-flex;
        }

        .testimonials-prev,
        .testimonials-next {
            display: inline-flex !important;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            color: #4a4c70;
            height: 45px;
            width: 45px;
            border: 2px solid #efc940;
            border-radius: 50%;
            background: transparent;
            transition: all 0.3s;
        }

        .testimonials-prev {
            margin-right: 17px;
        }

        .testimonials-prev:hover,
        .testimonials-next:hover {
            color: #fff;
            background-color: #efc940;
        }

        /* Colonne droite : slider qui deborde a droite */
        .testimonials-slider-holder {
            margin-right: calc(50% - 50vw + 40px);
            overflow: hidden;
        }

        .testimonials-slider .slick-list {
            overflow: visible;
            padding: 20px 0 50px;
        }

        .testimonials-slider .slick-slide {
            margin: 0 15px;
            height: auto;
        }

        .testimonials-slider .slick-track {
            display: flex;
        }

        .testimonials-slider .slick-slide > div {
            height: 100%;
        }

        /* Card testimonial */
        .testimonials-slider__item {
            position: relative;
            background-color: #fff;
            padding: 90px 30px 43px 30px;
            box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.06);
            height: 100%;
            border-radius: 8px;
            overflow: visible;
        }

        /* Grosse guillemet jaune (depasse legerement en haut de la card) */
        .testimonials-slider__icon {
            color: #efc940;
            font-family: 'Quicksand', sans-serif;
            font-size: 150px;
            line-height: 30px;
            font-weight: 700;
            position: absolute;
            top: 20px;
            left: 30px;
            pointer-events: none;
        }

        /* Texte du testimonial */
        .testimonials-slider__text p {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            line-height: 1.6;
            color: #555;
            margin: 0 0 25px;
        }

        /* Auteur */
        .testimonials-slider__author {
            color: #4a4c70;
            font-family: 'Quicksand', sans-serif;
            font-size: 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .testimonials-slider__author::before {
            content: "";
            display: inline-block;
            height: 2px;
            width: 40px;
            background-color: #efc940;
            margin-right: 20px;
        }

        .testimonials-slider__name {
            color: #4a4c70;
        }

        .testimonials-slider__position {
            color: #999;
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .testimonials-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .testimonials--style-3::before {
                display: none;
            }
            .testimonials-title {
                font-size: 36px;
                letter-spacing: -2px;
                margin-bottom: 30px;
            }
            .testimonials-slider-holder {
                margin-right: 0;
            }
        }

        @media (max-width: 768px) {
            .testimonials--style-3 {
                padding: 80px 0;
            }
            .testimonials-title {
                font-size: 28px;
            }
        }

        /* ============================================
           SECTION : MINI FAQ (style Helpo accordion Variant 1)
           Section centree, fond gris clair, FAQ en 2 colonnes
           ============================================ */
        .home-faq {
            padding: 120px 0;
            background: #fff;
        }

        .home-faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Header centre */
        .home-faq-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .home-faq-title {
            font-family: 'Quicksand', sans-serif;
            font-size: 50px;
            color: #4a4c70;
            line-height: 1.1;
            letter-spacing: -3.5px;
            margin: 0 0 20px;
        }

        .home-faq-title .inv-bold { font-weight: 700; }
        .home-faq-title .inv-light { font-weight: 400; }

        .home-faq-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #666;
            line-height: 1.5;
            margin: 0;
        }

        /* Grille 2 colonnes */
        .home-faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px 30px;
            align-items: start;
        }

        /* Item FAQ individuel */
        .home-faq-item {
            background: #f9f7f6;
            border-radius: 35px;
        }

        /* Header cliquable (question + bouton toggle) */
        .home-faq-item-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 15px 10px 30px;
            cursor: pointer;
            min-height: 72px;
        }

        .home-faq-item-question {
            font-family: 'Quicksand', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: #4a4c70;
            line-height: 1.3;
            margin: 0;
            width: calc(100% - 70px);
        }

        /* Bouton rond avec + / - */
        .home-faq-toggle {
            position: relative;
            flex-shrink: 0;
            height: 52px;
            width: 52px;
            border: 2px solid #efc940;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .home-faq-item-header:hover .home-faq-toggle {
            background: #efc940;
        }

        /* Barre horizontale (toujours visible) */
        .home-faq-toggle::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #4a4c70;
            width: 14px;
            height: 2px;
        }

        /* Barre verticale (cachee quand actif) */
        .home-faq-toggle::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #4a4c70;
            height: 14px;
            width: 2px;
            transition: opacity 0.3s;
        }

        .home-faq-item.is-open .home-faq-toggle::before {
            opacity: 0;
        }

        /* Bloc reponse */
        .home-faq-item-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .home-faq-item.is-open .home-faq-item-answer {
            padding: 0 60px 0px 30px;
            margin-top: -15px;
        }

        .home-faq-item-answer p {
            font-family: 'Quicksand', sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: #666;
            line-height: 1.6;
            margin: 0;
            margin-bottom: 20px;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .home-faq-grid {
                grid-template-columns: 1fr;
            }
            .home-faq-title {
                font-size: 32px;
                letter-spacing: -1.5px;
            }
            .home-faq {
                padding: 80px 0;
            }
        }

        /* Sections masquees sur la home */
        .inv-modules,
        .inv-partners,
        .inv-transform,
        .inv-cta,
        .home-eligibilite,
        .home-waitlist,
        .home-soumission,
        .home-mentions {
            display: none !important;
        }

        /* Override : ajustement des marges sur la section "Ou En Sommes Nous" */
        .inv-launch {
            padding-top: 100px;
            padding-bottom: 180px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .home-slide-title { font-size: 50px; max-width: 80%; }
        }

        @media (max-width: 768px) {
            .home-slide { height: 560px; }
            .home-slide-title { font-size: 36px; max-width: 100%; letter-spacing: -2px; }
            .home-slide-text { font-size: 16px; }
            .home-slider-nav { bottom: 25px; right: 25px; gap: 15px; }
        }
    


/* ===== Bloc 2 ===== */

        /* ============================================
           HERO : double CTA (primaire + outline)
           ============================================ */
        .home-slide-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
            justify-content: center;
        }
        .home-slide-btn--outline {
            background: transparent !important;
            border: 2px solid #fff !important;
            color: #fff !important;
        }
        .home-slide-btn--outline:hover {
            background: rgba(255,255,255,0.1) !important;
        }
        @media (max-width: 768px) {
            .home-slide-ctas { flex-direction: column; align-items: stretch; }
        }

        /* ============================================
           BLOC A : BANDEAU RISQUE REGLEMENTAIRE
           ============================================ */
        .bandeau-risque {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            width: 100%;
            padding: 15px 40px;
            background: #FFF0E0;
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            color: #1a1a1a;
            line-height: 1.5;
            text-align: center;
        }
        .bandeau-risque i {
            color: #F59E0B;
            font-size: 18px;
            flex-shrink: 0;
        }
        .bandeau-risque p {
            margin: 0;
        }
        @media (max-width: 768px) {
            .bandeau-risque {
                padding: 12px 20px;
                font-size: 12px;
            }
        }

        /* ============================================
           BLOC B : TYPES DE PROJETS FINANCES
           ============================================ */
        /* ============================================
           SECTION : LES PROJETS (style Helpo About Us mono)
           Fond #f5f3eb pleine largeur, H2 gauche, paragraphe droite,
           4 items en ligne avec separateur vertical
           ============================================ */
        .home-projets-types {
            padding: 120px 0;
            background: #f9f7f6;
        }
        .home-projets-types-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Header 2 colonnes : H2 gauche + paragraphe droite */
        .home-projets-types-header {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 160px;
            align-items: start;
            margin-bottom: 130px;
        }
        .home-projets-types-title {
            font-family: 'Quicksand', sans-serif;
            font-size: 50px;
            font-weight: 400;
            color: #4a4c70;
            line-height: 1.1;
            letter-spacing: -3.5px;
            margin: 0;
        }
        .home-projets-types-title em {
            font-style: normal;
            font-weight: 700;
        }
        .home-projets-types-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #666;
            line-height: 1.5;
            margin: 0;
            padding-top: 30px;
        }
        .home-projets-types-text strong {
            color: #4a4c70;
        }

        /* Grille 4 colonnes */
        .home-projets-types-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        /* Chaque item */
        .home-projet-type-card {
            padding: 0 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: none;
            border-radius: 0;
            box-shadow: none;
        }
        .home-projet-type-card:first-child {
            padding-left: 0;
        }
        .home-projet-type-card:last-child {
            padding-right: 0;
        }

        /* Icone FA dans un carre colore */
        .home-projet-type-icon {
            width: 65px;
            height: 65px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            margin-bottom: 10px;
        }
        .home-projet-type-icon--1 { background: #dfe8a0; }
        .home-projet-type-icon--2 { background: #fceabb; }
        .home-projet-type-icon--3 { background: #d4e8f7; }
        .home-projet-type-icon--4 { background: #f5d5d5; }
        .home-projet-type-label {
            font-family: 'Quicksand', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #4a4c70;
            letter-spacing: -0.5px;
            margin: 0;
        }
        .home-projet-type-card p {
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: #666;
            line-height: 1.5;
            margin: 0;
        }
        .home-projet-type-badge {
            display: inline-block;
            align-self: flex-start;
            padding: 5px 14px;
            border-radius: 14px;
            font-family: 'Quicksand', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.3px;
            margin-top: 5px;
            white-space: nowrap;
        }
        .home-projet-type-badge--eleve {
            background: rgba(239, 201, 64, 0.2);
            color: #92400E;
        }
        .home-projet-type-badge--modere {
            background: rgba(139, 189, 232, 0.2);
            color: #1E40AF;
        }
        .home-projet-type-badge--maitrise {
            background: rgba(118, 215, 133, 0.2);
            color: #065F46;
        }

        /* Compteurs (style Helpo counter-item--style-3) */
        .home-projets-counters {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 120px;
            text-align: center;
        }

        .home-projets-counter-title {
            font-family: 'Quicksand', sans-serif;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.050em;
            color: #4a4c70;
            margin: 0;
        }

        .home-projets-counter-value {
            font-family: 'Quicksand', sans-serif;
            font-size: 100px;
            font-weight: 700;
            color: #5e5c8b;
            line-height: 1.2;
            letter-spacing: -0.07em;
        }

        .home-projets-counter-value span {
            font-size: 100px;
            font-weight: 700;
            color: #5e5c8b;
        }

        @media (max-width: 1024px) {
            .home-projets-types-header { grid-template-columns: 1fr; gap: 30px; }
            .home-projets-types-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .home-projet-type-card { padding: 0; }
            .home-projets-counter-value { font-size: 70px; }
            .home-projets-counter-value span { font-size: 40px; }
        }
        @media (max-width: 768px) {
            .home-projets-types { padding: 80px 0; }
            .home-projets-types-title { font-size: 30px; letter-spacing: -2px; }
            .home-projets-types-grid { grid-template-columns: 1fr; gap: 30px; }
            .home-projets-counters { grid-template-columns: 1fr; gap: 40px; margin-top: 60px; }
            .home-projets-counter-value { font-size: 60px; }
        }

        /* ============================================
           SECTION : ACTION BLOCKS (style Helpo action-block)
           2 colonnes pleine largeur, image bg + overlay + texte blanc
           ============================================ */
        .home-action-blocks {
            padding: 0;
        }

        .home-action-blocks-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .home-action-block {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .home-action-block::before {
            content: "";
            display: block;
            padding-top: 55.205%;
        }

        .home-action-block::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(27, 42, 74, 0.35);
            z-index: 1;
        }

        /* Image de fond (cover) */
        .home-action-block-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            z-index: 0;
            transition: transform 1s;
        }

        .home-action-block:hover .home-action-block-bg {
            transform: scale(1.2);
        }

        /* Contenu texte */
        .home-action-block-inner {
            position: relative;
            z-index: 2;
            color: #fff;
            padding: 80px 15px;
            width: 100%;
            max-width: 500px;
        }

        .home-action-block-pretitle {
            display: block;
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #efc940;
            margin-bottom: 10px;
        }

        .home-action-block-title {
            font-family: 'Quicksand', sans-serif;
            color: #fff;
            font-size: 46px;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.07em;
            margin: 0 0 15px;
        }

        .home-action-block-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
            margin: 0;
        }

        .home-action-block-btn {
            display: inline-block;
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #4a4c70;
            background: #efc940;
            border: none;
            padding: 15px 45px;
            border-radius: 50px;
            margin-top: 30px;
            text-decoration: none;
            transition: background 0.3s, color 0.3s;
        }

        .home-action-block-btn:hover {
            color: #fff;
            background: #5f608a;
        }

        @media (max-width: 768px) {
            .home-action-blocks-row { grid-template-columns: 1fr; }
            .home-action-block-inner { padding: 50px 20px; }
            .home-action-block-title { font-size: 28px; }
        }

        /* ============================================
           POPUPS / MODALES (formulaires)
           Style coherent : Quicksand, #4a4c70, #efc940
           ============================================ */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 9998;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .modal-overlay.is-open {
            opacity: 1;
            visibility: visible;
        }

        .modal-box {
            position: relative;
            background: #fff;
            border-radius: 20px;
            width: 100%;
            max-width: 560px;
            padding: 50px 45px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
            text-align: center;
            max-height: 90vh;
            overflow-y: auto;
            transform: translateY(30px) scale(0.97);
            transition: transform 0.4s ease;
        }

        .modal-overlay.is-open .modal-box {
            transform: translateY(0) scale(1);
        }

        .modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f5f3eb;
            border: none;
            cursor: pointer;
            color: #4a4c70;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .modal-close:hover {
            background: #efc940;
        }

        .modal-pretitle {
            display: block;
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #9e9e9e;
            margin-bottom: 10px;
        }

        .modal-title {
            font-family: 'Quicksand', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #4a4c70;
            line-height: 1.1;
            letter-spacing: -2px;
            margin: 0 0 12px;
        }

        .modal-title em {
            font-style: normal;
            color: #efc940;
        }

        .modal-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: #666;
            line-height: 1.5;
            margin: 0 0 30px;
        }

        /* Champs de formulaire */
        .modal-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .modal-field {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .modal-field span {
            font-family: 'Quicksand', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #4a4c70;
            margin-bottom: 6px;
        }

        .modal-field input,
        .modal-field select {
            font-family: 'Quicksand', sans-serif;
            font-size: 15px;
            padding: 12px 16px;
            border: 1.5px solid #e0e0e0;
            border-radius: 10px;
            color: #333;
            background: #fff;
            transition: border-color 0.3s;
            outline: none;
        }

        .modal-field input:focus,
        .modal-field select:focus {
            border-color: #efc940;
        }

        .modal-field input::placeholder {
            color: #bbb;
        }

        /* Radios */
        .modal-radios {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 25px;
        }

        .modal-radio {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #4a4c70;
            cursor: pointer;
        }

        .modal-radio input {
            accent-color: #efc940;
        }

        /* Bouton submit */
        .modal-submit {
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #4a4c70;
            background: #efc940;
            border: none;
            padding: 14px 40px;
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            margin-top: 10px;
        }

        .modal-submit:hover {
            background: #d4ae2e;
            transform: translateY(-2px);
        }

        .modal-micro {
            font-family: 'Quicksand', sans-serif;
            font-size: 12px;
            color: #999;
            margin-top: 15px;
            line-height: 1.4;
        }

        .modal-micro a {
            color: #efc940;
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            .modal-box { padding: 35px 25px; }
            .modal-form-row { grid-template-columns: 1fr; }
            .modal-radios { flex-direction: column; align-items: flex-start; }
            .modal-title { font-size: 26px; }
        }

        /* ============================================
           BLOC C : ELIGIBILITE PORTEUR
           ============================================ */
        .home-eligibilite {
            padding: 100px 0;
            background: #fff;
        }
        .home-eligibilite-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .home-eligibilite-header {
            text-align: left;
            margin-bottom: 50px;
        }
        .home-eligibilite-header .heading__pre-title {
            color: #00B4D8;
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
        }
        .home-eligibilite-title {
            font-family: 'Raleway', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: #1B2A4A;
        }
        .home-eligibilite-title em {
            font-style: normal;
            color: #00B4D8;
        }
        .home-eligibilite-grid {
            display: grid;
            grid-template-columns: 60% 40%;
            gap: 40px;
            align-items: start;
        }
        .home-eligibilite-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .home-eligibilite-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid #E0E0E0;
            font-size: 16px;
            color: #333;
        }
        .home-eligibilite-list li:last-child { border-bottom: none; }
        .home-eligibilite-list li i {
            color: #00B4D8;
            font-size: 16px;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .home-eligibilite-aside {
            background: #F0FAFA;
            border-radius: 12px;
            padding: 30px;
        }
        .home-eligibilite-aside h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #1B2A4A;
            margin-bottom: 12px;
        }
        .home-eligibilite-aside p {
            font-size: 15px;
            color: #555;
            line-height: 1.55;
            margin-bottom: 20px;
        }
        .home-eligibilite-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #00B4D8;
            color: #fff !important;
            padding: 14px 28px;
            border-radius: 100px;
            font-family: 'Libre Franklin', sans-serif;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: background 0.25s ease;
        }
        .home-eligibilite-btn:hover {
            background: #0096B7;
        }
        @media (max-width: 900px) {
            .home-eligibilite-grid { grid-template-columns: 1fr; gap: 30px; }
            .home-eligibilite-title { font-size: 30px; }
            .home-eligibilite { padding: 70px 0; }
        }

        /* ============================================
           BLOC D : FORMULAIRE LISTE D'ATTENTE
           ============================================ */
        .home-waitlist {
            padding: 100px 0;
            background: #1B2A4A;
            color: #fff;
        }
        .home-waitlist-container {
            max-width: 560px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .home-waitlist-pretitle {
            color: #00B4D8 !important;
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
        }
        .home-waitlist-title {
            font-family: 'Raleway', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
        }
        .home-waitlist-title em {
            font-style: normal;
            color: #00B4D8;
        }
        .home-waitlist-text {
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
            margin-bottom: 35px;
        }
        .home-waitlist-form {
            text-align: left;
        }
        .home-waitlist-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 18px;
        }
        .home-waitlist-field {
            display: flex;
            flex-direction: column;
        }
        .home-waitlist-field span {
            font-size: 13px;
            color: rgba(255,255,255,0.75);
            margin-bottom: 6px;
            font-weight: 500;
        }
        .home-waitlist-field input {
            padding: 13px 16px;
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 8px;
            background: rgba(255,255,255,0.08);
            color: #fff;
            font-family: 'Libre Franklin', sans-serif;
            font-size: 15px;
        }
        .home-waitlist-field input::placeholder {
            color: rgba(255,255,255,0.4);
        }
        .home-waitlist-field input:focus {
            outline: none;
            border-color: #00B4D8;
            background: rgba(255,255,255,0.12);
        }
        .home-waitlist-radios {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 18px 0 25px;
        }
        .home-waitlist-radio {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .home-waitlist-radio:hover {
            border-color: #00B4D8;
        }
        .home-waitlist-radio input[type="radio"] {
            accent-color: #00B4D8;
        }
        .home-waitlist-submit {
            width: 100%;
            padding: 16px;
            background: #00B4D8;
            color: #fff;
            border: none;
            border-radius: 100px;
            font-family: 'Libre Franklin', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s ease;
        }
        .home-waitlist-submit:hover {
            background: #0096B7;
        }
        .home-waitlist-micro {
            margin-top: 14px;
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            line-height: 1.55;
            text-align: center;
        }
        .home-waitlist-micro a {
            color: #00B4D8;
            text-decoration: underline;
        }
        @media (max-width: 560px) {
            .home-waitlist { padding: 70px 0; }
            .home-waitlist-title { font-size: 30px; }
            .home-waitlist-row { grid-template-columns: 1fr; }
        }

        /* ============================================
           BLOC E : FORMULAIRE SOUMISSION PORTEUR
           ============================================ */
        .home-soumission {
            padding: 100px 0;
            background: #F5F5F5;
        }
        .home-soumission-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .home-soumission .heading__pre-title {
            color: #00B4D8;
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
        }
        .home-soumission-title {
            font-family: 'Raleway', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: #1B2A4A;
            margin-bottom: 18px;
        }
        .home-soumission-title em {
            font-style: normal;
            color: #00B4D8;
        }
        .home-soumission-text {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 35px;
        }
        .home-soumission-form {
            text-align: left;
        }
        .home-soumission-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 18px;
        }
        .home-soumission-field {
            display: flex;
            flex-direction: column;
        }
        .home-soumission-field span {
            font-size: 13px;
            color: #555;
            margin-bottom: 6px;
            font-weight: 500;
        }
        .home-soumission-field input,
        .home-soumission-field select {
            padding: 13px 16px;
            border: 1px solid #E0E0E0;
            border-radius: 8px;
            background: #fff;
            color: #333;
            font-family: 'Libre Franklin', sans-serif;
            font-size: 15px;
        }
        .home-soumission-field input:focus,
        .home-soumission-field select:focus {
            outline: none;
            border-color: #1B2A4A;
        }
        .home-soumission-submit {
            width: 100%;
            padding: 16px;
            margin-top: 10px;
            background: #1B2A4A;
            color: #fff;
            border: none;
            border-radius: 100px;
            font-family: 'Libre Franklin', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s ease;
        }
        .home-soumission-submit:hover {
            background: #2C3E6B;
        }
        .home-soumission-micro {
            margin-top: 14px;
            font-size: 12px;
            color: #666;
            line-height: 1.55;
            text-align: center;
        }
        .home-soumission-micro a {
            color: #00B4D8;
            text-decoration: underline;
        }
        @media (max-width: 600px) {
            .home-soumission { padding: 70px 0; }
            .home-soumission-title { font-size: 30px; }
            .home-soumission-row { grid-template-columns: 1fr; }
        }

        /* ============================================
           BLOC F : MENTIONS LEGALES
           ============================================ */
        .home-mentions {
            padding: 40px 0 20px;
            background: #F5F5F5;
            border-top: 1px solid #E0E0E0;
        }
        .home-mentions-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .home-mentions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            padding-bottom: 25px;
            border-bottom: 1px solid #E0E0E0;
        }
        .home-mentions-col h4 {
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #1B2A4A;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }
        .home-mentions-col p {
            font-size: 12px;
            color: #666;
            line-height: 1.55;
            margin: 0 0 6px;
        }
        .home-mentions-col a {
            display: block;
            font-size: 12px;
            color: #00B4D8;
            padding: 3px 0;
            text-decoration: none;
        }
        .home-mentions-col a:hover {
            text-decoration: underline;
        }
        .home-mentions-bottom {
            padding-top: 18px;
            text-align: center;
            font-size: 11px;
            color: #999;
        }
        @media (max-width: 768px) {
            .home-mentions-grid { grid-template-columns: 1fr; gap: 25px; }
        }
