/* =========================
   ACCUEIL V2 - HERO
   ========================= */

#accueil-v2 .hero-v2 {
    position: relative;
    overflow: hidden;
}

/* Image hero en <img> pour LCP optimisé — couvre tout le hero */
#accueil-v2 .hero-v2__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

#accueil-v2 .hero-v2__overlay {
    position: relative;
    z-index: 1;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 30px 0 10px 0;
    background-color: #0000004d;
}

#accueil-v2 .hero-v2__content {
    position: relative;
    z-index: 2;
}

#accueil-v2 .hero-v2__content {
    width: 92%;
    margin: 0 auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Typo mobile */
#accueil-v2 .hero-v2__content h1 {
    font-family: inherit;
    font-size: 32px;
    line-height: 1.1;
    margin: 0;
    font-weight: 800;
    color: #fff;
}

#accueil-v2 .hero-v2__subtitle {
    font-family: inherit;
    font-size: 16px;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 0;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

/* CTA mobile */
#accueil-v2 .hero-v2__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
    width: 100%;
}

#accueil-v2 .hero-v2__ctas a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
}

#accueil-v2 .hero-v2__ctas a.btn-primary {
    background: #97c01e;
    color: #fff;
    max-width: 240px;
    margin: auto;
}
/* 
#accueil-v2 .hero-v2__ctas a.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    border-color: rgba(255, 255, 255, 0.65);
} */

#accueil-v2 .home-v2-product-card .home-v2-product-card__img {
    width: 100%;
}

#accueil-v2 .home-v2-product-card__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* =========================
    PRODUITS - mobile
   ========================= */

#accueil-v2 .home-v2-product-cards {
    background: #dde3efcc;
    padding: 24px 0;
}

#accueil-v2 .home-v2-product-cards__inner {
    width: 92%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr; /* 1 colonne mobile */
    gap: 18px;
}

#accueil-v2 .home-v2-product-card {
    padding: 37px 14px 14px 14px;
    border-top: 8px solid #fff;
    max-width: 500px;
    margin: auto;
}

#accueil-v2 .home-v2-product-card:hover {
    border-top: 8px solid #97c01e;
    transition: border-color 0.3s;
}

#accueil-v2 .home-v2-product-card__title h2 {
    margin: 0 0 6px;
    line-height: 1.2;
    color: #111;
    text-transform: none !important;
    font-weight: normal !important;
    /* clamp : 18px mini → s'adapte à la largeur de l'écran → 30px maxi */
    font-size: clamp(18px, 5vw, 30px) !important;
    text-align: center !important;
    /* Empêche le retour à la ligne forcé sur mobile */
    white-space: nowrap;
}

#accueil-v2 .home-v2-product-card__subtitle {
    margin: 0 0 14px;
    color: #111;
    /* clamp : 12px mini → s'adapte → 15px maxi */
    font-size: clamp(12px, 3.5vw, 15px);
    /* Reste sur une seule ligne, réduit si nécessaire */
    white-space: nowrap;
}

#accueil-v2 .home-v2-product-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.7);
    font-weight: 700;
    white-space: nowrap;
}

#accueil-v2 .home-v2-product-card__btn:hover {
    background: #97c01e;
    color: #fff;
    border-color: #97c01e;
    transition:
        background-color 0.3s,
        color 0.3s,
        border-color 0.3s;
}

#accueil-v2 .home-v2-product-card__btn_2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    background: #97c01e;
    color: #fff;
    text-decoration: none;
    border: 2px solid #97c01e;
    font-weight: 700;
    white-space: nowrap;
}

#accueil-v2 .home-v2-product-card__btn_2:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    border-color: rgba(255, 255, 255, 0.7);
    transition:
        background-color 0.3s,
        color 0.3s,
        border-color 0.3s;
}

#accueil-v2 .home-v2-product-card__img {
    margin-top: 10px;
    width: 100%;
}

/* =========================
   TABLETTE / DESKTOP
   ========================= */

@media (min-width: 768px) {
    #accueil-v2 .hero-v2__overlay {
        min-height: 70vh;
        align-items: flex-start;
    }

    #accueil-v2 .hero-v2__content h1 {
        font-size: clamp(40px, 4vw, 56px);
        margin-top: 100px;
    }

    #accueil-v2 .hero-v2__subtitle {
        font-size: 18px;
    }

    #accueil-v2 .hero-v2__ctas {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }

    #accueil-v2 .home-v2-product-cards__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        width: min(1100px, 92%);
    }

    #accueil-v2 .home-v2-product-card__title {
        font-size: 24px;
        text-align: center;
    }
}

@media (min-width: 950px) {
    #accueil-v2 .home-v2-product-cards__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================
   ACCUEIL V2 - REASONS SLIDER (Section 1) EX tabs
   ========================= */

#accueil-v2 .home-v2-reasons {
    padding: 26px 0;
    background: #fff;
}

#accueil-v2 .home-v2-reasons__inner {
    width: 92%;
    margin: 0 auto;
}

#accueil-v2 .home-v2-reasons__slider {
    display: flex;
    align-items: center;
    gap: 8px;
}

#accueil-v2 .home-v2-reasons__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    scrollbar-width: none;
    /* Toutes les cartes prennent la même hauteur (celle de la plus grande) */
    align-items: stretch;
}

#accueil-v2 .home-v2-reasons__track::-webkit-scrollbar {
    display: none;
}

#accueil-v2 .home-v2-reasons__card {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: start;
    background: #ecf5d7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 14px;
    min-height: 150px;
    box-sizing: border-box;
    /* Flex column : permet de pousser le bouton en bas quelle que soit la hauteur du contenu */
    display: flex;
    flex-direction: column;
}

#accueil-v2 .home-v2-reasons__title {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 16px;
    color: #111;
}

#accueil-v2 .home-v2-reasons__text {
    margin: 0 0 10px;
    color: #111;
    opacity: 0.9;
    line-height: 1.45;
    font-size: 14px;
    text-align: justify;
}

#accueil-v2 .home-v2-reasons__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 900;
    color: #111;
    /* Pousse le bouton en bas de la carte, peu importe la quantité de texte */
    margin-top: auto;
}

#accueil-v2 .home-v2-reasons__btn::after {
    content: "+";
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 99px;
    background: #97c01e;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

#accueil-v2 .home-v2-reasons__nav {
    flex: 0 0 auto !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: none !important;
    background: #97c01e !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition:
        opacity 0.2s,
        transform 0.2s !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-decoration: none !important;
}

#accueil-v2 .home-v2-reasons__nav--prev {
    order: -1;
}

#accueil-v2 .home-v2-reasons__nav--next {
    order: 1;
}

#accueil-v2 .home-v2-reasons__nav:hover {
    opacity: 0.9 !important;
    transform: scale(1.05) !important;
}

#accueil-v2 .home-v2-reasons__nav[disabled],
#accueil-v2 .home-v2-reasons__nav:disabled {
    opacity: 0.25 !important;
    cursor: default !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

#accueil-v2 .home-v2-reasons__nav:active {
    transform: scale(0.97) !important;
}

#accueil-v2 .home-v2-reasons__nav--desktop {
    display: flex;
}

#accueil-v2 .home-v2-reasons__nav--mobile {
    display: none;
}

/* Sous 450px : inverse */
@media (max-width: 450px) {
    #accueil-v2 .home-v2-reasons__nav--desktop {
        display: none !important;
    }

    #accueil-v2 .home-v2-reasons__nav--mobile {
        display: flex;
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 16px;
    }

    #accueil-v2 .home-v2-reasons__slider {
        flex-wrap: wrap;
    }

    #accueil-v2 .home-v2-reasons__track {
        width: 100%;
        order: 0;
    }

    #accueil-v2 .home-v2-reasons__card {
        flex: 0 0 88vw !important;
        max-width: none !important;
    }
}

/* Desktop */
@media (min-width: 900px) {
    #accueil-v2 .home-v2-reasons__inner {
        width: min(1300px, 92%);
    }

    #accueil-v2 .home-v2-reasons__card {
        flex: 0 0 300px;
        max-width: none;
    }
}

/* =========================
   ACCUEIL V2 - MYWASTE
   ========================= */

#accueil-v2 .home-v2-mywaste {
    padding: 34px 0;
    background: #dde3efcc;
}

#accueil-v2 .home-v2-mywaste__inner {
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#accueil-v2 .home-v2-mywaste__h2 {
    text-align: center;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
    margin: auto;
    margin-bottom: 30px !important;
    color: #111;
    max-width: 990px;
}

#accueil-v2 .home-v2-mywaste__media {
    margin: 0 auto 18px;
}

#accueil-v2 .home-v2-mywaste__img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 700px !important;
}

#accueil-v2 .home-v2-mywaste__h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    line-height: normal;
}

#accueil-v2 .home-v2-mywaste__p {
    margin: 0 0 12px;
    color: #111;
    line-height: 1.55;
    font-size: 15px;
    white-space: pre-line;
    max-width: 60ch;
}

#accueil-v2 .home-v2-mywaste__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 6px;
    background: #5a7bd8; /* proche de ton visuel */
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

/* Desktop */
@media (min-width: 900px) {
    #accueil-v2 .home-v2-mywaste__inner {
        width: min(1300px, 92%);
        flex-direction: row-reverse;
    }

    #accueil-v2 .home-v2-mywaste__h2 {
        font-size: 34px;
        margin-bottom: 22px;
    }

    /* zone image + texte */
    #accueil-v2 .home-v2-mywaste__media {
        margin-bottom: 0;
    }

    #accueil-v2 .home-v2-mywaste__content {
        margin-top: 16px;
        max-width: 490px;
        text-align: justify;
    }

    #accueil-v2 .home-v2-mywaste__media {
        max-width: 50vw;
    }
}

/* =========================
   ACCUEIL V2 - SECTION 3 PRODUITS
   ========================= */

#accueil-v2 .home-v2-s3p {
    padding: 34px 0;
    background: #fff;
}

#accueil-v2 .home-v2-s3p__inner {
    width: 92%;
    margin: 0 auto;
}

#accueil-v2 .home-v2-s3p__title {
    text-align: center;
    line-height: 1.15;
    font-weight: 900;
    margin: 0 0 18px auto;
    max-width: 990px;
    color: #111;
}

#accueil-v2 .home-v2-s3p__desc {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.25;
    color: #111;
    opacity: 0.9;
    max-width: 30ch;
}

/* Slider wrapper avec boutons */
#accueil-v2 .home-v2-s3p__slider-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

#accueil-v2 .home-v2-s3p__nav {
    flex: 0 0 auto !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: none !important;
    background: #97c01e !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition:
        opacity 0.2s,
        transform 0.2s !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-decoration: none !important;
}

#accueil-v2 .home-v2-s3p__nav:hover {
    opacity: 0.9 !important;
    transform: scale(1.05) !important;
}

#accueil-v2 .home-v2-s3p__nav:disabled {
    opacity: 0.25 !important;
    cursor: default !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

/* Desktop visible, mobile caché */
#accueil-v2 .home-v2-s3p__nav--desktop {
    display: flex;
}

#accueil-v2 .home-v2-s3p__nav--mobile {
    display: none;
}

/* Sous 450px : inverse */
@media (max-width: 450px) {
    #accueil-v2 .home-v2-s3p__nav--desktop {
        display: none !important;
    }

    #accueil-v2 .home-v2-s3p__nav--mobile {
        display: flex;
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 16px;
    }

    #accueil-v2 .home-v2-s3p__slider-wrap {
        flex-wrap: wrap;
    }

    #accueil-v2 .home-v2-s3p__slider {
        width: 100%;
        order: 0;
    }

    #accueil-v2 .home-v2-s3p__slide {
        flex: 0 0 88vw !important;
        max-width: none !important;
    }
}

/* Slider */
#accueil-v2 .home-v2-s3p__slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 16px;
    scroll-padding-left: 4%;
    scrollbar-width: thin;
    scrollbar-color: #97c01e #e0e0e0;
}

#accueil-v2 .home-v2-s3p__slider::-webkit-scrollbar {
    height: 6px;
}

#accueil-v2 .home-v2-s3p__slider::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 3px;
}

#accueil-v2 .home-v2-s3p__slider::-webkit-scrollbar-thumb {
    background: #97c01e;
    border-radius: 3px;
}

#accueil-v2 .home-v2-s3p__slide {
    flex: 0 0 85%;
    scroll-snap-align: start;
    background: #f5f5f7;
    border-radius: 20px;
    height: 260px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    padding: 18px 150px 18px 18px;
    max-width: 456px;
}

#accueil-v2 .home-v2-s3p__head {
    margin: 0;
    padding: 0;
}

#accueil-v2 .home-v2-s3p__name {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
}

#accueil-v2 .home-v2-s3p__btn {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #111 !important;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    z-index: 2;
}

#accueil-v2 .home-v2-s3p__img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 190px;
    height: 190px;
    object-fit: contain;
    object-position: right bottom;
    z-index: 0;
    pointer-events: none;
    max-width: 50vw;
}

/* Tablette : cartes en taille fixe */
@media (min-width: 768px) {
    #accueil-v2 .home-v2-s3p__slide {
        flex: 0 0 340px;
        max-width: none;
    }
}

/* Desktop : 3 cartes visibles, le reste scrollable */
@media (min-width: 1300px) {
    #accueil-v2 .home-v2-s3p__inner {
        overflow: hidden;
    }

    #accueil-v2 .home-v2-s3p__title {
        font-size: 34px;
        margin: auto;
        margin-bottom: 22px;
    }

    #accueil-v2 .home-v2-s3p__name {
        font-size: 18px;
    }

    #accueil-v2 .home-v2-s3p__slide {
        flex: 0 0 calc((100% - 28px) / 3);
    }

    /* Masque visuellement la 4e carte pour signaler qu'il y en a d'autres */
    #accueil-v2 .home-v2-s3p__slider {
        justify-content: flex-start;
    }
}

/* =========================
   ACCUEIL V2 - SECTION FORMULAIRE
   ========================= */

#accueil-v2 .home-v2-form {
    padding: 60px 0;
    background: #ecf5d7;
}

/* Layout 2 colonnes */
#accueil-v2 .home-v2-form__inner {
    width: min(1100px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ---- COLONNE GAUCHE ---- */
#accueil-v2 .home-v2-form__left {
    flex: 1;
    min-width: 0;
}

#accueil-v2 .home-v2-form__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #97c01e;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #4a7a00;
    text-transform: uppercase;
    margin-bottom: 18px;
    background: rgba(151, 192, 30, 0.1);
}

#accueil-v2 .home-v2-form__title {
    text-align: left;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    color: #111;
    margin: 0 0 18px;
}

#accueil-v2 .home-v2-form__intro {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
    margin: 0 0 28px;
    max-width: 48ch;
}

#accueil-v2 .home-v2-form__keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#accueil-v2 .home-v2-form__keyword {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    background: #fff;
    transition:
        background 0.2s,
        border-color 0.2s;
}

/* ---- COLONNE DROITE (formulaire) ---- */
#accueil-v2 .home-v2-form__right {
    flex: 0 0 420px;
}

#accueil-v2 .home-v2-form__card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px 24px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

#accueil-v2 .home-v2-form__card-title {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    margin: 0 0 4px;
    text-align: center;
}

#accueil-v2 .home-v2-form__subtitle {
    text-align: center;
    color: #777;
    font-size: 13px;
    margin: 0 0 20px;
}

/* Champs Formidable */
#accueil-v2 .home-v2-form__wrap .frm_fields_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#accueil-v2 .home-v2-form__wrap .frm_form_field {
    margin: 0 !important;
}

#accueil-v2 .home-v2-form__wrap input[type="text"],
#accueil-v2 .home-v2-form__wrap input[type="email"],
#accueil-v2 .home-v2-form__wrap input[type="tel"],
#accueil-v2 .home-v2-form__wrap input[type="number"],
#accueil-v2 .home-v2-form__wrap textarea,
#accueil-v2 .home-v2-form__wrap select {
    width: 100% !important;
    max-width: none !important;
    border: 1.5px solid #e8e8e8 !important;
    border-radius: 8px !important;
    background: #fafafa !important;
    color: #111 !important;
    padding: 11px 14px !important;
    font-size: 14px !important;
    box-shadow: none !important;
    outline: none !important;
    margin: 0 !important;
    transition: border-color 0.2s !important;
}

#accueil-v2 .home-v2-form__wrap input:focus,
#accueil-v2 .home-v2-form__wrap textarea:focus,
#accueil-v2 .home-v2-form__wrap select:focus {
    border-color: #97c01e !important;
    background: #fff !important;
}

#accueil-v2 .home-v2-form__wrap ::placeholder {
    color: rgba(17, 17, 17, 0.45) !important;
}

#accueil-v2 .home-v2-form__wrap textarea {
    min-height: 90px;
    resize: vertical;
}

#accueil-v2 .home-v2-form__wrap .frm_primary_label {
    display: none;
}

/* Bouton */
#accueil-v2 .home-v2-form__wrap .frm_submit {
    display: flex;
    justify-content: stretch;
    margin-top: 6px;
}

#accueil-v2 .home-v2-form__wrap button,
#accueil-v2 .home-v2-form__wrap input[type="submit"] {
    width: 100% !important;
    background: #0b6a2a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 13px 22px !important;
    font-weight: 900 !important;
    font-size: 15px !important;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.15s !important;
}

#accueil-v2 .home-v2-form__wrap button:hover,
#accueil-v2 .home-v2-form__wrap input[type="submit"]:hover {
    background: #0d7e33 !important;
    transform: translateY(-1px);
}

/* Trust text */
#accueil-v2 .home-v2-form__trust {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    #accueil-v2 .home-v2-form__inner {
        flex-direction: column;
        gap: 36px;
    }

    #accueil-v2 .home-v2-form__right {
        flex: 0 0 auto;
        width: 100%;
    }

    #accueil-v2 .home-v2-form__intro {
        max-width: none;
    }
}

/* =========================
   ACCUEIL V2 - CLIENTS MARQUEE
   ========================= */

#accueil-v2 .home-v2-clients {
    padding: 18px 0 28px;
    background: #fff;
}

#accueil-v2 .home-v2-clients__inner {
    width: 92%;
    margin: 0 auto;
}

#accueil-v2 .home-v2-clients__marquee {
    overflow: hidden;
    position: relative;
}

#accueil-v2 .home-v2-clients__track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: v2-marquee 28s linear infinite;
}

#accueil-v2 .home-v2-clients__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#accueil-v2 .home-v2-clients__logo {
    height: 50px;
    width: auto;
    display: block;
    /* Dimensions explicites pour éviter CLS */
    aspect-ratio: auto;
}

/* Réserve espace pour le marquee avant chargement logos → fixe CLS */
#accueil-v2 .home-v2-clients__marquee {
    min-height: 50px;
}

@keyframes v2-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Accessibilité: si l’utilisateur préfère moins d’animations */
@media (prefers-reduced-motion: reduce) {
    #accueil-v2 .home-v2-clients__track {
        animation: none;
    }
}

/* =========================
   ACCUEIL V2 - REASSURANCE (Section 5)
   ========================= */

#accueil-v2 .home-v2-reassurance {
    padding: 34px 0;
    background: #fff;
}

#accueil-v2 .home-v2-reassurance__inner {
    width: 92%;
    margin: 0 auto;
}

#accueil-v2 .home-v2-reassurance__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

#accueil-v2 .home-v2-reassurance__card {
    background: #f5f5f7;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
}

#accueil-v2 .home-v2-reassurance__icon {
    height: 46px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

#accueil-v2 .home-v2-reassurance__title {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 16px;
    color: #111;
}

#accueil-v2 .home-v2-reassurance__text {
    margin: 0;
    color: #111;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    white-space: pre-line;
}

/* Desktop: 2 en haut + 1 centré en bas */
@media (min-width: 900px) {
    #accueil-v2 .home-v2-reassurance__inner {
        width: min(1100px, 92%);
    }

    #accueil-v2 .home-v2-reassurance__grid {
        display: flex;
        justify-content: center;
        gap: 18px;
    }

    #accueil-v2 .home-v2-reassurance__card {
        width: 400px;
    }
}

/* =========================
   ACCUEIL V2 - FAQ
   ========================= */

#accueil-v2 .home-v2-faq {
    padding: 34px 0;
    background: #fff;
}

#accueil-v2 .home-v2-faq__inner {
    width: 92%;
    margin: 0 auto;
}

#accueil-v2 .home-v2-faq__title {
    text-align: center;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
    margin: 0 0 18px;
    color: #111;
}

#accueil-v2 .home-v2-faq__list {
    display: grid;
    gap: 12px;
}

/* Carte */
#accueil-v2 .home-v2-faq__item {
    background: #f5f5f7;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
}

/* Summary */
#accueil-v2 .home-v2-faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 14px;
    font-weight: 900;
    color: #111;
}

#accueil-v2 .home-v2-faq__q::-webkit-details-marker {
    display: none;
}

/* Icon + et rotation */
#accueil-v2 .home-v2-faq__icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 auto;
}

#accueil-v2 .home-v2-faq__icon::before,
#accueil-v2 .home-v2-faq__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: #111;
    transform: translate(-50%, -50%);
}

#accueil-v2 .home-v2-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Réponse */
#accueil-v2 .home-v2-faq__a {
    padding: 0 14px 14px;
    color: #111;
    opacity: 0.9;
    line-height: 1.55;
    font-size: 14px;
    white-space: pre-line;
}

/* Quand ouvert, on transforme + en - */
#accueil-v2 .home-v2-faq__item[open] .home-v2-faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Desktop */
@media (min-width: 900px) {
    #accueil-v2 .home-v2-faq__inner {
        width: min(900px, 92%);
    }

    #accueil-v2 .home-v2-faq__title {
        font-size: 34px;
        margin-bottom: 22px;
    }

    #accueil-v2 .home-v2-faq__a {
        font-size: 15px;
    }
}

#accueil-v2 .home-v2-faq__a p {
    margin: 0 0 10px;
}

#accueil-v2 .home-v2-faq__a p:last-child {
    margin-bottom: 0;
}

#accueil-v2 .home-v2-faq__a a {
    color: #2a5dd4;
    text-decoration: underline;
    font-weight: 700;
}
