:root {
    --navy: #06245c;
    --yellow: #ffe000;
    --yellow-deep: #ffd900;
    --green-soft: #dbffe7;
    --green-halo: #66f2a0;
    --line: #e5e5e5;
    --text-soft: #58709a;
    --bg: #f7f6ef;
}


html, body,p {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}
.h3{
    color:#00275f !important;
}
.font16{
    font-size: 16px !important;
}
.font17{
    font-size: 17px !important;
}
.font18{
    font-size: 18px !important;
}
.font14{
    font-size: 14px !important;
}
.font43{
    font-size: 43px !important;
}
.font22{
    font-size: 22px !important;
}
.font23{
    font-size: 23px !important;
}
.font30{
    font-size: 30px !important;
}
.font40{
    font-size: 40px !important;
}
.font70{
    font-size: 70px !important;
}

.gras {
    font-size: 50px;
    -webkit-text-stroke: 2px #001F55;
    font-weight: 700 !important;
}

p,h1,h2,h3{
    color: #001F55;
}

a, a:hover, a:focus {
    text-decoration: none;
}

.couleurBleu{
    color:#001F55 !important;
}
.couleurVert{
    color:#6EF8AC !important;
}

.couleurBleuClair{
    color:#86A9F7 !important;
}
.couleurBlanc{
    color:white !important;
}
.couleurJaune{
    color:#FEEA02 !important;
}

.couleurNoir{
    color: black;
}

.backgroundVert{
    background-color: #6EF8AC !important;
}
.backgroundJaune{
    background-color: #FEEA02 !important;
}
.backgroundJauneClair {
    background-color: rgba(255, 235, 1, 0.10);
}
.backgroundBleu{
    background-color: #001F55;
}
.backgroundBleuClair{
    background-color: rgba(134, 169, 247, 0.1);
}

.bouton{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    height: 57px;
    padding: 0 20px;

    background: #ffffff;
    border-radius: 999px;
}

.boutonVert{
    border: 1px solid #5ef0ac;
    box-shadow: 0 4px 0 #5ef0ac;
}

.boutonBleu{
    border: 1px solid #86A9F7;
    box-shadow: 0 4px 0 #86A9F7;
}

.boutonJaune{
    border: 1px solid #FEEA02;
    box-shadow: 0 4px 0 #FEEA02;
}

.shadowVert{
    box-shadow: 6px 7px 0 #6EF8AC;
    border: solid #6EF8AC;
}
.shadowBleu{
    box-shadow: 6px 7px 0 #86A9F7 !important;
    border: solid #86A9F7 !important;
}
.shadowJaune{
    box-shadow: 6px 7px 0 #FFEB00 !important;
    border: solid #FFEB00 !important;
}
.shadowBleuFoncer{
    box-shadow: 6px 7px 0 #001F55 !important;
    border: solid #001F55 !important;
}

.souligner {
    position: relative;
    display: inline-block;

    color: #002b66;
    font-weight: 700;
    line-height: 1;

    z-index: 0;
    isolation: isolate;
}

.souligner::after {
    content: "";
    position: absolute;

    left: -3px;
    right: -5px;
    bottom: 5px;

    height: 12px;

    background: #48e6a0;
    border-radius: 999px;

    z-index: -1;

    transform: scaleX(0);
    transform-origin: left center;

    animation: souligner-animation 0.7s ease-out forwards;
}

@keyframes souligner-animation {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}


.souligner-blanc {
    position: relative;
    display: inline-block;

    color: #002b66;
    font-weight: 700;
    line-height: 1;

    z-index: 0;
    isolation: isolate;
}

.souligner-blanc::after {
    content: "";
    position: absolute;

    left: -3px;
    right: -5px;
    bottom: 5px;

    height: 18px;

    background: white;
    border-radius: 999px;

    z-index: -1;

    transform: scaleX(0);
    transform-origin: left center;

    animation: souligner-animation 0.7s ease-out forwards;
}

@keyframes souligner-blanc--animation {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.souligner-bleu-clair {
    position: relative;
    display: inline-block;

    color: #002b66 !important;
    font-weight: 700;
    line-height: 1;

    z-index: 0;
    isolation: isolate;
}

.souligner-bleu-clair::after {
    content: "";
    position: absolute;

    left: -3px;
    right: -5px;
    bottom: 5px;

    height: 18px;

    background: #86A9F7 !important;
    border-radius: 999px;

    z-index: -1;

    transform: scaleX(0);
    transform-origin: left center;

    animation: souligner-animation 0.7s ease-out forwards;
}

@keyframes souligner-bleu-clair--animation {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}





.souligner-jaune {
    position: relative;
    display: inline-block;

    color: #002b66;
    font-weight: 700;
    line-height: 1;

    z-index: 0;
    isolation: isolate;
}

.souligner-jaune::after {
    content: "";
    position: absolute;

    left: -3px;
    right: -5px;
    bottom: 5px;

    height: 18px;

    background: #FFEB00;
    border-radius: 999px;

    z-index: -1;

    transform: scaleX(0);
    transform-origin: left center;

    animation: souligner-animation 0.7s ease-out forwards;
}

@keyframes souligner-jaune--animation {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}


/*@todo footer*/
.footer-doubleid {
    background: #ffffff;
    color: #06285f;
    font-size: 14px;
}

.footer-container {
    max-width: 1120px;
}

.footer-main {
    padding-top: 46px;
    padding-bottom: 34px;
}

.footer-logo {
    width: 150px;
    height: auto;
    display: block;
}

.footer-doubleid h6 {
    font-weight: 700;
    margin-bottom: 14px;
    color: #06285f;
}

.footer-doubleid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-doubleid ul li {
    margin-bottom: 12px;
}

.footer-doubleid a {
    color: #06285f;
    text-decoration: none;
}

.footer-doubleid a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    font-size: 17px;
    line-height: 1;
}

.footer-bottom {
    background: #001F55;
    color: #ffffff;
    padding: 13px 0;
    font-size: 12px;
}

.footer-bottom a {
    color: #ffffff;
    margin-left: 20px;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .footer-main {
        padding-top: 30px;
        padding-bottom: 24px;
    }

    .footer-bottom a {
        display: inline-block;
        margin: 5px 8px;
    }
}

/*@todo header mobile*/
.headerNavMobile {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e4e8ef;
    overflow-x: clip;
}

.headerNavMobile .headerNavMobile__inner {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0.85rem 1rem 0.7rem;
}

.headerNavMobile .headerNavMobile__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
}

.headerNavMobile .headerNavMobile__menuBtn {
    width: 3.2rem;
    height: 2.6rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #00275f;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    transition: background 0.2s ease;
}

.headerNavMobile .headerNavMobile__menuBtn span {
    display: block;
    width: 1.2rem;
    height: 0.16rem;
    border-radius: 999px;
    background: #ffdd00;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.headerNavMobile .headerNavMobile__menuBtn.is-open span:nth-child(1) {
    transform: translateY(0.44rem) rotate(45deg);
}

.headerNavMobile .headerNavMobile__menuBtn.is-open span:nth-child(2) {
    opacity: 0;
}

.headerNavMobile .headerNavMobile__menuBtn.is-open span:nth-child(3) {
    transform: translateY(-0.44rem) rotate(-45deg);
}

.headerNavMobile .headerNavMobile__logoLink {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.headerNavMobile .headerNavMobile__logo {
    display: block;
    width: min(100%, 8.4rem);
    height: auto;
}

.headerNavMobile .headerNavMobile__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.headerNavMobile .headerNavMobile__action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.headerNavMobile .headerNavMobile__action--mail {
    width: 2.7rem;
    height: 2.7rem;
    border: 2px solid #ffdd00;
    border-radius: 50%;
    color: #00275f;
    background: #ffffff;
    font-size: 1rem;
}

.headerNavMobile .headerNavMobile__action--cart {
    width: 3rem;
    height: 3rem;
}

.headerNavMobile .headerNavMobile__cartBg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.headerNavMobile .headerNavMobile__cartIcon {
    position: relative;
    z-index: 1;
    width: 1.15rem;
    height: 1.15rem;
}

.headerNavMobile .headerNavMobile__client {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.headerNavMobile .headerNavMobile__clientVisual {
    position: relative;
    width: min(100%, 10.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerNavMobile .headerNavMobile__clientBg {
    display: block;
    width: 100%;
    height: auto;
}

.headerNavMobile .headerNavMobile__clientLink {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: #00275f;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
}

.headerNavMobile .headerNavMobile__slogan {
    width: 100%;
    background: #ffdd00;
    padding: 0.8rem 1rem 0.9rem;
}

.headerNavMobile .headerNavMobile__slogan p {
    margin: 0;
    color: #111111;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.18;
    font-weight: 700;
}

.headerNavMobile .headerNavMobile__menu {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #edf1f6;
    transition: max-height 0.25s ease;
}

.headerNavMobile .headerNavMobile__menu.is-open {
    max-height: 28rem;
}

.headerNavMobile .headerNavMobile__menuInner {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0 1rem;
}

.headerNavMobile .headerNavMobile__menuLink {
    display: block;
    padding: 0.95rem 0;
    border-bottom: 1px solid #edf1f6;
    color: #00275f;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 700;
}

.headerNavMobile .headerNavMobile__menuLink:last-child {
    border-bottom: 0;
}

@media screen and (max-width: 575.98px) {
    .headerNavMobile .headerNavMobile__inner,
    .headerNavMobile .headerNavMobile__menuInner {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .headerNavMobile .headerNavMobile__top {
        gap: 0.55rem;
    }

    .headerNavMobile .headerNavMobile__logo {
        width: min(100%, 7.5rem);
    }
}

@media screen and (max-width: 359.98px) {
    .headerNavMobile .headerNavMobile__inner,
    .headerNavMobile .headerNavMobile__menuInner {
        padding-left: 0.55rem;
        padding-right: 0.55rem;
    }

    .headerNavMobile .headerNavMobile__menuBtn {
        width: 2.95rem;
        height: 2.45rem;
    }

    .headerNavMobile .headerNavMobile__logo {
        width: min(100%, 6.85rem);
    }

    .headerNavMobile .headerNavMobile__actions {
        gap: 0.35rem;
    }

    .headerNavMobile .headerNavMobile__action--mail {
        width: 2.45rem;
        height: 2.45rem;
        font-size: 0.95rem;
    }

    .headerNavMobile .headerNavMobile__action--cart {
        width: 2.75rem;
        height: 2.75rem;
    }

    .headerNavMobile .headerNavMobile__clientVisual {
        width: min(100%, 9.8rem);
    }

    .headerNavMobile .headerNavMobile__clientLink {
        font-size: 0.81rem;
        gap: 0.35rem;
    }

    .headerNavMobile .headerNavMobile__slogan p {
        font-size: 0.88rem;
    }
}

/* @todo header pc */

@media (min-width: 992px) and (max-width: 1199.98px) {

    .headerNavLS {
        display: block;
        width: 100%;
        padding: 0;
        margin-top: 12px;
    }

    .containerNavLS {
        width: 100%;
        max-width: 1120px;
        margin: 0 auto;
        padding: 0 18px;
    }

    .alignHeaderLS {
        display: grid;
        grid-template-columns: 140px 1fr 285px;
        align-items: center;
        gap: 14px;
    }

    .logoHeaderLS {
        display: flex;
        align-items: center;
    }

    .logoHeaderLS img {
        display: block;
        width: 140px;
        height: auto;
    }

    .listeHeaderLS {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .listeHeaderLS > li {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .listeHeaderLS > li > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        white-space: nowrap;
    }

    .listeHeaderLS .TrioWebLS {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 3px 8px;
    }

    .listeHeaderLS .TrioWebLS a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 0 10px;
        color: var(--navy);
        font-size: 13px;
        font-weight: 600;
        border-radius: 999px;
        text-decoration: none;
        white-space: nowrap;
    }

    .listeHeaderLS .TrioWebLS a:hover,
    .listeHeaderLS .TrioWebLS a:focus {
        background: #fafafa;
    }

    .rubriqueCommerceLS {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        white-space: nowrap;
    }

    .rubriqueCommerceLS > * {
        flex: 0 0 auto;
    }

    .partiWebLS {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 145px;
        height: 56px;
        flex: 0 0 145px;
    }

    .partiWebLS .cercleEspaceClientLS {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 145px;
        height: 56px;
        transform: translate(-50%, -50%);
        object-fit: contain;
        z-index: 0;
        pointer-events: none;
    }

    .partiWebLS a {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: var(--navy);
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        white-space: nowrap;
    }

    .iconEmailLS {
        width: 46px;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #ffe000;
        border-radius: 50%;
        color: #06245c;
        font-size: 18px;
        text-decoration: none;
        flex-shrink: 0;
    }

    .iconEmailLS:hover,
    .iconEmailLS:focus {
        color: #06245c;
        background: #fff8c7;
    }

    .panierHeaderLS {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 54px;
        height: 54px;
        text-decoration: none;
        flex-shrink: 0;
    }

    .panierHeaderLS img {
        position: absolute;
    }

    .panierHeaderLS .fondPanierLS {
        width: 54px;
        height: 54px;
    }

    .panierHeaderLS .pictoPanierLS {
        width: 21px;
        height: 21px;
    }
}


/*@todo header PC*/
@media (min-width: 1200px) {

    .listeHeader {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        flex-wrap: nowrap;
    }

    .listeHeader > li {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .listeHeader > li > a {
        justify-content: center;
    }

    .listeHeader > li:first-child {
        margin-right: 8px;
    }

    .listeHeader > li:last-child {
        margin-left: 8px;
    }

    .listeHeader > li:nth-child(3) {
        margin-left: 8px;
    }

    .listeHeader > li:nth-child(4) {
        margin-left: 8px;
    }

    .rubriqueCommerce span, .listeHeader a{
        color: var(--navy);
    }

    .listeHeader .TrioWeb {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 3px 12px;
        justify-content: center;
    }

    .listeHeader .TrioWeb a {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 0 16px;
        color: var(--navy);
        font-size: 13px;
        font-weight: 600;
        border-radius: 999px;
    }

    .listeHeader .TrioWeb a:hover, .listeHeader .TrioWeb a:focus {
        background: #fafafa;
    }

    .partiWeb {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 158px;
        height: 60px;
        flex: 0 0 158px;
    }

    .alignHeader {
        display: flex;
        align-items: center;
    }

    .rubriqueCommerce {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
        white-space: nowrap;
    }

    .rubriqueCommerce > * {
        flex: 0 0 auto;
    }

    .rubriqueCommerce .cercleEspaceClient {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 158px;
        height: 60px;
        transform: translate(-50%, -50%);
        object-fit: contain;
        z-index: 0;
        pointer-events: none;
    }

    .rubriqueCommerce .icon-email {
        width: 48px;
        height: 48px;
        border-color: #ffe000 !important;
        color: #06245c;
        font-size: 18px;
    }

    .rubriqueCommerce .icon-email:hover, .rubriqueCommerce .icon-email:focus {
        color: #06245c;
        background: #fff8c7;
    }

    .headerNav {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .containerNav {
        width: 100%;
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .alignHeader {
        display: flex;
        align-items: center;
    }
}

/*@todo accueil*/

/* ==========================================================================
   CSS ACCUEIL - VERSION RÉORGANISÉE
   --------------------------------------------------------------------------
   Objectif : rangement par grandes zones de page.
   Important : les sélecteurs répétés sont conservés, sans fusion ni suppression,
   afin de préserver la cascade CSS existante.
   ========================================================================== */

/* ==========================================================================
    01. HERO / HEADER
   ========================================================================== */


@media (max-width: 600px) {

    .imageConfier{
        height:45px;
        width: 45px;
    }

}

.home-hero {
    background: transparent;
    padding: clamp(3.25rem, 7vw, 4.5rem) clamp(1rem, 3.6vw, 2rem);
    overflow: hidden;
}

.home-hero__container {
    width: min(100%, 1200px);
    min-height: clamp(560px, 50vw, 620px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
}

.home-hero__content {
    color: #00275f;
}

.hero-title {
    font-family: "Fredoka", "Nunito", "Baloo 2", sans-serif;
    color: #00275f;
    line-height: 0.88;
    letter-spacing: 0.01em;
}

.hero-title__line {
    display: flex;
    align-items: flex-end;
    gap: clamp(0.45rem, 0.9vw, 0.85rem);
}

.hero-title__line--one {
    padding-left: clamp(0rem, 1vw, 0.55rem);
    font-size: clamp(3.875rem, 5.4vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.012em;
}

.hero-title__line--two {
    margin-top: clamp(-0.15rem, -0.3vw, -0.05rem);
    padding-left: clamp(0.5rem, 1.2vw, 0.95rem);
}

.hero-title__line--three {
    margin-top: clamp(-0.25rem, -0.4vw, -0.08rem);
    padding-left: clamp(0.2rem, 0.85vw, 0.55rem);
}

.hero-title__small {
    display: inline-block;
    font-size: clamp(2.625rem, 3.5vw, 3.125rem);
    font-weight: 700;
    transform: translateY(-0.16em);
    letter-spacing: 0.02em;
}

.hero-title__green {
    display: inline-block;
    font-size: clamp(4.875rem, 6.8vw, 5.625rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.008em;
    -webkit-text-stroke: 1.2px rgba(106, 247, 179, 0.68);
    text-shadow:
            0 0 4px #63f2a8,
            0 0 12px rgba(99, 242, 168, 0.8),
            0 0 24px rgba(99, 242, 168, 0.5);
}

.hero-title__yellow {
    display: inline-block;
    font-size: clamp(4.75rem, 6.4vw, 5.5rem);
    font-weight: 700;
    color: #ffdd00;
    letter-spacing: 0.024em;
}

.home-hero__text {
    max-width: 520px;
    margin: clamp(2.3rem, 4vw, 2.8rem) 0 0;
    color: #00275f;
    font-family: "Quicksand", sans-serif;
    font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
    font-weight: 700;
    line-height: 1.25;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: clamp(1.8rem, 3vw, 2.3rem);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 48px;
    padding: 0.8rem 1.45rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    background: #ffffff;
    color: #00275f;
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0, 39, 95, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover,
.hero-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 39, 95, 0.12);
    color: #00275f;
}

.hero-btn--quote {
    border-color: rgba(99, 242, 168, 0.72);
    box-shadow:
            0 0 0 3px rgba(99, 242, 168, 0.14),
            0 10px 24px rgba(0, 39, 95, 0.08);
}

.hero-btn--appointment {
    border-color: rgba(67, 156, 255, 0.28);
    box-shadow:
            0 0 0 3px rgba(67, 156, 255, 0.1),
            0 10px 24px rgba(0, 39, 95, 0.08);
}

.hero-btn__icon,
.hero-btn__calendar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
}

.hero-btn__icon {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(99, 242, 168, 0.16);
    font-size: 1.1rem;
}

.hero-btn__calendar {
    width: 1.65rem;
    height: 1.65rem;
    background: rgba(67, 156, 255, 0.12);
    font-size: 0.95rem;
}

.home-hero__visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.home-hero__visual picture {
    display: block;
    width: 100%;
    max-width: 560px;
}

.home-hero__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .home-hero__container {
        min-height: auto;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
        gap: 2rem;
    }

    .hero-title__line--one {
        font-size: clamp(3.2rem, 5vw, 4rem);
    }

    .hero-title__small {
        font-size: clamp(2rem, 3vw, 2.45rem);
    }

    .hero-title__green {
        font-size: clamp(4rem, 6vw, 5rem);
    }

    .hero-title__yellow {
        font-size: clamp(3.8rem, 5.8vw, 4.8rem);
    }

    .home-hero__visual picture {
        max-width: 500px;
    }
}

@media (max-width: 767.98px) {
    .home-hero {
        padding-top: 2.5rem;
        padding-bottom: 2.8rem;
    }

    .home-hero__container {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        text-align: center;
    }

    .home-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title__line {
        justify-content: center;
        padding-left: 0;
    }

    .hero-title__line--one {
        font-size: clamp(2.7rem, 10vw, 3.75rem);
    }

    .hero-title__small {
        font-size: clamp(1.6rem, 6vw, 2.25rem);
    }

    .hero-title__green {
        font-size: clamp(3rem, 11vw, 4.6rem);
    }

    .hero-title__yellow {
        font-size: clamp(2.9rem, 10.5vw, 4.4rem);
    }

    .home-hero__text {
        margin-top: 2rem;
    }

    .home-hero__actions {
        justify-content: center;
    }

    .home-hero__visual {
        justify-content: center;
    }

    .home-hero__visual picture {
        max-width: min(100%, 480px);
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        padding-inline: 0.9rem;
    }

    .hero-title {
        line-height: 0.92;
    }

    .hero-title__line {
        gap: 0.4rem;
    }

    .home-hero__actions {
        width: 100%;
    }

    .hero-btn {
        width: 100%;
    }
}

.home-hero__actions .btn-form-contact--rdv {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;

    min-width: 204px;
    min-height: 58px;
    padding: 0.75rem 1.35rem;

    border: 2px solid #86a8ff;
    border-radius: 999px;
    background: #ffffff;

    color: #00275f;
    font-family: "Quicksand", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    box-shadow: 6px 7px 0 rgba(134, 168, 255, 0.95);

    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            border-color 0.2s ease;
}

.home-hero__actions .btn-form-contact--rdv:hover,
.home-hero__actions .btn-form-contact--rdv:focus-visible {
    transform: translateY(-2px);
    border-color: #6f95f5;
    box-shadow: 7px 9px 0 rgba(134, 168, 255, 0.9);
    color: #00275f;
}

.home-hero__actions .btn-form-contact--rdv:active {
    transform: translateY(2px);
    box-shadow: 3px 4px 0 rgba(134, 168, 255, 0.95);
}

.home-hero__actions .btn-form-contact-icon--rdv {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.home-hero__actions .btn-form-contact-icon--rdv img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.home-hero__actions .btn-form-contact--quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    min-width: 266px;
    min-height: 58px;
    padding: 0.75rem 1.4rem;

    border: 2px solid #63f2a8;
    border-radius: 999px;
    background: #ffffff;

    color: #00275f;
    font-family: "Quicksand", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    box-shadow: 7px 8px 0 rgba(99, 242, 168, 0.9);

    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            border-color 0.2s ease;
}

.home-hero__actions .btn-form-contact--quote:hover,
.home-hero__actions .btn-form-contact--quote:focus-visible {
    transform: translateY(-2px);
    border-color: #4ee79a;
    box-shadow: 8px 10px 0 rgba(99, 242, 168, 0.85);
    color: #00275f;
}

.home-hero__actions .btn-form-contact--quote:active {
    transform: translateY(2px);
    box-shadow: 4px 5px 0 rgba(99, 242, 168, 0.9);
}

.home-hero__actions .btn-form-contact-icon--quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
    flex: 0 0 30px;
}

.home-hero__actions .btn-form-contact-icon--quote img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* =========================
   HERO DESKTOP
========================= */

.home-hero--images {
    position: relative;
    overflow: hidden;
    min-height: 735px;
    display: flex;
    align-items: center;
}

.home-hero--images .home-hero__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0px 24px 80px;

    display: grid;
    grid-template-columns: 500px 570px;
    grid-template-areas:
        "content visual"
        "actions visual";
    column-gap: 70px;
    align-items: center;
}

.home-hero--images .home-hero__content {
    grid-area: content;
    position: relative;
    z-index: 2;
}

.home-hero--images .home-hero__title-picture {
    display: block;
    width: 470px;
    max-width: 100%;
    margin: 0 0 36px 0;
}

.home-hero--images .home-hero__title-img {
    display: block;
    width: 470px;
    max-width: 100%;
    height: auto;
}

.home-hero--images .home-hero__text {
    max-width: 530px;
    margin: 0 0 38px 0;
    color: #001F55;
    font-size: 23px;
    line-height: 1.18;
    font-weight: 500;
}

.home-hero--images .home-hero__visual {
    grid-area: visual;
    position: relative;
    z-index: 1;
    width: 570px;
    max-width: 100%;
    justify-self: end;
}

.home-hero--images .home-hero__image {
    display: block;
    width: 570px;
    max-width: 100%;
    height: auto;
}

.home-hero--images .home-hero__actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
    position: relative;
    z-index: 3;
}

.home-hero--images .home-hero__actions .btn-form-contact {
    width: auto !important;
    min-width: auto !important;
    max-width: none !important;
    white-space: nowrap;
}

/* =========================
   ACCESSIBILITÉ
========================= */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* =========================
   TABLETTE / MOBILE
========================= */

/* =========================
   FIX HERO MOBILE
   à placer tout en bas du fichier
========================= */

@media (max-width: 600.98px) {
    .home-hero--images {
        min-height: auto;
        display: block;
        overflow: hidden;
    }

    .home-hero--images .home-hero__container {
        max-width: 100%;
        padding: 18px 14px 28px;

        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "visual"
            "actions";
        row-gap: 18px;

        text-align: center;
        overflow: hidden;
    }

    .home-hero--images .home-hero__content {
        grid-area: content;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .home-hero--images .home-hero__title-picture {
        display: block;
        width: min(100%, 395px);
        max-width: 100%;
        margin: 0 auto 22px;
    }

    .home-hero--images .home-hero__title-img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .home-hero--images .home-hero__text {
        width: 100%;
        max-width: 390px;
        margin: 0 auto;

        color: #001F55;
        font-size: 22px;
        line-height: 1.18;
        font-weight: 700;

        overflow-wrap: break-word;
    }

    .home-hero--images .home-hero__visual {
        grid-area: visual;
        width: min(100%, 365px);
        max-width: 100%;
        justify-self: center;
        margin: 4px auto 0;
    }

    .home-hero--images .home-hero__image {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .home-hero--images .home-hero__actions {
        grid-area: actions;
        width: 100%;
        max-width: 330px;
        margin: 2px auto 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 16px;
    }

    .home-hero--images .home-hero__actions .btn-form-contact {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        white-space: nowrap;
    }
}

@media (max-width: 600.98px) {
    .home-hero--images {
        min-height: auto;
        display: block;
    }

    .home-hero--images .home-hero__container {
        max-width: 100%;
        padding: 18px 16px 24px;

        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "visual"
            "actions";
        row-gap: 12px;
        text-align: center;
    }

    .home-hero--images .home-hero__content {
        grid-area: content;
    }

    .home-hero--images .home-hero__title-picture {
        width: 235px;
        margin: 0 auto 12px;
    }

    .home-hero--images .home-hero__title-img {
        width: 235px;
        margin: 0 auto;
    }

    .home-hero--images .home-hero__text {
        max-width: 210px;
        margin: 0 auto;
        font-size: 11px;
        line-height: 1.22;
        font-weight: 700;
    }

    .home-hero--images .home-hero__visual {
        grid-area: visual;
        width: 215px;
        justify-self: center;
        margin: 2px auto 0;
    }

    .home-hero--images .home-hero__image {
        width: 215px;
        margin: 0 auto;
    }

    .home-hero--images .home-hero__actions {
        grid-area: actions;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 0;
    }

    .home-hero--images .home-hero__actions .btn-form-contact {
        width: auto !important;
        justify-content: center;
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .home-hero--images .home-hero__title-picture,
    .home-hero--images .home-hero__title-img {
        width: 220px;
    }

    .home-hero--images .home-hero__text {
        max-width: 200px;
        font-size: 10.5px;
    }

    .home-hero--images .home-hero__visual,
    .home-hero--images .home-hero__image {
        width: 205px;
    }
}

@media (max-width: 1200px) {
    .home-hero--images {
        min-height: auto;
        display: block;
        overflow: hidden;
    }

    .home-hero--images .home-hero__container {
        max-width: 100%;
        padding: 45px 16px 35px;

        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "visual"
            "actions";
        row-gap: 24px;
        text-align: center;
    }

    .home-hero--images .home-hero__content {
        grid-area: content;
    }

    .home-hero--images .home-hero__title-picture {
        width: 430px;
        max-width: 100%;
        margin: 0 auto 28px;
    }

    .home-hero--images .home-hero__title-img {
        display: block;
        width: 430px;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .home-hero--images .home-hero__text {
        max-width: 520px;
        margin: 0 auto;
        color: #001F55;
        font-size: 24px;
        line-height: 1.15;
        font-weight: 500;
    }

    .home-hero--images .home-hero__visual {
        grid-area: visual;
        width: 390px;
        max-width: 100%;
        justify-self: center;
        margin: 0 auto;
    }

    .home-hero--images .home-hero__image {
        display: block;
        width: 390px;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .home-hero--images .home-hero__actions {
        grid-area: actions;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 0;
    }

    .home-hero--images .home-hero__actions .btn-form-contact {
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
        justify-content: center;
        white-space: nowrap;
    }
}

/* =========================
   FIX HERO MOBILE FINAL
   À METTRE TOUT EN BAS
========================= */

@media (max-width: 600.98px) {
    .home-hero--images {
        min-height: auto !important;
        display: block !important;
        overflow: hidden !important;
        padding: 0 !important;
    }

    .home-hero--images .home-hero__container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 38px 14px 28px !important;

        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "content"
            "visual"
            "actions" !important;

        row-gap: 22px !important;
        text-align: center !important;
        overflow: hidden !important;
    }

    .home-hero--images .home-hero__content {
        grid-area: content !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .home-hero--images .home-hero__title-picture {
        display: block !important;
        width: min(100%, 390px) !important;
        max-width: calc(100vw - 28px) !important;
        margin: 0 auto 28px !important;
        overflow: hidden !important;
    }

    .home-hero--images .home-hero__title-img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    .home-hero--images .home-hero__text {
        width: 100% !important;
        max-width: 380px !important;
        margin: 0 auto !important;

        font-size: clamp(20px, 5.6vw, 24px) !important;
        line-height: 1.18 !important;
        font-weight: 700 !important;
        color: #001F55 !important;

        overflow-wrap: break-word !important;
    }

    .home-hero--images .home-hero__visual {
        grid-area: visual !important;
        width: min(100%, 360px) !important;
        max-width: calc(100vw - 28px) !important;
        justify-self: center !important;
        margin: 0 auto !important;
    }

    .home-hero--images .home-hero__image {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    .home-hero--images .home-hero__actions {
        grid-area: actions !important;
        width: 100% !important;
        max-width: 330px !important;
        margin: 0 auto !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 14px !important;
    }

    .home-hero--images .home-hero__actions .btn-form-contact {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        justify-content: center !important;
        white-space: nowrap !important;
    }
}

/* ==========================================================================
   /* 02. OBJECTIF
   ========================================================================== */

.objectif{
    background: #FFFFFF;
}

.creationGraphique{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 334px;
    min-height: 130px;
    padding: 0.75rem 1.35rem;
    border:  solid #6EF8AC;
    border-radius: 999px;
    background: white;
    box-shadow: 6px 7px 0 #6EF8AC;
}

.creationGraphique .textCreationGraphique{
    color: #001F55;
    font-size: 25px;
}

.creationWeb{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 334px;
    min-height: 130px;
    padding: 0.75rem 1.35rem;
    border:  solid #86A9F7;
    border-radius: 999px;
    background: white;
    box-shadow: 6px 7px 0 #86A9F7;
}

.textCreationWeb,.textCreationReseauxSociaux{
    color: #001F55;
    font-size: 25px;
}

.creationReseauxSociaux{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 334px;
    min-height: 130px;
    padding: 0.75rem 1.35rem;
    border:  solid #FFEB00;
    border-radius: 999px;
    background: white;
    box-shadow: 6px 7px 0 #FFEB00;
}

.objectif {
    width: 100%;
    background: #ffffff;
    padding: 82px 0 96px;
    overflow: hidden;
}

.objectif__container {
    width: min(100% - 40px, 1323px);
    margin: 0 auto;
}

.objectif__title {
    margin: 0;
    font-family: "Quicksand", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.18;
    text-align: center;
    color: #001F55;
}

.souligner {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.souligner::after {
    content: "";
    position: absolute;
    left: 0;
    right: -3px;
    bottom: 4px;
    height: 10px;
    background: #6EF8AC;
    border-radius: 999px;
    z-index: -1;
}

.objectif__subtitle {
    margin: 18px 0 70px;
    font-family: "Quicksand", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: #001F55;
}

.objectif__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    align-items: center;
}

.objectifCard {
    width: 100%;
    min-height: 128px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 24px 34px;
    background: #ffffff;
    border: 2px solid;
    border-radius: 35px;
}

.objectifCard__icon {
    display: block;
    width: 61px;
    height: 58px;
    object-fit: contain;
    flex: 0 0 auto;
}

.objectifCard__text {
    display: inline-block;
    font-family: "Quicksand", sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 31px;
    text-align: left;
    color: #001F55;
}

/* Carte verte */

.objectifCard--graphique {
    border-color: #6EF8AC;
    box-shadow: 10px 10px 0 #6EF8AC, 0 28px 42px rgba(8, 40, 92, 0.12);
}

.objectifCard--graphique .objectifCard__text {
    text-shadow: 2px 2px 0 #6EF8AC;
}

/* Carte bleue */

.objectifCard--web {
    border-color: #83A9FF;
    box-shadow: 10px 10px 0 #83A9FF, 0 28px 42px rgba(8, 40, 92, 0.12);
}

.objectifCard--web .objectifCard__text {
    text-shadow: 2px 2px 0 #83A9FF;
}

/* Carte jaune */

.objectifCard--reseaux {
    border-color: #FFD900;
    box-shadow: 10px 10px 0 #FFD900, 0 28px 42px rgba(8, 40, 92, 0.12);
}

.objectifCard--reseaux .objectifCard__text {
    text-shadow: 2px 2px 0 #FFD900;
}

/* Responsive desktop réduit */

@media (max-width: 1199.98px) {
    .objectif__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px;
    }

    .objectifCard--reseaux {
        grid-column: 1 / -1;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* Tablette */

@media (max-width: 767.98px) {
    .objectif {
        padding: 64px 0 78px;
    }

    .objectif__container {
        width: min(100% - 32px, 620px);
    }

    .objectif__title {
        font-size: 34px;
        line-height: 1.2;
    }

    .objectif__subtitle {
        margin: 16px 0 52px;
        font-size: 18px;
    }

    .objectif__cards {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .objectifCard,
    .objectifCard--reseaux {
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Mobile */

@media (max-width: 575.98px) {
    .objectif {
        padding: 52px 0 66px;
    }

    .objectif__title {
        font-size: 29px;
    }

    .objectif__subtitle {
        margin-bottom: 42px;
        font-size: 16px;
    }

    .objectifCard {
        min-height: 112px;
        justify-content: flex-start;
        gap: 20px;
        padding: 22px 26px;
        border-radius: 28px;
        box-shadow: 8px 8px 0 currentColor;
    }

    .objectifCard--graphique {
        color: #6EF8AC;
        box-shadow: 8px 8px 0 #6EF8AC, 0 22px 34px rgba(8, 40, 92, 0.12);
    }

    .objectifCard--web {
        color: #83A9FF;
        box-shadow: 8px 8px 0 #83A9FF, 0 22px 34px rgba(8, 40, 92, 0.12);
    }

    .objectifCard--reseaux {
        color: #FFD900;
        box-shadow: 8px 8px 0 #FFD900, 0 22px 34px rgba(8, 40, 92, 0.12);
    }

    .objectifCard__icon {
        width: 54px;
        height: auto;
    }

    .objectifCard__text {
        font-size: 22px;
        line-height: 28px;
    }
}

/* Très petit mobile */

@media (max-width: 375px) {
    .objectifCard {
        padding: 20px 20px;
        gap: 16px;
    }

    .objectifCard__text {
        font-size: 20px;
        line-height: 26px;
    }
}

/* ==========================================================================
   03. PACK GRAPHISME - ANCIEN BLOC / PAGE GRAPHISME
   ========================================================================== */

.packGraphiquePrix {
    position: relative;
    width: 340px;
    height: 119px;
    margin: 0 auto;
}

.packGraphiquePrix__montant {
    position: absolute;
    top: 50%;
    left: 43%;
    transform: translate(-50%, -50%);

    color: #6EF8AC;
    font-family: "Quicksand", sans-serif;
    font-size: clamp(2.4rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1;
}

.packGraphiquePrix__ht {
    position: absolute;
    right: 18%;
    bottom: 36%;

    color: #6EF8AC;
    font-family: "Quicksand", sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
}

/*.packGraphique {
    width: 100%;
    max-width: 453px;
    height: 720px;

    margin: 0 auto;
    padding: 0.75rem 1.35rem;
    border-radius: 16px;
    overflow: hidden;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
}*/

.packGraphique {
    width: 100%;
    max-width: 453px;
    height: 720px;

    margin: 0 auto;
    padding: 0.75rem 1.35rem;
    border-radius: 16px;
    overflow: hidden;
    box-sizing: border-box;

    display: grid;
    grid-template-rows:
        72px   /* titre */
        36px   /* sous-titre */
        130px  /* prix */
        78px   /* texte */
        56px   /* bouton */
        1fr;   /* image */
}

/* On neutralise les marges Bootstrap qui décalent tout */

.packGraphique h3 {
    grid-row: 1;
    margin: 0 !important;
    padding: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.packGraphique > h3 + p {
    grid-row: 2;
    margin: 0 !important;
    padding: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Prix toujours au même niveau */

.packGraphiquePrix {
    grid-row: 3;
    align-self: center;

    position: relative;
    width: 340px;
    height: 119px;
    margin: 0 auto;
}

/* Texte sous le prix toujours au même niveau */

.packGraphiquePrix + p {
    grid-row: 4;
    margin: 0 !important;
    padding: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Bouton toujours aligné */

.packGraphique > .bouton {
    grid-row: 5;
    align-self: center;
    margin: 0 auto !important;
}

/* Image toujours en bas */

.packGraphisme {
    grid-row: 6;
    align-self: end;

    margin: 0 -1.35rem calc(-0.75rem - 8px);
    overflow: hidden;
    border-radius: 0 0 14px 14px;
}

/* Image du bas */

.packGraphisme {
    margin: auto -1.35rem calc(-0.75rem - 8px);
    overflow: hidden;
    border-radius: 0 0 14px 14px;
    background: #6EF8AC;
}

.packGraphisme picture {
    display: block;
    width: 100%;
}

.packGraphisme img {
    display: block;
    width: calc(100% + 8px);
    height: auto;
    margin-left: -4px;
}

@media (min-width: 780px) and (max-width: 1000px) {

    .packGraphique {
        height: 580px;
        padding: 0.75rem 1rem;
        grid-template-rows:
            70px   /* titre */
            32px   /* sous-titre */
            100px  /* prix */
            90px   /* texte */
            55px   /* bouton */
            1fr;   /* image */
    }

    .packGraphique h3 {
        font-size: 1.35rem;
        line-height: 1.15;
    }

    .packGraphique > h3 + p {
        font-size: 0.85rem;
    }

    .packGraphiquePrix {
        width: 100%;
        max-width: 290px;
        height: auto;
        aspect-ratio: 340 / 119;
    }

    .packGraphiquePrix img {
        width: 100%;
        height: auto;
        display: block;
    }

    .packGraphiquePrix__montant {
        font-size: 2.3rem;
    }

    .packGraphiquePrix__ht {
        right: 17%;
        bottom: 35%;
        font-size: 0.55rem;
    }

    .packGraphiquePrix + p {
        font-size: 0.88rem;
        line-height: 1.35;
        padding: 0 0.2rem !important;
    }

    .packGraphique > .bouton {
        min-height: 44px;
        padding: 0.4rem 1rem;
    }

    .packGraphisme {
        margin-left: -1rem;
        margin-right: -1rem;
        margin-bottom: calc(-0.75rem - 8px);
    }
}

/* ==========================================================================
   04. PACKS HOME
   ========================================================================== */

/* ============================= */

/* SECTION PACKS */

/* ============================= */

.packsHome {
    background: #f3f6fc;
    overflow: hidden;
}

.packsHome .container {
    max-width: 1180px;
}

.packsHome__title {
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-size: clamp(26px, 2.7vw, 38px);
    font-weight: 900;
    line-height: 1.15;
    color: #001F55;
}

.packsHome__title span {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.packsHome__title span::after {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: 5px;
    height: 13px;
    background: #6EF8AC;
    border-radius: 999px;
    z-index: -1;
}

.packsHome__subtitle {
    margin: 16px 0 0;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #001F55;
}

/* ============================= */

/* GRID */

/* ============================= */

.packsHome__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 58px;
    align-items: start;
}

/* ============================= */

/* CARTE */

/* ============================= */

.packCard {
    --pack-color: #6EF8AC;
    --pack-color-rgb: 110, 248, 172;

    position: relative;
    min-height: 455px;
    border-radius: 29px;
    background: #ffffff;
    overflow: visible;
}

.packCard--green {
    --pack-color: #6EF8AC;
    --pack-color-rgb: 110, 248, 172;
    border-color: #6EF8AC;
    box-shadow: 10px 10px 0 #6EF8AC, 0 28px 42px rgba(8, 40, 92, 0.12);
}

.packCard--blue {
    --pack-color: #86AFFF;
    --pack-color-rgb: 134, 175, 255;
    border-color: #86AFFF;
    box-shadow: 10px 10px 0 #86AFFF, 0 28px 42px rgba(8, 40, 92, 0.12);
}

.packCard--yellow {
    --pack-color: #FFDD00;
    --pack-color-rgb: 255, 221, 0;
    border-color: #FFDD00;
    box-shadow: 10px 10px 0 #FFDD00, 0 28px 42px rgba(8, 40, 92, 0.12);
}

.packCard__content {
    position: relative;
    z-index: 2;
    min-height: 302px;
    padding: 28px 22px 18px;
    text-align: center;
    background: #ffffff;
    border-radius: 27px 27px 0 0;
}

.packCard__title {
    min-height: 34px;
    margin: 0 0 4px;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.18;
    color: #001F55;
}

.packCard__small {
    min-height: 16px;
    margin: 0 0 8px;
    font-family: "Nunito", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    color: #001F55;
}

/* ============================= */

/* PRIX AVEC SVG */

/* ============================= */

.packCard__price {
    --price-color: #6EF8AC;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 235px;
    height: 82px;
    margin: 0 auto 15px;
}

.packCard__price--green {
    --price-color: #6EF8AC;
}

.packCard__price--blue {
    --price-color: #86AFFF;
}

.packCard__price--yellow {
    --price-color: #FFDD00;
}

.packCard__priceCircle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 235px;
    height: auto;
    max-width: none;
    display: block;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
}

.packCard__priceText {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transform: translateY(2px);
}

.packCard__priceText strong {
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--price-color);
}

.packCard__priceText span {
    font-family: "Nunito", sans-serif;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
    color: var(--price-color);
}

.packCard__price--yellow .packCard__priceText span {
    font-size: 8px;
    line-height: 0.9;
}

.packCard__description {
    min-height: 38px;
    margin: 0 0 18px;
    font-family: "Quicksand", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    color: #001F55;
}

/* ============================= */

/* BOUTONS */

/* ============================= */

.packCard__button,
.packCard__bottomButton,
.packsHome__ctaButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 18px;
    border: 2px solid var(--pack-color);
    border-radius: 999px;
    background: #ffffff;
    font-family: "Nunito", sans-serif;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    color: #001F55;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.packCard__buttonIcon {
    position: relative;
    display: inline-block;
    width: 17px;
    height: 17px;
    border: 2px solid #001F55;
    border-radius: 50%;
    flex: 0 0 auto;
}

.packCard__buttonIcon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 48%;
    width: 5px;
    height: 5px;
    border-top: 2px solid #001F55;
    border-right: 2px solid #001F55;
    transform: translate(-50%, -50%) rotate(45deg);
}

.packCard__button:hover,
.packCard__bottomButton:hover,
.packsHome__ctaButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(var(--pack-color-rgb), 0.28);
}

/* ============================= */

/* IMAGE BAS DE CARTE */

/* ============================= */

.packCard__image {
    position: relative;
    z-index: 1;
    height: 172px;
    background: var(--pack-color);
    border-radius: 0 0 27px 27px;
    overflow: hidden;
}

.packCard__image picture,
.packCard__image img {
    display: block;
    width: 100%;
    height: 100%;
}

.packCard__image img {
    object-fit: cover;
    object-position: center;
}

/* ============================= */

/* BOUTON SOUS CARTE */

/* ============================= */

.packCard__bottomButton {
    position: absolute;
    left: 50%;
    bottom: -48px;
    z-index: 5;
    min-width: 240px;
    min-height: 39px;
    padding: 0 16px;
    transform: translateX(-50%);
}

.packCard__bottomButton:hover {
    transform: translateX(-50%) translateY(-2px);
}

/* ============================= */

/* CTA BAS */

/* ============================= */

.packsHome__cta {
    position: relative;
    display: grid;
    grid-template-columns: 310px 80px 1fr auto;
    align-items: center;
    gap: 24px;
    max-width: 1040px;
    min-height: 105px;
    margin: 115px auto 0;
    padding: 28px 46px 28px 42px;
    background: #ffffff;
    border-radius: 18px 18px 0 0;
    box-shadow: 18px 20px 35px rgba(0, 31, 85, 0.08);
}

.packsHome__ctaTitle {
    font-family: "Nunito", sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.05;
    color: #001F55;
}

.packsHome__ctaText {
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: #001F55;
}

.packsHome__ctaButton {
    --pack-color: #6EF8AC;
    --pack-color-rgb: 110, 248, 172;

    min-width: 215px;
    min-height: 46px;
    font-size: 14px;
    border-color: #6EF8AC;
}

/* flèche verte CTA */

.packsHome__ctaArrow {
    position: relative;
    width: 90px;
    height: 48px;
}

.packsHome__ctaArrow::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 4px;
    width: 48px;
    height: 35px;
    border: 5px solid #6EF8AC;
    border-right: 0;
    border-radius: 50%;
    transform: rotate(8deg);
}

.packsHome__ctaArrow::after {
    content: "";
    position: absolute;
    left: 34px;
    top: 11px;
    width: 70px;
    height: 23px;
    border-bottom: 5px solid #6EF8AC;
    border-radius: 50%;
    transform: rotate(-8deg);
}

.packsHome__ctaArrow {
    background:
            linear-gradient(45deg, transparent 45%, #6EF8AC 46%, #6EF8AC 57%, transparent 58%) 90px 15px / 18px 18px no-repeat;
}

/* ============================= */

/* RESPONSIVE */

/* ============================= */

@media (max-width: 1199px) {
    .packsHome__grid {
        gap: 34px;
    }

    .packCard__price,
    .packCard__priceCircle {
        width: 215px;
    }

    .packCard__priceText strong {
        font-size: 46px;
    }

    .packCard__bottomButton {
        min-width: 220px;
        font-size: 10px;
    }
}

@media (max-width: 991px) {
    .packsHome__grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 95px;
    }

    .packCard {
        width: min(100%, 360px);
    }

    .packsHome__cta {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        margin-top: 100px;
        padding: 30px 25px;
        text-align: center;
        border-radius: 18px;
    }

    .packsHome__ctaArrow {
        display: none;
    }
}

@media (max-width: 575px) {
    .packsHome {
        padding-top: 55px !important;
        padding-bottom: 70px !important;
    }

    .packsHome__header {
        margin-bottom: 38px;
    }

    .packsHome__title {
        font-size: 25px;
    }

    .packsHome__subtitle {
        font-size: 13px;
    }

    .packCard {
        width: 100%;
        min-height: 435px;
    }

    .packCard__content {
        min-height: 292px;
        padding: 25px 16px 18px;
    }

    .packCard__price,
    .packCard__priceCircle {
        width: 205px;
    }

    .packCard__priceText strong {
        font-size: 42px;
    }

    .packCard__description {
        font-size: 10px;
    }

    .packCard__image {
        height: 160px;
    }

    .packCard__bottomButton {
        width: calc(100% - 30px);
        min-width: 0;
        font-size: 10px;
    }

    .packsHome__ctaTitle {
        font-size: 23px;
    }

    .packsHome__ctaText {
        font-size: 11px;
    }

    .packsHome__ctaButton {
        width: 100%;
        min-width: 0;
    }
}

/* ============================= */

/* BOUTONS DÉCOUVRIR DES PACKS */

/* ============================= */

.packCard__discover {
    --btn-color: #6EF8AC;
    --btn-shadow: rgba(99, 242, 168, 0.9);

    position: relative;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    width: 181px;
    height: 51px;
    padding: 0 18px;

    border: 2px solid var(--btn-color);
    border-radius: 999px;
    background: #ffffff;

    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    color: #001F55;
    text-decoration: none;
    white-space: nowrap;

    box-shadow: 8px 9px 0 var(--btn-shadow);

    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease;
}

.packCard__discover--green {
    --btn-color: #6EF8AC;
    --btn-shadow: rgba(99, 242, 168, 0.9);
}

.packCard__discover--blue {
    --btn-color: #86AFFF;
    --btn-shadow: rgba(134, 175, 255, 0.9);
}

.packCard__discover--yellow {
    --btn-color: #FFDD00;
    --btn-shadow: rgba(255, 221, 0, 0.9);
}

.packCard__discover span:first-child {
    display: inline-block;
    transform: translateY(1px);
}

.packCard__discoverIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;
    flex: 0 0 25px;
}

.packCard__discoverIcon img {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.packCard__discover:hover,
.packCard__discover:focus-visible {
    transform: translateY(-2px);
    color: #001F55;
    box-shadow: 10px 11px 0 var(--btn-shadow);
}

.packCard__discover:active {
    transform: translateY(2px);
    box-shadow: 4px 5px 0 var(--btn-shadow);
}

/* ============================= */

/* BOUTONS BAS DES PACKS */

/* ============================= */

.packCard__bottomButton {
    --btn-color: #6EF8AC;
    --btn-shadow: rgba(99, 242, 168, 0.9);

    position: absolute;
    left: 50%;
    bottom: -66px;
    z-index: 5;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 250px;
    height: 39px;
    padding: 0 16px;

    border: 2px solid var(--btn-color);
    border-radius: 999px;
    background: #ffffff;

    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    color: #001F55;
    text-decoration: none;
    white-space: nowrap;

    transform: translateX(-50%);
    box-shadow: 5px 6px 0 var(--btn-shadow);

    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease;
}

.packCard__bottomButton--green {
    --btn-color: #6EF8AC;
    --btn-shadow: rgba(99, 242, 168, 0.9);
}

.packCard__bottomButton--blue {
    --btn-color: #86AFFF;
    --btn-shadow: rgba(134, 175, 255, 0.9);
}

.packCard__bottomButton--yellow {
    --btn-color: #FFDD00;
    --btn-shadow: rgba(255, 221, 0, 0.9);
}

.packCard__bottomButton > span:first-child {
    display: inline-block;
    transform: translateY(1px);
}

.packCard__bottomIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;
    flex: 0 0 25px;
}

.packCard__bottomIcon img {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.packCard__bottomButton:hover,
.packCard__bottomButton:focus-visible {
    transform: translateX(-50%) translateY(-2px);
    color: #001F55;
    box-shadow: 7px 8px 0 var(--btn-shadow);
}

.packCard__bottomButton:active {
    transform: translateX(-50%) translateY(2px);
    box-shadow: 3px 4px 0 var(--btn-shadow);
}

/* ==========================================================================
   /*@todo 05. QUESTIONS / FAQ
   ========================================================================== */

.faq-section {
    background: #edfff7;
}

.faq-title {
    color: #06255c;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
}

.faq-title span {
    position: relative;
    display: inline-block;
}

.faq-title span::after {
    content: "";
    position: absolute;
    left: 8px;
    bottom: 6px;
    width: 100%;
    height: 14px;
    background: #6ef8ac;
    border-radius: 999px;
    z-index: -1;
}

.faq-btn {
    color: #06255c;
    font-weight: 700;
    box-shadow: 6px 6px 0 #6ef8ac;
    border: 2px solid #6ef8ac;
}

.faq-btn:hover {
    color: #06255c;
    background: #fff;
}

.faq-btn-icon {
    width: 26px;
    height: 26px;
    border: 2px solid #06255c;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
}

.accordion-item {
    background: #ffffff;
}

.accordion-button {
    min-height: 82px;
    padding: 24px 34px;
    background: #ffffff;
    color: #06255c;
    font-size: 20px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #06255c;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 0 34px 34px;
    color: #06255c;
    font-size: 16px;
    line-height: 1.35;
}

.accordion-button::after {
    content: "+";
    background-image: none;
    font-size: 34px;
    font-weight: 700;
    color: #06255c;
    width: auto;
    height: auto;
}

.accordion-button:not(.collapsed)::after {
    content: "−";
    background-image: none;
    transform: none;
}

.question{
    font-size: 50px;
}

.titrequestion{
    font-size: 43px;
}

/* ==========================================================================
    06. CRÉNEAU / ÉCHANGES
   ========================================================================== */

.creneau {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 40px;
    box-shadow: 0 32px 45px rgba(8, 40, 92, 0.14);
    box-sizing: border-box;
}

.creneau .row {
    min-height: 68px;
}

/* Colonne gauche */

.creneau__gauche {
    position: relative;
    text-align: left;
}

.creneau__fleche {
    position: absolute;
    z-index: 3;
    width: 178px;
    height: auto;
    top: 0;
    left: 16rem;
    pointer-events: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .creneau__fleche {
        width: 7rem;
    }
}

@media (min-width: 1401px) {
    .creneau__fleche {
        width: 7rem;
    }
}

@media (max-width: 1199.98px) {
    .creneau__fleche {
        display: none;
    }
}

.creneau {
    width: 100%;
    padding: 48px 20px 54px;
    background: #f3f7ff;
}

.creneau__inner {
    position: relative;
    width: 100%;
    max-width: 1552px;
    min-height: 180px;
    margin: 0 auto;
    padding: 42px 70px 40px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 28px 32px 55px rgba(0, 31, 85, 0.10);

    display: grid;
    grid-template-columns: 364px 417px 332px;
    justify-content: space-between;
    align-items: center;
    column-gap: 70px;
}

.creneau__bloc {
    min-width: 0;
}

.creneau__gauche {
    position: relative;
}

.creneau__fleche {
    position: absolute;
    top: 4px;
    left: 304px;
    width: 142px;
    height: auto;
    pointer-events: none;
}

.creneau__titre {
    margin: 0;
    color: #001f55;
    font-family: "Quicksand", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0;
}

.creneau__titre span {
    font-weight: 700;
}

.creneau__baseline {
    margin: 18px 0 0;
    color: #001f55;
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
}

.creneau__texte p {
    margin: 0;
    color: #001f55;
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    text-align: left;
}

.creneau__bouton {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.creneau__bouton-label {
    font-weight: 700;
}

/* Placement uniquement : le style du bouton reste celui que tu as déjà */

.creneau__bouton .bouton {
    width: 332px;
    min-height: 69px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    white-space: nowrap;
}

/* Responsive */

@media (max-width: 1200px) {
    .creneau__inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
        column-gap: 50px;
    }

    .creneau__bouton {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .creneau {
        padding: 36px 16px 42px;
    }

    .creneau__inner {
        min-height: auto;
        padding: 34px 26px 36px;
        grid-template-columns: 1fr;
        row-gap: 28px;
        text-align: left;
    }

    .creneau__titre {
        font-size: 32px;
    }

    .creneau__baseline,
    .creneau__texte p {
        font-size: 16px;
    }

    .creneau__fleche {
        top: -4px;
        left: 218px;
        width: 98px;
    }

    .creneau__bouton {
        justify-content: flex-start;
    }

    .creneau__bouton .bouton {
        width: 100%;
        max-width: 332px;
    }
}

@media (max-width: 480px) {
    .creneau__inner {
        padding: 30px 20px 32px;
        border-radius: 18px;
    }

    .creneau__titre {
        font-size: 28px;
    }

    .creneau__fleche {
        left: 185px;
        width: 82px;
    }

    .creneau__bouton .bouton {
        min-height: 62px;
    }
}

.echange {
    position: relative;
    display: grid;
    grid-template-columns: 420px 1fr 286px;
    align-items: center;
    gap: 64px;
    width: min(100%, 1324px);
    min-height: 164px;
    margin: 0 auto;
    padding: 34px 56px 34px 44px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 28px 48px rgba(0, 31, 85, 0.10);
    overflow: visible;
}

/* Bloc gauche */

.echange__left {
    position: relative;
    z-index: 2;
}

.echange__left h2 {
    margin: 0 0 4px;
    color: #001f55;
    font-size: 34px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.echange__left p {
    margin: 0;
    color: #001f55;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
}

/* Flèche verte */

.echange__arrow {
    position: absolute;
    top: 30px;
    left: 300px;
    z-index: 1;
    display: block;
    width: 211px;
    height: auto;
    pointer-events: none;
}

/* Texte central */

.echange__center {
    position: relative;
    z-index: 2;
    max-width: 430px;
}

.echange__center p {
    margin: 0;
    color: #001f55;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
}

/* Bouton dans cette section uniquement */

.echange .btn-form-contact.echange__btn {
    justify-self: end;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 286px;
    height: 62px;
    padding: 0 18px 0 28px;
    border: 2px solid #6ef8ac;
    border-radius: 999px;
    background: #ffffff;
    color: #001f55;
    font-size: 19px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 5px 7px 0 #6ef8ac;
    white-space: nowrap;
}

.echange .btn-form-contact.echange__btn:hover {
    transform: translate(3px, 4px);
    box-shadow: 2px 3px 0 #6ef8ac;
}

.echange .echange__btn .btn-form-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
}

.echange .echange__btn .btn-form-contact-icon img {
    display: block;
    width: 25px;
    height: 25px;
}

/* Responsive */

@media (max-width: 1150px) {
    .echange {
        grid-template-columns: 360px 1fr 260px;
        gap: 44px;
        padding: 30px 38px;
    }

    .echange__left h2 {
        font-size: 30px;
    }

    .echange__arrow {
        left: 270px;
        width: 180px;
    }

    .echange .btn-form-contact.echange__btn {
        min-width: 255px;
        font-size: 17px;
    }
}

@media (max-width: 860px) {
    .echange {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding: 34px 28px;
    }

    .echange__arrow {
        display: none;
    }

    .echange__center {
        max-width: 100%;
    }

    .echange .btn-form-contact.echange__btn {
        align-self: flex-start;
        min-width: 260px;
    }
}


@media (max-width: 1200px) {
    .echange__fleche{
        display: none;
    }
}

.echanges-section {
    background: #eef4fb;
    padding: 18px 32px;
}

.echanges {
    background: #ffffff;
    border-radius: 20px;
    padding: 52px 48px;
}

.echanges__row {
    min-height: 118px;
}

.echanges__intro {
    position: relative;
}

.echange__titre {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #001F55;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 500;
}

.echange__sous-titre {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #001F55;
    font-size: 15px;
    line-height: 1.4;
}

.echange__fleche {
    position: absolute;
    z-index: 1;
    top: -3px;
    left: 282px;
    width: 130px;
    height: auto;
    pointer-events: none;
}

.echanges__texte p {
    margin: 0;
    color: #001F55;
    font-size: 16px;
    line-height: 1.55;
}

.echanges__cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.echanges__cta .bouton {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

/* ==========================================================================
   07. CLIENTS
   ========================================================================== */

.backgroundClients {
    background-image: url('../image/images/accueil/webp/background-client.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* SECTION CLIENTS */

.backgroundClients {
    width: 100%;
    margin-top: 60px;
    padding: 48px 20px 58px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.clients {
    width: min(100%, 1140px);
    margin: 0 auto;
    text-align: center;
}

.clients__title {
    margin: 0;
    color: #001F55;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    font-weight: 800;
}

.clients__subtitle {
    margin: 18px 0 0;
    color: #001F55;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.4;
}

.clients__slider {
    --arrow-size: 54px;
    --card-size: 120px;
    --cards-gap: 28px;
    --slider-gap: 26px;

    display: grid;
    grid-template-columns: var(--arrow-size) auto var(--arrow-size);
    align-items: center;
    justify-content: center;
    gap: var(--slider-gap);
    max-width: 100%;
    margin: 42px auto 0;
}

.clients__items {
    display: grid;
    grid-template-columns: repeat(5, var(--card-size));
    align-items: center;
    justify-content: center;
    gap: var(--cards-gap);
    min-width: 0;
}

.clients__item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients__item img {
    display: block;
    width: var(--card-size);
    height: auto;
}

.clients__arrow {
    width: var(--arrow-size);
    height: var(--arrow-size);
    padding: 0;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.clients__arrow img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .backgroundClients {
        padding: 46px 12px 54px;
    }

    .clients__slider {
        --arrow-size: 46px;
        --card-size: 104px;
        --cards-gap: 22px;
        --slider-gap: 14px;

        margin-top: 40px;
    }
}

@media (max-width: 760px) {
    .backgroundClients {
        padding: 46px 8px 54px;
    }

    .clients__title {
        font-size: 46px;
    }

    .clients__subtitle {
        margin-top: 18px;
        font-size: 16px;
    }

    .clients__slider {
        --arrow-size: 42px;
        --card-size: 96px;
        --cards-gap: 18px;
        --slider-gap: 8px;

        margin-top: 42px;
    }
}

@media (max-width: 650px) {
    .backgroundClients {
        margin-top: 40px;
        padding: 46px 12px 52px;
        overflow: hidden;
    }

    .clients__title {
        font-size: 42px;
        line-height: 1.05;
    }

    .clients__subtitle {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.4;
    }

    .clients__slider {
        position: relative;
        display: block;
        width: 100%;
        margin-top: 36px;
        padding: 0 42px;
    }

    .clients__items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;

        max-width: 330px;
        margin: 0 auto;

        gap: 20px 18px;
        overflow: visible;
        padding: 0;
    }

    .clients__item {
        flex: 0 0 96px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .clients__item img {
        width: 96px;
        height: auto;
    }

    .clients__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);

        width: 38px;
        height: 38px;
        z-index: 3;
    }

    .clients__arrow--left {
        left: 0;
    }

    .clients__arrow--right {
        right: 0;
    }

    .clients__arrow img {
        width: 38px;
        height: 38px;
    }
}

/* ==========================================================================
   08. TÉMOIGNAGES
   ========================================================================== */

.temoignageCard {
    height: 100%;
    min-height: 213px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 28px 22px 24px;

    background: #f3f6ff;
    border-radius: 22px;

    box-sizing: border-box;
}

.temoignageCard__haut {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: flex-start;
    column-gap: 16px;
}

.temoignageCard__quote {
    display: block;
    width: 71px;
    height: auto;
}

.temoignageCard__haut p {
    margin: 8px 0 0;

    color: #002b66;
    font-family: "Quicksand", sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1.55;
}

.temoignageCard__personne {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-top: 22px;
}

.temoignageCard__personne img {
    width: 68px;
    height: 68px;

    border-radius: 50%;
    border: 3px solid #48e6a0;

    object-fit: cover;
}

.temoignageCard__personne strong {
    display: block;

    color: #002b66;
    font-family: "Quicksand", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.temoignageCard__personne span {
    display: block;

    margin-top: 6px;

    color: #9db2dd;
    font-family: "Quicksand", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   09. RÉALISATIONS / EXEMPLES
   ========================================================================== */


.trait {
    width: 118px;
    height: 9px;

    margin: 18px auto 0;

    background: #6EF8AC;
    border-radius: 100px;
}

.realisations-images {
    display: flex;
    gap: 34px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 40px 0 20px;
    scroll-snap-type: x mandatory;
}

.realisations-images__item {
    flex: 0 0 448px;
    height: 448px;
    border-radius: 24px;
    overflow: hidden;
    scroll-snap-align: start;
}

.realisations-images__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .realisations-images {
        gap: 20px;
        padding: 30px 0 15px;
    }

    .realisations-images__item {
        flex: 0 0 82vw;
        height: 82vw;
        max-height: 420px;
    }
}

.backgroundBleu.exemples {
    background: #001F55;
    padding: 70px 0 40px;
    overflow: hidden;
}

.exemples .container {
    max-width: 1284px;
    margin: 0 auto;
    padding: 0 72px;
}

.exemples h2 {
    margin: 0;
    color: #ffffff;
    font-size: 43px;
    line-height: 1.15;
    font-weight: 400;
}

.exemples h2 .gras {
    font-weight: 800;
}

.exemples .trait {
    width: 70px;
    height: 5px;
    margin: 28px auto 0;
    border-radius: 999px;
    background: #6EF8AC;
}

.realisations-slider {
    margin-top: 45px;
}

.realisations-slider__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.realisations-slider__viewport::-webkit-scrollbar {
    display: none;
}

.realisations-slider__track {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.realisation-card {
    flex: 0 0 282px;
    color: #fff;
}

.realisation-card__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1.075;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.realisation-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.realisation-card__title {
    margin: 15px 0 6px;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.realisation-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.realisation-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 2px 8px;
    border: 1px solid #1ee7ad;
    border-radius: 999px;
    color: #6df5c5;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
}

.realisation-card__tag--yellow {
    border-color: #d6f400;
    color: #d6f400;
}

.realisations-slider__bottom {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 48px;
}

.realisations-slider__progress {
    position: relative;
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.20);
    overflow: hidden;
}

.realisations-slider__progress-bar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    height: 100%;
    background: #65f5b0;
    transition: width 0.2s ease;
}

.realisations-slider__arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.realisations-slider__arrow {
    width: 31px;
    height: 31px;
    padding: 0;
    border: 1px solid #7fa9ff;
    border-radius: 50%;
    background: transparent;
    color: #7fa9ff;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0;
    line-height: 1;

    transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.realisations-slider__arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.realisations-slider__arrow[data-slider-prev]::before {
    transform: rotate(45deg);
    margin-left: 3px;
}

.realisations-slider__arrow[data-slider-next]::before {
    transform: rotate(-135deg);
    margin-right: 3px;
}

.realisations-slider__arrow--next {
    border-color: #1ee7ad;
    color: #1ee7ad;
}

.realisations-slider__arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

@media (max-width: 991px) {
    .realisation-card {
        flex-basis: 260px;
    }

    .realisation-card__title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .realisations-slider {
        margin-top: 30px;
    }

    .realisation-card {
        flex-basis: 78vw;
    }

    .realisations-slider__bottom {
        margin-top: 30px;
        gap: 18px;
    }
}

/* ==========================================================================
   10. UTILITAIRES / EFFETS TEXTE
   ========================================================================== */

.soulignerResponsive {
    position: relative;
    display: inline-block;
    color: #002b66;
    line-height: 1;
    z-index: 0;
    isolation: isolate;
}

.soulignerResponsive::after {
    content: "";
    position: absolute;

    left: -3px;
    right: -5px;
    bottom: 5px;

    height: 12px;

    background: #48e6a0;
    border-radius: 999px;

    z-index: -1;

    transform: scaleX(0);
    transform-origin: left center;

    animation: souligner-animation 0.7s ease-out forwards;
}

@keyframes soulignerResponsive {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@media (min-width: 768px) {

    .soulignerResponsive {
        font-weight: 700 !important;
    }
}

@media (max-width: 767px) {

    .soulignerResponsive::after {
        display: none;
    }

}


.soulignerResponsiveJaune {
    position: relative;
    display: inline-block;
    color: #002b66;
    line-height: 1;
    z-index: 0;
    isolation: isolate;
}

.soulignerResponsiveJaune::after {
    content: "";
    position: absolute;

    left: -3px;
    right: -5px;
    bottom: 5px;

    height: 12px;

    background: #ffe000;
    border-radius: 999px;

    z-index: -1;

    transform: scaleX(0);
    transform-origin: left center;

    animation: souligner-animation 0.7s ease-out forwards;
}

@keyframes soulignerResponsiveJaune {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@media (min-width: 768px) {

    .soulignerResponsiveJaune {
        font-weight: 700 !important;
    }
}

@media (max-width: 767px) {

    .soulignerResponsiveJaune::after {
        display: none;
    }

}


/* SECTION CLIENTS */
.clients-section {
    width: 100%;
    min-height: 218px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.clients {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 38px 20px 42px;
    text-align: center;
}

/* Sur la maquette, le gros titre n'apparaît pas */
.clients__title {
    display: none;
}

.clients__subtitle {
    margin: 0 0 38px;
    color: #001F55;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

/* SLIDER */
.clients__slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
}

/* Zone visible uniquement */
.clients__viewport {
    width: 668px; /* 5 cartes de 120px + 4 gaps de 17px environ */
    overflow: hidden;
}

/* Ligne du slider : IMPORTANT */
.clients__items {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* empêche le retour à la ligne */
    gap: 52px;
    transition: transform 0.45s ease;
    will-change: transform;
}

/* Chaque item garde une largeur fixe */
.clients__item {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
}

.clients__item img {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* FLÈCHES */
.clients__arrow {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.clients__arrow img {
    display: block;
    width: 54px;
    height: 54px;
}


@media (max-width: 490px) {
    .clients__slider {
        position: relative;
        width: 100%;
        display: block;
    }

    .clients__viewport {
        width: 120px !important;
        max-width: 120px !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }

    .clients__items {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: center !important;

        width: max-content !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;

        gap: 24px !important;
        transition: transform 0.45s ease;
        will-change: transform;
    }

    .clients__item {
        flex: 0 0 120px !important;
        width: 120px !important;
        height: 120px !important;
    }

    .clients__item img {
        width: 120px !important;
        height: 120px !important;
        object-fit: contain;
    }

    .clients__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px !important;
        height: 44px !important;
        z-index: 2;
    }

    .clients__arrow img {
        width: 44px !important;
        height: 44px !important;
    }

    .clients__arrow--left {
        left: 24px;
    }

    .clients__arrow--right {
        right: 24px;
    }
}


.realisation-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.realisation-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 20px;
    padding: 0 10px;

    border: 1px solid #6ef8ac;
    border-radius: 999px;

    color: #6ef8ac;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.realisation-card__tag--blue {
    border-color: #86a9f7;
    color: #86a9f7;
}

.realisation-card__tag--yellow {
    border-color: #ffeb00;
    color: #ffeb00;
}

/* =========================
   RÉALISATIONS - RESPONSIVE FIX
========================= */

@media (max-width: 575.98px) {
    .backgroundBleu.exemples {
        padding: 52px 0 44px;
        overflow: hidden;
    }

    .exemples .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .exemples h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    .exemples .trait {
        margin-top: 18px;
    }

    .realisations-slider {
        margin-top: 32px;
    }

    .realisations-slider__viewport {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
    }

    .realisations-slider__track {
        gap: 18px;
        align-items: flex-start;
    }

    .realisation-card {
        flex: 0 0 calc(100vw - 40px);
        max-width: 360px;
        min-width: 0;
        scroll-snap-align: start;
    }

    .realisation-card__image-wrap {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 0;
    }

    .realisation-card__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .realisation-card__title {
        margin: 16px 0 8px;
        padding: 0;
        font-size: 23px;
        line-height: 1.1;
        white-space: normal;
        overflow: visible;
    }

    .realisation-card__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        overflow: visible;
    }

    .realisation-card__tag {
        min-height: 20px;
        padding: 3px 9px;
        font-size: 10px;
        line-height: 1;
    }

    .realisations-slider__bottom {
        margin-top: 34px;
        gap: 16px;
    }

    .realisations-slider__progress {
        min-width: 0;
    }

    .realisations-slider__arrows {
        flex: 0 0 auto;
    }
}

/* =========================
   RÉALISATIONS - TABLETTE FIX
   entre desktop et mobile
========================= */

@media (min-width: 768px) and (max-width: 991.98px) {
    .backgroundBleu.exemples {
        padding: 60px 0 42px;
        overflow: hidden;
    }

    .exemples .container {
        max-width: 100%;
        padding-left: 36px;
        padding-right: 36px;
    }

    .exemples h2 {
        font-size: 40px;
        line-height: 1.1;
    }

    .realisations-slider {
        margin-top: 44px;
    }

    .realisations-slider__viewport {
        width: 100%;
        overflow: hidden;
    }

    .realisations-slider__track {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
        transform: none;
    }

    .realisation-card {
        flex: 0 0 calc((100% - 40px) / 3);
        min-width: 0;
        max-width: none;
    }

    .realisation-card__image-wrap {
        width: 100%;
        aspect-ratio: 1 / 1.075;
        border-radius: 14px;
        overflow: hidden;
    }

    .realisation-card__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .realisation-card__title {
        margin: 14px 0 7px;
        font-size: 23px;
        line-height: 1.05;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .realisation-card__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        min-width: 0;
    }

    .realisation-card__tag {
        height: 19px;
        padding: 0 8px;
        font-size: 10px;
        line-height: 1;
        white-space: nowrap;
    }

    .realisations-slider__bottom {
        margin-top: 58px;
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .realisations-slider__progress {
        flex: 1;
        min-width: 0;
    }

    .realisations-slider__arrows {
        flex: 0 0 auto;
    }
}


@media (min-width: 1199px) and (max-width: 1399px) {

    .soulignerAccueil::after {
        display: none;
    }


}

.header-graphisme__rdv-form {
    position: relative;
    display: inline-flex;
}

.rdv-date-input {
    position: absolute;

    /*
     * C’est ça qui déplace le point d’ouverture du calendrier.
     * Plus la valeur est négative, plus le calendrier essaiera de s’ouvrir haut.
     */
    top: -260px;
    left: 0;

    width: 1px;
    height: 1px;

    opacity: 0;
    border: 0;
    padding: 0;

    pointer-events: none;
}

/*@todo adresse*/

.commande-adresse-page {
    min-height: 100vh;
    background: #eef3ff;
    padding: 50px 24px 70px;
}

.commande-adresse-header {
    text-align: center;
    margin-bottom: 42px;
}

.commande-adresse-header h1 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: #001f55;
}

.commande-adresse-header h1 span {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.commande-adresse-header h1 span::before {
    content: "";
    position: absolute;
    left: -6px;
    right: -6px;
    bottom: 2px;
    height: 18px;
    background: #6ef8ac;
    border-radius: 999px;
    z-index: -1;
}

.commande-adresse-header p {
    margin: 0;
    font-size: 16px;
    color: #001f55;
}

/* =========================
   FORMULAIRE GLOBAL
========================= */

.commande-adresse-form {
    max-width: 1180px;
    margin: 0 auto;
}

.commande-adresse-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* =========================
   CARTES
========================= */

.commande-adresse-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 38px;
    box-shadow: 0 12px 32px rgba(0, 31, 85, 0.08);
}

.commande-adresse-card h2 {
    margin: 0 0 26px;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: #001f55;
}

/* =========================
   CHAMPS
========================= */

.commande-adresse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.commande-adresse-field {
    margin-bottom: 20px;
}

.commande-adresse-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #001f55;
    text-transform: uppercase;
}

.commande-adresse-field input {
    width: 100%;
    height: 46px;
    border: 1px solid #d7e1fb;
    border-radius: 999px;
    padding: 0 22px;
    background: #f7f9ff;
    color: #001f55;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    box-sizing: border-box;
}

.commande-adresse-field input::placeholder {
    color: #b9c7ea;
}

.commande-adresse-field input:focus {
    border-color: #001f55;
    background: #ffffff;
}

.commande-adresse-field input:disabled {
    opacity: 1;
    color: #001f55;
    background: #eef3ff;
    cursor: not-allowed;
}

/* =========================
   BOUTON
========================= */

.commande-adresse-submit {
    max-width: 420px;
    margin: 34px auto 0;
}

.commande-adresse-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 999px;
    background: #6ef8ac;
    color: #001f55;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.commande-adresse-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 31, 85, 0.12);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
    .commande-adresse-layout {
        grid-template-columns: 1fr;
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .commande-adresse-page {
        padding: 34px 16px 50px;
    }

    .commande-adresse-header {
        margin-bottom: 34px;
    }

    .commande-adresse-header h1 {
        font-size: 34px;
    }

    .commande-adresse-header h1 span::before {
        height: 15px;
        bottom: 1px;
    }

    .commande-adresse-header p {
        font-size: 14px;
    }

    .commande-adresse-card {
        padding: 26px 22px;
    }

    .commande-adresse-card h2 {
        font-size: 22px;
    }

    .commande-adresse-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .commande-adresse-submit {
        max-width: 100%;
    }
}

/* =========================
   CIVILITÉ RADIO PROPRE
========================= */

.commande-adresse-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #001f55;
    text-transform: none;
}

.commande-civilite-radio-group {
    display: flex;
    align-items: center;
    gap: 34px;
    min-height: 24px;
}

.commande-civilite-radio {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px;
    height: 22px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    color: #001f55;
    text-transform: uppercase;
    line-height: 1;
    user-select: none;
    white-space: nowrap;
}

/* On annule totalement le style global des inputs */
.commande-adresse-field input.commande-civilite-input {
    display: inline-block !important;
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    min-height: 17px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer;
    accent-color: #6ef8ac;
    flex: 0 0 17px;
    vertical-align: middle;
}

.commande-civilite-radio span {
    display: inline-block !important;
    line-height: 17px;
    transform: translateY(1px);
}

.commande-adresse-field input.commande-civilite-input:focus {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.commande-civilite-radio:hover span {
    color: #0071ba;
}

/*@todo echec paiement*/
.paiementEchec {
    padding: 110px 0 130px;
    background:
            radial-gradient(circle at top left, rgba(110, 248, 172, 0.18), transparent 32%),
            radial-gradient(circle at bottom right, rgba(255, 230, 0, 0.18), transparent 30%),
            #fff;
}

.paiementEchec__card {
    max-width: 760px;
    margin: 0 auto;
    padding: 55px 60px 50px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(0, 31, 85, 0.12);
    border-radius: 34px;
    box-shadow: 0 24px 70px rgba(0, 31, 85, 0.10);
}

.paiementEchec__icone {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffe600;
    color: #001f55;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 0 12px rgba(255, 230, 0, 0.22);
}

.paiementEchec__label {
    margin: 0 0 12px;
    color: #001f55;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.paiementEchec__titre {
    margin: 0 0 18px;
    color: #001f55;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.08;
}

.paiementEchec__texte {
    max-width: 590px;
    margin: 0 auto;
    color: #001f55;
    font-size: 21px;
    line-height: 1.55;
}

.paiementEchec__separateur {
    width: 100%;
    height: 1px;
    margin: 32px 0 24px;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(0, 31, 85, 0.22),
            transparent
    );
}

.paiementEchec__aide {
    max-width: 610px;
    margin: 0 auto;
    color: rgba(0, 31, 85, 0.82);
    font-size: 17px;
    line-height: 1.65;
}

.paiementEchec__actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.paiementEchec__btn {
    min-width: 190px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.paiementEchec__btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.paiementEchec__btn--principal {
    background: #001f55;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 31, 85, 0.22);
}

.paiementEchec__btn--principal:hover {
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 31, 85, 0.28);
}

.paiementEchec__btn--secondaire {
    background: #6ef8ac;
    color: #001f55;
    box-shadow: 0 12px 28px rgba(110, 248, 172, 0.35);
}

.paiementEchec__btn--secondaire:hover {
    color: #001f55;
    box-shadow: 0 16px 34px rgba(110, 248, 172, 0.45);
}

.paiementEchec__lien {
    color: #001f55;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.paiementEchec__lien:hover {
    color: #001f55;
}

@media (max-width: 767px) {
    .paiementEchec {
        padding: 70px 0 90px;
    }

    .paiementEchec__card {
        padding: 42px 24px 38px;
        border-radius: 26px;
    }

    .paiementEchec__icone {
        width: 66px;
        height: 66px;
        font-size: 38px;
    }

    .paiementEchec__texte {
        font-size: 18px;
    }

    .paiementEchec__actions {
        flex-direction: column;
        gap: 14px;
    }

    .paiementEchec__btn {
        width: 100%;
        max-width: 320px;
    }
}

/*@todo formulaire*/

.formulaire {
    background: #F3F6FF;
/*margin-top: 10rem;*/
}

/* Bouton formulaire */
.btn-form-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    height: 35px;
    padding: 0 8px;

    background: #ffffff;
    border: 1px solid #5ef0ac;
    border-radius: 999px;

    color: #0b2d63;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 4px 0 #5ef0ac;
}

.btn-form-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
}

.btn-form-contact-icon img {
    display: block;
    width: 25px;
    height: 25px;
}


/* Titre */
.title-objectifs {
    margin: 0;
    color: #001f5b;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.title-objectifs__highlight {
    position: relative;
    display: inline-block;
    z-index: 1;

    color: #002b66;
    font-weight: 900;
}

.title-objectifs__highlight::after {
    content: "";
    position: absolute;

    left: -4px;
    right: -6px;
    bottom: 3px;

    height: 9px;
    z-index: -1;

    background: #48e6a0;
    border-radius: 999px;

    transform: rotate(-1.2deg) scaleX(0);
    transform-origin: left center;

    animation: title-objectifs-underline 0.8s ease-out forwards;
}

@keyframes title-objectifs-underline {
    0% {
        transform: rotate(-1.2deg) scaleX(0);
        opacity: 0;
    }

    100% {
        transform: rotate(-1.2deg) scaleX(1);
        opacity: 1;
    }
}

/* Colonne droite */
.formulaire .formulaireContactSide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Wrapper des rectangles + traits */
.formulaire .formulaireContactMockup {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding-top: 105px;
    overflow: visible;
}

/* Traits verts décoratifs */
.formulaire .formulaireContactMockup__traits {
    position: absolute;
    top: -155px;
    right: -200px;
    height: auto;

    z-index: 3;

    pointer-events: none;
    user-select: none;
}

.formulaire .formulaireContactMockup__blue {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 320px;

    background: #7fa0ef;
    border-radius: 24px;
}

.formulaire .formulaireContactMockup__green {

    background: #5ef0ac;
    border-radius: 24px;
}

/* Trait blanc sous le logo */
.formulaire .formulaireContactMockup__separator {
    width: 235px;
    max-width: 58%;
    height: 2px;

    margin-top: 18px;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
}



@media (min-width: 1000px) and (max-width: 1400px) {

    .formulaire .formulaireContactMockup__traits {
        top: -100px;
        right: -150px;
        height: 150px;

    }

}

@media (min-width: 850px) and (max-width: 999px) {

    .formulaire .formulaireContactMockup__traits {
        top: -100px;
        right: -150px;
        height: 150px;
    }
}

@media (max-width: 849px) {
    .formulaire .formulaireContactMockup__traits {
        display: none;
    }

}

/*@todo graphisme*/
.header-graphisme {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 760px;
    min-height: 0;
    padding: 0;
    background-color: #f3fffb;
    color: #062a63;
}


.boutonBanniere{
    box-shadow : 4px 4px 0 #5bea9b;
    border: 2px solid #5bea9b;
}

/* IMAGE DE FOND */

.header-graphisme__background {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.imageBanniere {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* CONTAINER */

.header-graphisme__container {
    position: relative;
    z-index: 2;
    width: 100% !important;
    max-width: none !important;
    height: 100%;
    margin: 0 auto;
    padding: 0 !important;
}

/* CONTENU CENTRAL */

.header-graphisme__content {
    position: absolute;
    top: 124px;
    left: 50%;
    width: 682px;
    max-width: calc(100% - 40px);
    margin: 0;
    text-align: center;
    transform: translateX(-50%);
}

/* LABEL */

.header-graphisme__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 206px;
    height: 39px;
    padding: 0;
    margin: 0 0 26px;
    border: 2px solid #5bea9b;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.82);
    color: #062a63;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}

/* TITRE */

.header-graphisme__title {
    margin: 0;
    color: #062a63;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
    text-align: center;
}

.header-graphisme__title span {
    display: inline-block;
    margin-top: 7px;
    color: #60eba1;
    font-size: 85px;
    font-weight: 800;
    line-height: 1;
}

/* TEXTE */

.header-graphisme__text {
    margin: 42px 0 0;
    color: #062a63;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
}

/* BOUTONS */

.header-graphisme__buttons {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 44px;
}

.btn-form-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 57px;
    min-width: 209px;
    padding: 0 14px 0 26px;
    border: 2px solid #5bea9b;
    border-radius: 29px;
    background-color: #ffffff;
    color: #062a63;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 6px 6px 0 rgba(91, 234, 155, 0.95);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-form-contact:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 rgba(91, 234, 155, 0.95);
}

.btn-form-contact--quote {
    gap: 14px;
}

.btn-form-contact--rdv {
    gap: 12px;
    padding-left: 16px;
    padding-right: 26px;
}

.btn-form-contact span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-form-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.btn-form-contact-icon img {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* SCROLL BAS */

.header-graphisme__scroll {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 0;
    width: 46px;
    height: 46px;
    border-radius: 50% 50% 0 0;
    background-color: #ffffff;
    color: #5bea9b;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

/* 1600px ET MOINS */

@media (max-width: 1600px) {
    .header-graphisme {
        height: 700px;
    }

    .imageBanniere {
        object-position: center center;
    }

    .header-graphisme__content {
        top: 118px;
        width: 610px;
    }

    .header-graphisme__label {
        width: 206px;
        height: 39px;
        margin-bottom: 24px;
        font-size: 18px;
    }

    .header-graphisme__title {
        font-size: 58px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .header-graphisme__title span {
        font-size: 68px;
    }

    .header-graphisme__text {
        margin-top: 34px;
        font-size: 17px;
    }

    .header-graphisme__buttons {
        margin-top: 36px;
    }

    .btn-form-contact {
        height: 52px;
        min-width: 190px;
        font-size: 15px;
    }
}

/* PETIT DESKTOP / TABLETTE HORIZONTALE */

/* CORRECTION RESPONSIVE ENTRE 1000px ET 1199px */

@media (min-width: 1000px) and (max-width: 1199px) {
    html,
    body {
        overflow-x: hidden;
    }

    .header-graphisme {
        height: 640px;
        overflow: hidden;
    }

    .imageBanniere {
        object-position: 0% center !important;
    }

    .header-graphisme__content {
        top: 105px !important;
        left: 68% !important;
        width: 455px !important;
        max-width: 455px !important;
        transform: translateX(-50%) !important;
    }

    .header-graphisme__label {
        width: 206px !important;
        height: 39px !important;
        margin-bottom: 24px !important;
        font-size: 18px !important;
    }

    .header-graphisme__title {
        font-size: 42px !important;
        line-height: 1.12 !important;
        letter-spacing: -0.5px !important;
    }

    .header-graphisme__title span {
        font-size: 52px !important;
    }

    .header-graphisme__text {
        margin-top: 28px !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
        white-space: nowrap;
    }

    .header-graphisme__buttons {
        gap: 16px !important;
        margin-top: 30px !important;
    }

    .btn-form-contact {
        height: 48px !important;
        min-width: 170px !important;
        padding-left: 16px !important;
        padding-right: 10px !important;
        font-size: 13px !important;
    }

    .btn-form-contact--rdv {
        padding-left: 10px !important;
        padding-right: 16px !important;
    }
}
/* TABLETTE */

@media (max-width: 991px) {
    .header-graphisme {
        height: 620px;
    }

    .imageBanniere {
        opacity: 0.65;
        object-position: left center;
    }

    .header-graphisme__content {
        top: 82px;
        left: 50%;
        width: min(500px, calc(100% - 32px));
        max-width: calc(100% - 32px);
        transform: translateX(-50%);
    }

    .header-graphisme__label {
        width: 180px;
        height: 34px;
        margin-bottom: 22px;
        font-size: 15px;
    }

    .header-graphisme__title {
        font-size: 42px;
        line-height: 1.12;
        letter-spacing: -0.5px;
    }

    .header-graphisme__title span {
        font-size: 52px;
    }

    .header-graphisme__text {
        width: min(420px, 100%);
        margin: 26px auto 0;
        font-size: 15px;
    }

    .header-graphisme__buttons {
        gap: 16px;
        margin-top: 30px;
    }

    .btn-form-contact {
        height: 48px;
        min-width: 175px;
        font-size: 13px;
    }
}

/* MOBILE LARGE */

@media (max-width: 890px) {
    .header-graphisme {
        height: 600px;
    }

    .imageBanniere {
        opacity: 0.38;
        object-position: 18% center;
    }

    .header-graphisme__content {
        top: 72px;
        left: 45%;
        width: calc(100% - 28px);
    }

    .header-graphisme__label {
        width: 165px;
        height: 32px;
        margin-bottom: 22px;
        font-size: 13px;
    }

    .header-graphisme__title {
        font-size: 36px;
        line-height: 1.14;
        letter-spacing: -0.4px;
    }

    .header-graphisme__title span {
        font-size: 46px;
    }

    .header-graphisme__text {
        width: min(360px, 100%);
        margin-top: 24px;
        font-size: 14px;
        line-height: 1.35;
    }

    .header-graphisme__buttons {
        flex-direction: column;
        gap: 16px;
        margin-top: 28px;
    }

    .btn-form-contact {
        width: 235px;
        min-width: 0;
        height: 48px;
        font-size: 14px;
    }
}

/* PETIT MOBILE */

@media (max-width: 790px) {
    .header-graphisme {
        height: 560px;
    }

    .imageBanniere {
        opacity: 0.32;
        object-position: 12% center;
    }

    .header-graphisme__content {
        top: 64px;
        left: auto;
        width: calc(100% - 24px);
    }

    .header-graphisme__label {
        width: 155px;
        height: 30px;
        margin-bottom: 20px;
        font-size: 12px;
    }

    .header-graphisme__title {
        font-size: 31px;
        line-height: 1.15;
        letter-spacing: -0.3px;
    }

    .header-graphisme__title span {
        font-size: 40px;
    }

    .header-graphisme__text {
        width: min(310px, 100%);
        margin-top: 22px;
        font-size: 13px;
    }

    .header-graphisme__buttons {
        margin-top: 24px;
    }

    .btn-form-contact {
        width: 225px;
        height: 46px;
        font-size: 13px;
    }

    .btn-form-contact-icon img {
        width: 23px;
        height: 23px;
    }

    .header-graphisme__scroll {
        display: none;
    }
}

/* TRÈS PETIT MOBILE */

@media (max-width: 380px) {
    .header-graphisme {
        height: 535px;
    }

    .header-graphisme__content {
        top: 52px;
    }

    .header-graphisme__title {
        font-size: 28px;
    }

    .header-graphisme__title span {
        font-size: 36px;
    }

    .header-graphisme__text {
        font-size: 12px;
    }

    .btn-form-contact {
        width: 215px;
        height: 44px;
        font-size: 12px;
    }
}
/*@todo fin */
/*
.header-graphisme {
    position: relative;
    overflow: hidden;
    min-height: 670px;
    background: #f3fffb;
    display: flex;
    align-items: center;
}

.header-graphisme__background {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.imageBanniere {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.header-graphisme__container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.header-graphisme__content {
    width: fit-content;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    transform: translateX(95px);
}

.header-graphisme__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 17px;
    margin-bottom: 22px;
    border: 1px solid #5bea9b;
    border-radius: 999px;
    background: #ffffff;
    color: #062a63;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.header-graphisme__title {
    margin: 0;
    color: #062a63;
    font-size: 48px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-graphisme__title span {
    display: inline-block;
    margin-top: 4px;
    color: #60eba1;
    font-size: 56px;
    font-weight: 800;
}

.header-graphisme__text {
    margin: 24px 0 0;
    color: #062a63;
    font-size: 15px;
    line-height: 1.5;
}

.header-graphisme__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
}

.btn-form-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 40px;
    padding: 6px 8px 6px 18px;
    border: 2px solid #5bea9b;
    border-radius: 999px;
    background: #ffffff;
    color: #062a63;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 5px 5px 0 rgba(91, 234, 155, 0.95);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-form-contact:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 rgba(91, 234, 155, 0.95);
}

.btn-form-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.btn-form-contact-icon img {
    display: block;
    width: 25px;
    height: 25px;
}

.btn-form-contact--rdv {
    padding-left: 10px;
    padding-right: 18px;
}

.header-graphisme__scroll {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 0;
    width: 46px;
    height: 46px;
    border-radius: 50% 50% 0 0;
    background: #ffffff;
    color: #5bea9b;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    font-size: 22px;
    font-weight: 700;
}

/* Tablette */
@media (max-width: 1199px) {
    .header-graphisme {
        min-height: 600px;
    }

    .header-graphisme__content {
        transform: translateX(60px);
    }

    .header-graphisme__title {
        font-size: 42px;
    }

    .header-graphisme__title span {
        font-size: 50px;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .header-graphisme {
        min-height: 620px;
        align-items: flex-start;
        padding-top: 90px;
    }

    .imageBanniere {
        object-position: left center;
    }

    .header-graphisme__content {
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
        transform: none;
        padding: 0 20px;
    }

    .header-graphisme__title {
        font-size: 36px;
    }

    .header-graphisme__title span {
        font-size: 44px;
    }

    .header-graphisme__buttons {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .header-graphisme {
        min-height: 560px;
        padding-top: 70px;
    }

    .imageBanniere {
        opacity: 0.45;
        object-position: left center;
    }

    .header-graphisme__title {
        font-size: 30px;
    }

    .header-graphisme__title span {
        font-size: 38px;
    }

    .header-graphisme__text {
        font-size: 14px;
    }
}

/* SECTION TARIFS GRAPHISME */

.backgroundBleuClair {
    background-color: #eef7f4;
}

/* LABELS PACKS / OPTIONS */

.tarifsLabel {
    width: fit-content;
    min-height: 32px;
    padding: 5px 14px;
    margin-bottom: 22px;
    border: 2px solid #062a63;
    border-radius: 999px;
    background-color: #ffffff;
    color: #062a63;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarifsLabel--packs {
    margin-left: 0;
}

.tarifsLabel--options {
    margin-left: 0;
}

/* CARTES PACKS BLANCHES */

.packGraphique {
    position: relative;
    height: 100%;
    min-height: 650px;
    padding: 38px 34px 28px;
    border: 2px solid #5bea9b;
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 10px 10px 0 #5bea9b;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* TITRE PACK */

.packGraphique__header {
    min-height: 150px;
}

.packGraphique__title,
.packGraphique h3 {
    margin: 0 0 10px;
    color: #062a63;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

/* PRIX PACK BLANC */

.packGraphiquePrix {
    position: relative;
    width: 240px;
    height: 90px;
    margin: 0 auto 22px;
}

.packGraphiquePrix img {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.packGraphiquePrix__montant {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 57%;
    transform: translate(-50%, -50%);
    color: #5bea9b;
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.packGraphiquePrix__ht {
    position: absolute;
    z-index: 2;
    left: calc(50% + 70px);
    top: 59%;
    transform: translateY(-50%);
    color: #062a63;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

/* ILLUSTRATION PACK */

.packGraphique__illustration {
    min-height: 145px;
    margin-top: 4px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.packGraphique__illustration img {
    display: block;
    max-width: 165px;
    width: auto;
    height: auto;
}

/* LISTE PACK BLANC */

.packGraphique__list {
    width: 100%;
    max-width: 285px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: left;
}

.packGraphique__list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 17px;
    color: #062a63;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.packGraphique__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 19px;
    height: 19px;
    background-image: url("../image/icones/graphisme/picto-tcheck.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* BOUTON PACK BLANC */

.packGraphique__footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    justify-content: center;
}


.packGraphique__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 7px 8px 7px 22px;
    border: 2px solid #5bea9b;
    border-radius: 999px;
    background-color: #ffffff;
    color: #062a63;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 6px 6px 0 #5bea9b;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.packGraphique__button:hover {
    color: #062a63;
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 #5bea9b;
}

.packGraphique__button img {
    display: block;
    width: 26px;
    height: 26px;
}

/* COLONNE OPTIONS */

.packOptions {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* CARTES OPTIONS VERTES */

.packOption {
    position: relative;
    width: 100%;
    padding: 28px 34px 26px;
    border: 2px solid #062a63;
    border-radius: 24px;
    background-color: #5bea9b;
    box-shadow: 8px 8px 0 #062a63;
    color: #062a63;
    text-align: center;
}

.packOption__title {
    margin: 0 0 14px;
    color: #062a63;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
}

/* PRIX OPTION AVEC SVG CERCLE-RUBRIQUE */

.packOptionPrix {
    position: relative;
    width: 185px;
    height: 72px;
    margin: 0 auto 14px;
}

.packOptionPrix__cercle {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.packOptionPrix__montant {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    color: #062a63;
    font-size: 34px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
}

.packOptionPrix__ht {
    position: absolute;
    z-index: 2;
    left: calc(50% + 63px);
    top: 60%;
    transform: translateY(-50%);
    color: #062a63;
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

/* LISTE OPTIONS */

.packOption__list {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: left;
}

.packOption__list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 10px;
    color: #062a63;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.packOption__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    background-image: url("../image/icones/graphisme/picto-tcheck-blanc.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* BOUTON OPTION */

.packOption__footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.packOption__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 7px 8px 7px 22px;
    border: 2px solid #062a63;
    border-radius: 999px;
    background-color: #ffffff;
    color: #062a63;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: 5px 5px 0 #062a63;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.packOption__button:hover {
    color: #062a63;
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #062a63;
}

.packOption__button img {
    display: block;
    width: 26px;
    height: 26px;
}

/* COMPATIBILITÉ AVEC TON ANCIEN BOUTON */

.bouton.boutonVert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-height: 44px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #5bea9b;
    border-radius: 999px;
    background-color: #ffffff;
    color: #062a63;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 6px 6px 0 #5bea9b;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bouton.boutonVert:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 #5bea9b;
}

/* CLASSES EXISTANTES */

.couleurBleu {
    color: #062a63;
}

.souligner {
    position: relative;
    display: inline-block;
}

.souligner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    z-index: -1;
    width: 100%;
    height: 10px;
    background-color: #5bea9b;
    border-radius: 999px;
}

/* RESPONSIVE */

@media (max-width: 1199px) {
    .tarifsLabel--options {
        margin-top: 20px;
    }

    .packGraphique {
        min-height: 620px;
    }

    .packGraphiquePrix {
        width: 225px;
        height: 84px;
    }

    .packGraphiquePrix__montant {
        font-size: 46px;
    }

    .packGraphiquePrix__ht {
        left: calc(50% + 64px);
    }

    .packOptions {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 991px) {
    .packGraphique {
        min-height: auto;
        margin-bottom: 30px;
    }

    .tarifsLabel {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .packGraphique {
        padding: 30px 24px 26px;
        border-radius: 20px;
        box-shadow: 7px 7px 0 #5bea9b;
    }

    .packGraphique__title,
    .packGraphique h3 {
        font-size: 16px;
    }

    .packGraphiquePrix {
        width: 200px;
        height: 76px;
        margin-bottom: 18px;
    }

    .packGraphiquePrix__montant {
        font-size: 40px;
    }

    .packGraphiquePrix__ht {
        left: calc(50% + 57px);
        font-size: 8px;
    }

    .packGraphique__illustration {
        min-height: 120px;
        margin-bottom: 20px;
    }

    .packGraphique__illustration img {
        max-width: 140px;
    }

    .packGraphique__list {
        max-width: 100%;
    }

    .packGraphique__list li {
        font-size: 13px;
        padding-left: 30px;
    }

    .packGraphique__list li::before {
        width: 17px;
        height: 17px;
    }

    .packOption {
        padding: 26px 24px 24px;
        border-radius: 20px;
        box-shadow: 7px 7px 0 #062a63;
    }

    .packOption__title {
        font-size: 16px;
    }

    .packOptionPrix {
        width: 165px;
        height: 64px;
    }

    .packOptionPrix__montant {
        font-size: 30px;
    }

    .packOptionPrix__ht {
        left: calc(50% + 56px);
        font-size: 7px;
    }

    .packOption__list {
        max-width: 100%;
    }

    .packOption__list li {
        font-size: 12px;
        padding-left: 30px;
    }

    .packOption__list li::before {
        width: 16px;
        height: 16px;
    }
}


/* SECTION TARIFS À LA CARTE */

.tarifsCarte {
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    background-color: #ffffff;
}

.tarifsCarte__container {
    position: relative;
}

.tarifsCarte__title {
    margin: 0 0 48px;
    color: #001F55;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
}

.tarifsCarte__title span {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.tarifsCarte__title span::after {
    content: "";
    position: absolute;
    left: -6px;
    right: -6px;
    bottom: 4px;
    z-index: -1;
    height: 13px;
    background-color: #6EF8AC;
    border-radius: 999px;
}

.tarifsCarte__wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.tarifsCarte__bulle {
    position: absolute;
    z-index: 4;
    left: -58px;
    top: -36px;
    display: block;
    width: 145px;
    height: 115px;
}

.tarifsCarte__bulle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* TABLE */

.tarifsCarte__table {
    position: relative;
    z-index: 2;
    width: 100%;
    color: #001F55;
    font-weight: 800;
}

/* EN-TÊTE */

.tarifsCarte__head {
    display: grid;
    grid-template-columns: 2.2fr 1.05fr 1.05fr 1.05fr 1.1fr;
    gap: 8px;
    margin-bottom: 8px;
    padding-left: 50px;
}

.tarifsCarte__head div {
    min-height: 46px;
    padding: 14px 16px;
    border-radius: 7px;
    background-color: #6EF8AC;
    color: #001F55;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tarifsCarte__head div:last-child {
    background-color: #001F55;
    color: #ffffff;
}

/* ACCORDÉON */

.tarifsCarte__group {
    margin: 0;
    border: 0;
}

.tarifsCarte__group + .tarifsCarte__group {
    margin-top: 0;
}

.tarifsCarte__summary {
    position: relative;
    min-height: 45px;
    padding: 14px 54px 14px 64px;
    border-top: 1px solid #6EF8AC;
    background-color: rgba(110, 248, 172, 0.13);
    color: #001F55;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.tarifsCarte__summary::-webkit-details-marker {
    display: none;
}

.tarifsCarte__summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    color: #001F55;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
}

.tarifsCarte__group[open] > .tarifsCarte__summary::after {
    content: "−";
    font-size: 32px;
}

.tarifsCarte__summary span {
    display: block;
}

/* BODY */

.tarifsCarte__body {
    background-color: #ffffff;
}

.tarifsCarte__row {
    display: grid;
    grid-template-columns: 2.2fr 1.05fr 1.05fr 1.05fr 1.1fr;
    align-items: center;
    min-height: 43px;
    border-bottom: 1px solid rgba(0, 31, 85, 0.08);
    color: #001F55;
}

.tarifsCarte__row > div {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.tarifsCarte__row > div:first-child {
    padding-left: 64px;
    text-align: left;
}

.tarifsCarte__row > div:nth-child(4) {
    font-weight: 900;
}

/* BOUTON COMMANDER */

.tarifsCarte__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 28px;
    padding: 4px 6px 4px 13px;
    border: 1.5px solid #6EF8AC;
    border-radius: 999px;
    background-color: #ffffff;
    color: #001F55;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tarifsCarte__button span {
    width: 18px;
    height: 18px;
    border: 1.5px solid #001F55;
    border-radius: 50%;
    color: #001F55;
    font-size: 13px;
    font-weight: 900;
    line-height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tarifsCarte__button:hover {
    background-color: #6EF8AC;
    color: #001F55;
}

/* RESPONSIVE TABLETTE */

@media (max-width: 1199px) {
    .tarifsCarte {
        padding: 60px 0 80px;
    }

    .tarifsCarte__title {
        font-size: 34px;
    }

    .tarifsCarte__wrapper {
        max-width: 100%;
    }

    .tarifsCarte__bulle {
        left: -18px;
        top: -32px;
        width: 120px;
        height: 96px;
    }

    .tarifsCarte__head {
        padding-left: 42px;
    }

    .tarifsCarte__head div {
        font-size: 13px;
        padding: 12px 10px;
    }

    .tarifsCarte__row > div {
        font-size: 12px;
        padding: 10px 8px;
    }

    .tarifsCarte__row > div:first-child {
        padding-left: 48px;
    }

    .tarifsCarte__summary {
        padding-left: 48px;
    }
}

/* RESPONSIVE MOBILE */

@media (max-width: 767px) {
    .tarifsCarte {
        padding: 50px 0 70px;
    }

    .tarifsCarte__title {
        margin-bottom: 36px;
        font-size: 30px;
    }

    .tarifsCarte__bulle {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 20px;
        width: 110px;
        height: 88px;
    }

    .tarifsCarte__table {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .tarifsCarte__head,
    .tarifsCarte__row {
        min-width: 850px;
    }

    .tarifsCarte__head {
        padding-left: 0;
    }

    .tarifsCarte__summary {
        min-width: 850px;
        padding-left: 24px;
    }

    .tarifsCarte__row > div:first-child {
        padding-left: 24px;
    }
}

/* PETIT MOBILE */

@media (max-width: 575px) {
    .tarifsCarte__title {
        font-size: 26px;
    }

    .tarifsCarte__title span::after {
        height: 10px;
        bottom: 3px;
    }

    .tarifsCarte__head div {
        min-height: 42px;
        font-size: 12px;
    }

    .tarifsCarte__summary {
        font-size: 13px;
    }
}

/*todo SECTION COMMENT ÇA MARCHE */

.commentMarche {
    position: relative;
    /* overflow: hidden; */
    padding: 70px 0 90px;
    background-color: #ffffff;
    color: #001F55;
    margin-bottom: 10rem;
}

.commentMarche * {
    box-sizing: border-box;
}

.commentMarche__container {
    position: relative;
    width: min(1180px, calc(100% - 120px));
    min-height: 1185px;
    margin: 0 auto;
}

/* LIGNE CENTRALE */

.commentMarche__timeline {
    position: absolute;
    z-index: 1;
    top: 265px;
    bottom: 120px;
    left: 50%;
    width: 2px;
    background-color: #6EF8AC;
    transform: translateX(-50%);
}

/* INTRO */

.commentMarche__intro {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 70px;
    width: 410px;
    min-height: 175px;
    padding: 36px 38px 32px;
    border-radius: 30px;
    background-color: #6EF8AC;
    color: #001F55;
}

.commentMarche__intro::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: 0;
    width: 45px;
    height: 45px;
    background-color: #6EF8AC;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}


/* CHIFFRES */

.commentMarche__number {
    position: absolute;
    z-index: 4;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    transform: translateX(-50%);
}

.commentMarche__number img {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.commentMarche__number--1 {
    top: 249px;
}

.commentMarche__number--2 {
    top: 500px;
}

.commentMarche__number--3 {
    top: 735px;
}

.commentMarche__number--4 {
    top: 1020px;
}

/* BLOCS ÉTAPES */

.commentMarche__step {
    position: absolute;
    z-index: 3;
    width: 100%;
    max-width: 420px;
}

.commentMarche__step--left {
    left: 83px;
}

.commentMarche__step--right {
    right: 0;
}

.commentMarche__step--1 {
    top: 80px;
}

.commentMarche__step--2 {
    top: 294px;
}

.commentMarche__step--3 {
    top: 600px;
}

.commentMarche__step--4 {
    top: 875px;
}

/* IMAGES */

.commentMarche__image {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.commentMarche__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* TEXTES */

.commentMarche__text h3 {
    margin: 0 0 15px;
    color: #001F55;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
}

.commentMarche__text p {
    margin: 0;
    color: #001F55;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.42;
}

/* ÉCRANS INTERMÉDIAIRES */

@media (max-width: 1200px) {
    .commentMarche {
        padding: 55px 0 75px;
    }

    .commentMarche__step--left {
        left: 3px;
    }

    .commentMarche__container {
        width: min(980px, calc(100% - 70px));
        min-height: 1100px;
    }

    .commentMarche__intro {
        left: 0;
        width: 320px;
        min-height: 150px;
        padding: 28px 30px 26px;
    }

    .commentMarche__intro p {
        font-size: 10px;
        margin-bottom: 13px;
    }

    .commentMarche__intro h2 {
        font-size: 30px;
    }

    .commentMarche__intro h2::after {
        width: 118px;
        height: 7px;
    }

    .commentMarche__step {
        max-width: 360px;
    }

    .commentMarche__step--1 {
        top: 55px;
    }

    .commentMarche__step--2 {
        top: 241px;
    }

    .commentMarche__step--3 {
        top: 540px;
    }

    .commentMarche__step--4 {
        top: 815px;
    }

    .commentMarche__timeline {
        top: 230px;
        bottom: 105px;
    }

    .commentMarche__number--1 {
        top: 225px;
    }

    .commentMarche__number--2 {
        top: 405px;
    }

    .commentMarche__number--3 {
        top: 630px;
    }

    .commentMarche__number--4 {
        top: 885px;
    }

    .commentMarche__text h3 {
        font-size: 21px;
    }

    .commentMarche__text p {
        font-size: 12px;
        line-height: 1.38;
    }
}

/* FORMAT TABLETTE / PETIT DESKTOP */

@media (max-width: 950px) {
    .commentMarche {
        padding: 50px 0 70px;
    }

    .commentMarche__container {
        width: min(830px, calc(100% - 55px));
        min-height: 1020px;
    }

    .commentMarche__intro {
        left: 0;
        width: 300px;
        min-height: 135px;
        padding: 24px 26px 22px;
        border-radius: 24px;
    }

    .commentMarche__intro p {
        font-size: 9px;
        margin-bottom: 11px;
    }

    .commentMarche__intro h2 {
        font-size: 26px;
        line-height: 1.08;
    }

    .commentMarche__intro h2::after {
        width: 108px;
        height: 6px;
        margin-top: -4px;
    }

    .commentMarche__intro::after {
        right: -15px;
        width: 38px;
        height: 38px;
    }

    .commentMarche__step {
        max-width: 320px;
    }

    .commentMarche__step--1 {
        top: 45px;
    }

    .commentMarche__step--2 {
        top: 225px;
    }

    .commentMarche__step--3 {
        top: 470px;
    }

    .commentMarche__step--4 {
        top: 725px;
    }

    .commentMarche__timeline {
        top: 200px;
        bottom: 90px;
    }

    .commentMarche__number,
    .commentMarche__number img {
        width: 50px;
        height: 50px;
    }

    .commentMarche__number--1 {
        top: 195px;
    }

    .commentMarche__number--2 {
        top: 355px;
    }

    .commentMarche__number--3 {
        top: 565px;
    }

    .commentMarche__number--4 {
        top: 800px;
    }

    .commentMarche__image {
        margin-bottom: 14px;
    }

    .commentMarche__text h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .commentMarche__text p {
        font-size: 11px;
        line-height: 1.35;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .commentMarche {
        padding: 50px 0 60px;
    }

    .commentMarche__container {
        width: min(100% - 30px, 520px);
        min-height: auto;
        padding-left: 72px;
    }

    .commentMarche__timeline {
        top: 205px;
        bottom: 55px;
        left: 27px;
        transform: none;
    }

    .commentMarche__intro,
    .commentMarche__step {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        max-width: none;
    }

    .commentMarche__intro {
        width: auto;
        min-height: auto;
        margin: 0 0 46px;
        padding: 28px 28px 26px;
    }

    .commentMarche__intro h2 {
        font-size: 28px;
    }

    .commentMarche__step {
        width: 100%;
        margin: 0 0 56px;
    }

    .commentMarche__number {
        left: 0;
        transform: none;
    }

    .commentMarche__number img {
        width: 50px;
        height: 50px;
    }

    .commentMarche__number--1 {
        top: 505px;
    }

    .commentMarche__number--2 {
        top: 1060px;
    }

    .commentMarche__number--3 {
        top: 1620px;
    }

    .commentMarche__number--4 {
        top: 2150px;
    }

    .commentMarche__image {
        margin-bottom: 16px;
    }

    .commentMarche__text h3 {
        font-size: 21px;
    }

    .commentMarche__text p {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* PETIT MOBILE */

@media (max-width: 480px) {
    .commentMarche__container {
        width: calc(100% - 24px);
        padding-left: 58px;
    }

    .commentMarche__timeline {
        left: 22px;
        top: 195px;
    }

    .commentMarche__intro {
        padding: 24px 22px;
        border-radius: 24px;
        margin-bottom: 42px;
    }

    .commentMarche__intro p {
        font-size: 10px;
    }

    .commentMarche__intro h2 {
        font-size: 25px;
    }

    .commentMarche__intro h2::after {
        width: 112px;
        height: 7px;
    }

    .commentMarche__step {
        margin-bottom: 52px;
    }

    .commentMarche__number {
        left: -3px;
    }

    .commentMarche__number img {
        width: 46px;
        height: 46px;
    }

    .commentMarche__text h3 {
        font-size: 19px;
    }

    .commentMarche__text p {
        font-size: 12px;
    }

    .commentMarche__number--1 {
        top: 195px;
    }

    .commentMarche__number--2 {
        top: 485px;
    }

    .commentMarche__number--3 {
        top: 790px;
    }

    .commentMarche__number--4 {
        top: 1095px;
    }
}

/* FIX TABLETTE 769px → 960px */
@media (min-width: 768px) and (max-width: 960px) {

    .commentMarche {
        padding: 55px 0 70px;
        overflow: hidden;
    }

    .commentMarche__container {
        width: min(100% - 50px, 720px);
        min-height: auto;
        margin: 0 auto;
        padding-left: 76px;
    }

    .commentMarche__timeline {
        top: 205px;
        bottom: 45px;
        left: 26px;
        transform: none;
    }

    .commentMarche__intro,
    .commentMarche__step {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: none;
    }

    .commentMarche__intro {
        margin: 0 0 58px;
        padding: 28px 30px 26px;
        border-radius: 26px;
    }

    .commentMarche__intro::after {
        right: -14px;
        width: 38px;
        height: 38px;
    }

    .commentMarche__intro .font18 {
        margin: 0 0 12px;
        font-size: 12px;
        line-height: 1.2;
    }

    .commentMarche__intro .font43 {
        margin: 0;
        font-size: 34px;
        line-height: 1.05;
    }

    .commentMarche__step {
        margin: 0 0 68px;
    }

    .commentMarche__step:last-of-type {
        margin-bottom: 0;
    }

    .commentMarche__image {
        width: 100%;
        max-width: 520px;
        margin: 0 0 20px;
    }

    .commentMarche__image img {
        width: 100%;
        height: auto;
    }

    .commentMarche__text .font30 {
        margin: 0 0 12px;
        color: #001F55;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.18;
    }

    .commentMarche__text .font18 {
        margin: 0;
        color: #001F55;
        font-size: 17px;
        font-weight: 400;
        line-height: 1.38;
    }

    /*
       On désactive les chiffres absolus existants uniquement sur cette tranche.
       Sinon ils restent calés avec des top fixes prévus pour une autre hauteur.
    */
    .commentMarche__number {
        display: none;
    }

    /*
       On recrée les chiffres proprement en CSS,
       directement alignés avec chaque bloc.
    */
    .commentMarche__step::before {
        position: absolute;
        z-index: 5;
        top: 6px;
        left: -76px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 52px;
        height: 52px;
        border: 2px solid #6EF8AC;
        border-radius: 50%;
        background-color: #ffffff;
        color: #001F55;
        font-size: 22px;
        font-weight: 900;
        line-height: 1;
    }

    .commentMarche__step--1::before {
        content: "1";
    }

    .commentMarche__step--2::before {
        content: "2";
    }

    .commentMarche__step--3::before {
        content: "3";
    }

    .commentMarche__step--4::before {
        content: "4";
    }
}



@media (max-width: 767px) {

    .commentMarche__number {
        display: none;
    }

    .commentMarche__text {
        position: relative;
    }

    .commentMarche__text::before {
        position: absolute;
        top: 2px;
        left: -60px;

        display: flex;
        justify-content: center;
        align-items: center;

        width: 46px;
        height: 46px;

        border: 2px solid #6EF8AC;
        border-radius: 50%;
        background: #ffffff;

        color: #001F55;
        font-size: 18px;
        font-weight: 900;
        line-height: 1;

        z-index: 5;
    }

    .commentMarche__step--1 .commentMarche__text::before {
        content: "1";
    }

    .commentMarche__step--2 .commentMarche__text::before {
        content: "2";
    }

    .commentMarche__step--3 .commentMarche__text::before {
        content: "3";
    }

    .commentMarche__step--4 .commentMarche__text::before {
        content: "4";
    }
}


@media (min-width: 768px) and (max-width: 960px) {

    .commentMarche__number {
        display: none !important;
    }

    .commentMarche__step::before {
        content: none !important;
        display: none !important;
    }

    .commentMarche__text {
        position: relative;
    }

    .commentMarche__text::before {
        content: "";
        position: absolute;

        top: 0;
        left: -76px;

        display: flex;
        justify-content: center;
        align-items: center;

        width: 52px;
        height: 52px;

        border: 2px solid #6EF8AC;
        border-radius: 50%;
        background: #ffffff;

        color: #001F55;
        font-size: 22px;
        font-weight: 900;
        line-height: 1;

        z-index: 5;
    }

    .commentMarche__step--1 .commentMarche__text::before {
        content: "1";
    }

    .commentMarche__step--2 .commentMarche__text::before {
        content: "2";
    }

    .commentMarche__step--3 .commentMarche__text::before {
        content: "3";
    }

    .commentMarche__step--4 .commentMarche__text::before {
        content: "4";
    }
}





/* SLIDER RÉALISATIONS */

.realisationsSlider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 34px 0 52px;
    background-color: #ffffff;
}

.realisationsSlider__viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.realisationsSlider__track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    transition: transform 0.45s ease;
    will-change: transform;
}

/* SLIDE CENTRALE */

.realisationsSlider__slide {
    position: relative;
    flex: 0 0 1180px;
    height: 354px;
    overflow: hidden;
    border-radius: 14px;
    background-color: #f3f3f3;
}

.realisationsSlider__picture {
    display: block;
    width: 100%;
    height: 100%;
}

.realisationsSlider__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SLIDES NON ACTIVES */

.realisationsSlider__slide {
    opacity: 0.35;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.realisationsSlider__slide.is-active {
    opacity: 1;
}

/* TITRE OPTIONNEL */

.realisationsSlider__title {
    position: absolute;
    left: 48px;
    top: 42px;
    z-index: 3;
    margin: 0;
    color: #001F55;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.1;
}

/* FLÈCHES */

.realisationsSlider__arrow {
    position: absolute;
    z-index: 20;
    top: 50%;
    width: 74px;
    height: 74px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.realisationsSlider__arrow img {
    display: block;
    width: 74px;
    height: 74px;
}

.realisationsSlider__arrow--prev {
    left: calc(50% - 590px - 92px);
}

.realisationsSlider__arrow--next {
    right: calc(50% - 590px - 92px);
}

/* TABLETTE */

@media (max-width: 1399px) {
    .realisationsSlider__slide {
        flex-basis: 74vw;
        height: 320px;
    }

    .realisationsSlider__track {
        gap: 32px;
    }

    .realisationsSlider__arrow--prev {
        left: 6vw;
    }

    .realisationsSlider__arrow--next {
        right: 6vw;
    }

    .realisationsSlider__title {
        left: 36px;
        top: 34px;
        font-size: 32px;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .realisationsSlider {
        padding: 26px 0 36px;
    }

    .realisationsSlider__track {
        gap: 16px;
    }

    .realisationsSlider__slide {
        flex: 0 0 calc(100vw - 48px);
        height: 230px;
        border-radius: 12px;
    }

    .realisationsSlider__arrow {
        width: 46px;
        height: 46px;
    }

    .realisationsSlider__arrow img {
        width: 46px;
        height: 46px;
    }

    .realisationsSlider__arrow--prev {
        left: 12px;
    }

    .realisationsSlider__arrow--next {
        right: 12px;
    }

    .realisationsSlider__title {
        left: 18px;
        top: 22px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .realisationsSlider__slide {
        height: 190px;
    }
}





.doublePerformance {
    width: 100%;
    background: #ffffff;
    padding: 86px 0 96px;
    overflow: hidden;
}

.doublePerformance__container {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
}

.doublePerformance__title {
    margin: 0 0 86px;
    font-family: "Quicksand", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    color: #001F55;
}

.doublePerformance__title span {
    position: relative;
    display: inline-block;
    font-weight: 700;
    z-index: 1;
}

.doublePerformance__title span::after {
    content: "";
    position: absolute;
    left: 0;
    right: -2px;
    bottom: 2px;
    height: 8px;
    background: #6EF8AC;
    border-radius: 999px;
    z-index: -1;
}

.doublePerformance__content {
    width: 100%;
    max-width: 1007px;
    min-height: 339px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 364px 96px 364px;
    align-items: center;
    justify-content: space-between;
}

.doublePerformance__card {
    width: 364px;
    height: 339px;
    box-sizing: border-box;
    background: #ffffff;
    border: 2px solid #6EF8AC;
    border-radius: 27px;
    box-shadow: 12px 12px 0 #6EF8AC;
    padding: 36px 0 0 51px;
}

.doublePerformance__icon {
    display: block;
    width: 61px;
    height: 58px;
    object-fit: contain;
    margin: 0 0 54px;
}

.doublePerformance__text {
    margin: 0;
    max-width: 303px;
    font-family: "Quicksand", sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 31px;
    color: #001F55;
}

.doublePerformance__plus {
    display: block;
    width: 96px;
    height: 118px;
    object-fit: contain;
    justify-self: center;
    align-self: center;
}

/* Responsive tablette */
@media (max-width: 1100px) {
    .doublePerformance__content {
        max-width: 900px;
        grid-template-columns: 320px 80px 320px;
    }

    .doublePerformance__card {
        width: 320px;
        height: 310px;
        padding: 32px 0 0 42px;
    }

    .doublePerformance__text {
        max-width: 260px;
        font-size: 22px;
        line-height: 28px;
    }

    .doublePerformance__plus {
        width: 78px;
        height: 96px;
    }
}

/* Responsive mobile */
@media (max-width: 767px) {
    .doublePerformance {
        padding: 58px 0 70px;
    }

    .doublePerformance__container {
        width: min(100% - 32px, 420px);
    }

    .doublePerformance__title {
        margin-bottom: 48px;
        font-size: 25px;
        line-height: 1.3;
    }

    .doublePerformance__content {
        max-width: 364px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 42px;
    }

    .doublePerformance__card {
        width: 100%;
        max-width: 364px;
        height: 320px;
        padding: 34px 32px 0;
    }

    .doublePerformance__icon {
        margin-bottom: 46px;
    }

    .doublePerformance__text {
        max-width: 100%;
        font-size: 23px;
        line-height: 29px;
    }

    .doublePerformance__plus {
        width: 78px;
        height: 92px;
        transform: rotate(90deg);
    }
}


.backgroundTarifsCreation{
    background: #F0FFF7;
}
/*todo paiement success*/
.paiementSucces {
    padding: 110px 0 130px;
    background:
            radial-gradient(circle at top left, rgba(110, 248, 172, 0.22), transparent 32%),
            radial-gradient(circle at bottom right, rgba(110, 248, 172, 0.16), transparent 30%),
            #fff;
}

.paiementSucces__card {
    max-width: 760px;
    margin: 0 auto;
    padding: 55px 60px 50px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(0, 31, 85, 0.12);
    border-radius: 34px;
    box-shadow: 0 24px 70px rgba(0, 31, 85, 0.10);
}

.paiementSucces__icone {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #6ef8ac;
    color: #001f55;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 0 0 12px rgba(110, 248, 172, 0.24);
}

.paiementSucces__label {
    margin: 0 0 12px;
    color: #001f55;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.paiementSucces__titre {
    margin: 0 0 18px;
    color: #001f55;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.08;
}

.paiementSucces__texte {
    max-width: 590px;
    margin: 0 auto;
    color: #001f55;
    font-size: 21px;
    line-height: 1.55;
}

.paiementSucces__separateur {
    width: 100%;
    height: 1px;
    margin: 32px 0 24px;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(0, 31, 85, 0.22),
            transparent
    );
}

.paiementSucces__aide {
    max-width: 610px;
    margin: 0 auto;
    color: rgba(0, 31, 85, 0.82);
    font-size: 17px;
    line-height: 1.65;
}

.paiementSucces__actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.paiementSucces__btn {
    min-width: 190px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.paiementSucces__btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.paiementSucces__btn--principal {
    background: #001f55;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 31, 85, 0.22);
}

.paiementSucces__btn--principal:hover {
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 31, 85, 0.28);
}

.paiementSucces__btn--secondaire {
    background: #6ef8ac;
    color: #001f55;
    box-shadow: 0 12px 28px rgba(110, 248, 172, 0.35);
}

.paiementSucces__btn--secondaire:hover {
    color: #001f55;
    box-shadow: 0 16px 34px rgba(110, 248, 172, 0.45);
}

.paiementSucces__lien {
    color: #001f55;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.paiementSucces__lien:hover {
    color: #001f55;
}

@media (max-width: 767px) {
    .paiementSucces {
        padding: 70px 0 90px;
    }

    .paiementSucces__card {
        padding: 42px 24px 38px;
        border-radius: 26px;
    }

    .paiementSucces__icone {
        width: 66px;
        height: 66px;
        font-size: 38px;
    }

    .paiementSucces__texte {
        font-size: 18px;
    }

    .paiementSucces__actions {
        flex-direction: column;
        gap: 14px;
    }

    .paiementSucces__btn {
        width: 100%;
        max-width: 320px;
    }
}

/* =========================
   PAGE PANIER
========================= */
/*@todo panier*/
.panier-page {
    min-height: 100vh;
    background: #eef3ff;
    padding: 40px 24px 60px;
    overflow-x: hidden;
}

/* =========================
   HEADER
========================= */

.panier-header {
    text-align: center;
    margin-bottom: 48px;
}

.panier-header h1 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: #001f55;
}

.panier-header p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #001f55;
}

/* =========================
   LAYOUT
========================= */

.panier-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 760px) 360px;
    gap: 28px;
    align-items: start;
}

.panier-liste {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* =========================
   CARTES
========================= */

.panier-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0, 31, 85, 0.08);
}

/* =========================
   LIGNE PRODUIT
========================= */

.panier-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    align-items: center;
    gap: 28px;
    padding: 26px 34px;
}

.panier-item__infos {
    min-width: 0;
}

.panier-item__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.panier-item__label strong {
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    color: #001f55;
}

.panier-item__label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 12px;
    border-radius: 999px;
    background: #e9efff;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    color: #001f55;
}

.panier-item__infos h2 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    color: #001f55;
    text-transform: uppercase;
}

.panier-item__infos p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #001f55;
}

.panier-item__prix {
    text-align: right;
}

.panier-item__prix strong {
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: #6ef8ac;
    white-space: nowrap;
}

.panier-item__prix span {
    display: block;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    color: #001f55;
    white-space: nowrap;
}

/* =========================
   CODE PROMO
========================= */

.panier-promo-card {
    padding: 24px 34px;
}

.panier-promo label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    color: #001f55;
}

.panier-promo__line {
    display: flex;
    height: 42px;
    border: 1px solid #d7e1fb;
    border-radius: 999px;
    overflow: hidden;
    background: #f4f7ff;
}

.panier-promo__line input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 24px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #001f55;
}

.panier-promo__line input::placeholder {
    color: #cbd5f4;
}

.panier-promo__line button {
    width: 140px;
    border: 0;
    border-left: 1px solid #d7e1fb;
    background: transparent;
    font-size: 14px;
    font-weight: 800;
    color: #001f55;
    cursor: pointer;
}

/* =========================
   RÉCAPITULATIF
========================= */

.panier-recap {
    position: sticky;
    top: 24px;
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.panier-recap h2 {
    margin: 0 0 34px;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: #001f55;
}

.panier-recap__ligne {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 52px;
    border-bottom: 1px solid #dfe8fa;
}

.panier-recap__ligne span,
.panier-recap__ligne strong {
    font-size: 13px;
    line-height: 1;
    color: #001f55;
}

.panier-recap__ligne span {
    font-weight: 600;
}

.panier-recap__ligne strong {
    font-weight: 800;
    white-space: nowrap;
}

.panier-recap__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 38px 0;
}

.panier-recap__total span {
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    color: #001f55;
}

.panier-recap__total strong {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: #6ef8ac;
    white-space: nowrap;
}

/* =========================
   BOUTON COMMANDE
========================= */

.panier-recap__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    margin-top: auto;
    border-radius: 999px;
    background: #6ef8ac;
    color: #001f55;
    text-decoration: none;
    border: #6ef8ac;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.panier-recap__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 31, 85, 0.12);
}

/* =========================
   PANIER VIDE
========================= */

.panier-empty {
    padding: 34px;
}

.panier-empty h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    color: #001f55;
}

.panier-empty p {
    margin: 0 0 20px;
    font-size: 15px;
    color: #001f55;
}

.panier-empty__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 24px;
    border-radius: 999px;
    background: #6ef8ac;
    color: #001f55;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
    .panier-layout {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .panier-recap {
        position: static;
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .panier-page {
        padding: 30px 16px 46px;
    }

    .panier-header {
        margin-bottom: 34px;
    }

    .panier-header h1 {
        font-size: 34px;
    }

    .panier-header p {
        font-size: 14px;
    }

    .panier-item {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 22px;
    }

    .panier-item__infos h2 {
        font-size: 26px;
    }

    .panier-item__prix {
        text-align: left;
    }

    .panier-promo-card {
        padding: 22px;
    }

    .panier-promo__line {
        height: auto;
        flex-direction: column;
        border-radius: 18px;
    }

    .panier-promo__line input {
        height: 42px;
    }

    .panier-promo__line button {
        width: 100%;
        height: 42px;
        border-left: 0;
        border-top: 1px solid #d7e1fb;
    }

    .panier-recap {
        padding: 24px 20px 20px;
    }
}

.panier-item {
    position: relative;
}

.panier-item__delete {
    position: absolute;
    top: 20px;
    right: 22px;
    z-index: 2;

    width: 34px;
    height: 34px;
    padding: 0;

    border: 0;
    outline: 0;
    border-radius: 50%;

    background: #f1f5ff;
    color: #001f55;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    line-height: 1;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transition: 0.2s ease;
}

.panier-item__delete:hover {
    background: #6ef8ac;
    color: #001f55;
}

.panier-item__delete i {
    pointer-events: none;
}

.panier-item__delete:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/*todo reseaux sociaux*/

.header-reseaux-sociaux__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 206px;
    height: 39px;
    padding: 0;
    margin: 0 0 22px;
    border: 1.5px solid #FFEB00;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.88);
    color: #001F55;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}

.titreJaune{
    color: #FFEB00 !important;
}


.btn-form-contact-reseaux-sociaux {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    min-width: 184px;
    padding: 0 8px 0 20px;
    border: 2px solid #FFEB00;
    border-radius: 999px;
    background-color: #ffffff;
    color: #001F55;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 5px 5px 0 #FFEB00;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-form-contact-reseaux-sociaux:hover {
    color: #001F55;
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #FFEB00;
}

.btn-form-contact--quote {
    gap: 10px;
}

.btn-form-contact--rdv {
    gap: 10px;
    padding-left: 12px;
    padding-right: 18px;
}

.btn-form-contact span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-form-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.btn-form-contact-icon img {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: contain;
}

@media (min-width: 1000px) and (max-width: 1199px) {
    .btn-form-contact {
        height: 34px;
        min-width: 168px;
        padding-left: 15px;
        padding-right: 7px;
        font-size: 12px;
        box-shadow: 4px 4px 0 #82A3F7;
    }

    .btn-form-contact--rdv {
        min-width: 124px;
        padding-left: 10px;
        padding-right: 14px;
    }

    .btn-form-contact-icon img {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 768px) and (max-width: 999px) {
    .btn-form-contact {
        height: 40px;
        min-width: 160px;
        padding-left: 15px;
        padding-right: 8px;
        font-size: 12px;
    }

    .btn-form-contact--rdv {
        padding-left: 10px;
        padding-right: 14px;
    }
}

@media (max-width: 767px) {
    .btn-form-contact {
        width: 225px;
        min-width: 0;
        height: 43px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .btn-form-contact {
        width: 215px;
        height: 42px;
        font-size: 12px;
    }

    .btn-form-contact-icon img {
        width: 22px;
        height: 22px;
    }
}

.header-web__scroll-reseaux-sociaux {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 0;
    width: 46px;
    height: 46px;
    border-radius: 50% 50% 0 0;
    background-color: #ffffff;
    color: #FFEB00;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

@media (min-width: 1000px) and (max-width: 1199px) {
    .header-web__scroll-reseaux-sociaux {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    .header-web__scroll-reseaux-sociaux {
        display: none;
    }
}

.packGraphique__list_reseaux-sociaux {
    width: 100%;
    max-width: 285px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: left;
}



.packGraphique__list_reseaux-sociaux li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 17px;
    color: #062a63;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.packGraphique__list_reseaux-sociaux li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 19px;
    height: 19px;
    background-image: url("../image/icones/reseaux-sociaux/picto-tcheck.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.packGraphique__button_reseaux-sociaux {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 7px 8px 7px 22px;
    border: 2px solid #FFEB00;
    border-radius: 999px;
    background-color: #ffffff;
    color: #062a63;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 6px 6px 0 #FFEB00;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.packGraphique__button_reseaux-sociaux:hover,
.packGraphique__button_reseaux-sociaux:focus-visible {
    color: #062a63;
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 #FFEB00;
}

.packGraphique__button_reseaux-sociaux:active {
    transform: translate(6px, 6px);
    box-shadow: 0 0 0 #FFEB00;
}

@media (min-width: 767px) {
    .marginTop{
        margin-top:7rem;
    }
}


/* SECTION TARIFS À LA CARTE */

.tarifsCarte-reseaux-sociaux {
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    background-color: #ffffff;
}

.tarifsCarte-reseaux-sociaux__container {
    position: relative;
}

.tarifsCarte-reseaux-sociaux__title {
    margin: 0 0 48px;
    color: #001F55;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
}

.tarifsCarte-reseaux-sociaux__title span {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.tarifsCarte-reseaux-sociaux__title span::after {
    content: "";
    position: absolute;
    left: -6px;
    right: -6px;
    bottom: 4px;
    z-index: -1;
    height: 13px;
    background-color: #6EF8AC;
    border-radius: 999px;
}

.tarifsCarte-reseaux-sociaux__wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.tarifsCarte-reseaux-sociaux__bulle {
    position: absolute;
    z-index: 4;
    left: -58px;
    top: -36px;
    display: block;
    width: 145px;
    height: 115px;
}

.tarifsCarte-reseaux-sociaux__bulle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* TABLE */

.tarifsCarte-reseaux-sociaux__table {
    position: relative;
    z-index: 2;
    width: 100%;
    color: #001F55;
    font-weight: 800;
}

/* EN-TÊTE */

.tarifsCarte-reseaux-sociaux__head {
    display: grid;
    grid-template-columns: 2.2fr 1.05fr 1.05fr 1.05fr 1.1fr;
    gap: 8px;
    margin-bottom: 8px;
    padding-left: 50px;
}

.tarifsCarte-reseaux-sociaux__head div {
    min-height: 50px;
    padding: 14px 16px;
    border-radius: 7px;
    background-color: #FFEB00;
    color: #001F55;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tarifsCarte-reseaux-sociaux__head div:nth-child(1) {
    grid-column: 1 / 4;
}

.tarifsCarte-reseaux-sociaux__head div:nth-child(2) {
    grid-column: 4 / 5;
}

.tarifsCarte-reseaux-sociaux__head div:nth-child(3) {
    grid-column: 5 / 6;
    background-color: #001F55;
    color: #FFEB00;
}
.tarifsCarte-reseaux-sociaux__head div:last-child {
    background-color: #001F55;
    color: #ffffff;
}

/* ACCORDÉON */

.tarifsCarte-reseaux-sociaux__group {
    margin: 0;
    border: 0;
}

.tarifsCarte-reseaux-sociaux__group + .tarifsCarte-reseaux-sociaux__group {
    margin-top: 0;
}

.tarifsCarte-reseaux-sociaux__summary {
    position: relative;
    min-height: 45px;
    padding: 14px 54px 14px 64px;
    border-top: 1px solid rgba(255, 235, 1, 0.10);
    background-color: rgba(255, 235, 1, 0.10);
    color: #001F55;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.tarifsCarte-reseaux-sociaux__summary::-webkit-details-marker {
    display: none;
}

.tarifsCarte-reseaux-sociaux__summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    color: #001F55;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
}

.tarifsCarte-reseaux-sociaux__group[open] > .tarifsCarte-reseaux-sociaux__summary::after {
    content: "−";
    font-size: 32px;
}

.tarifsCarte-reseaux-sociaux__summary span {
    display: block;
}

/* BODY */

.tarifsCarte-reseaux-sociaux__body {
    background-color: #ffffff;
}

.tarifsCarte-reseaux-sociaux__row {
    display: grid;
    grid-template-columns: 2.2fr 1.05fr 1.05fr 1.05fr 1.1fr;
    align-items: center;
    min-height: 43px;
    border-bottom: 1px solid rgba(0, 31, 85, 0.08);
    color: #001F55;
}

.tarifsCarte-reseaux-sociaux__row > div {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.tarifsCarte-reseaux-sociaux__row > div:first-child {
    padding-left: 64px;
    text-align: left;
}

.tarifsCarte-reseaux-sociaux__row > div:nth-child(4) {
    font-weight: 900;
}

/* BOUTON COMMANDER */

.tarifsCarte-reseaux-sociaux__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 28px;
    padding: 4px 6px 4px 13px;
    border: 1.5px solid #FFEB00;
    border-radius: 999px;
    background-color: #ffffff;
    color: #001F55;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tarifsCarte-reseaux-sociaux__button span {
    width: 18px;
    height: 18px;
    border: 1.5px solid #001F55;
    border-radius: 50%;
    color: #001F55;
    font-size: 13px;
    font-weight: 900;
    line-height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tarifsCarte-reseaux-sociaux__button:hover {
    background-color: rgba(255, 235, 1, 0.10);
    color: #001F55;
}

/* RESPONSIVE TABLETTE */

@media (max-width: 1199px) {
    .tarifsCarte-reseaux-sociaux {
        padding: 60px 0 80px;
    }

    .tarifsCarte-reseaux-sociaux__title {
        font-size: 34px;
    }

    .tarifsCarte-reseaux-sociaux__wrapper {
        max-width: 100%;
    }

    .tarifsCarte-reseaux-sociaux__bulle {
        left: -18px;
        top: -32px;
        width: 120px;
        height: 96px;
    }

    .tarifsCarte-reseaux-sociaux__head {
        padding-left: 42px;
    }

    .tarifsCarte-reseaux-sociaux__head div {
        font-size: 13px;
        padding: 12px 10px;
    }

    .tarifsCarte-reseaux-sociaux__row > div {
        font-size: 12px;
        padding: 10px 8px;
    }

    .tarifsCarte-reseaux-sociaux__row > div:first-child {
        padding-left: 48px;
    }

    .tarifsCarte-reseaux-sociaux__summary {
        padding-left: 48px;
    }
}

/* RESPONSIVE MOBILE */

@media (max-width: 767px) {
    .tarifsCarte-reseaux-sociaux {
        padding: 50px 0 70px;
    }

    .tarifsCarte-reseaux-sociaux__title {
        margin-bottom: 36px;
        font-size: 30px;
    }

    .tarifsCarte-reseaux-sociaux__bulle {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 20px;
        width: 110px;
        height: 88px;
    }

    .tarifsCarte-reseaux-sociaux__table {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .tarifsCarte-reseaux-sociaux__head,
    .tarifsCarte-reseaux-sociaux__row {
        min-width: 850px;
    }

    .tarifsCarte-reseaux-sociaux__head {
        padding-left: 0;
    }

    .tarifsCarte-reseaux-sociaux__summary {
        min-width: 850px;
        padding-left: 24px;
    }

    .tarifsCarte-reseaux-sociaux__row > div:first-child {
        padding-left: 24px;
    }
}

/* PETIT MOBILE */

@media (max-width: 575px) {
    .tarifsCarte-reseaux-sociaux__title {
        font-size: 26px;
    }

    .tarifsCarte-reseaux-sociaux__title span::after {
        height: 10px;
        bottom: 3px;
    }

    .tarifsCarte-reseaux-sociaux__head div {
        min-height: 42px;
        font-size: 12px;
    }

    .tarifsCarte-reseaux-sociaux__summary {
        font-size: 13px;
    }
}

.commentMarche__intro_reseaux_soiaux {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 70px;
    width: 410px;
    min-height: 175px;
    padding: 36px 38px 32px;
    border-radius: 30px;
    background-color: #FFEB00;
    color: #001F55;
}

.commentMarche__intro_reseaux_soiaux::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: 0;
    width: 45px;
    height: 45px;
    background-color: #FFEB00;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

@media (max-width: 1200px) {
    .commentMarche__intro_reseaux_soiaux {
        left: 0;
        width: 320px;
        min-height: 150px;
        padding: 28px 30px 26px;
    }

    .commentMarche__intro_reseaux_soiaux p {
        font-size: 10px;
        margin-bottom: 13px;
    }

    .commentMarche__intro_reseaux_soiaux h2 {
        font-size: 30px;
    }

    .commentMarche__intro_reseaux_soiaux h2::after {
        width: 118px;
        height: 7px;
    }
}

@media (max-width: 950px) {
    .commentMarche__intro_reseaux_soiaux {
        left: 0;
        width: 300px;
        min-height: 135px;
        padding: 24px 26px 22px;
        border-radius: 24px;
    }

    .commentMarche__intro_reseaux_soiaux p {
        font-size: 9px;
        margin-bottom: 11px;
    }

    .commentMarche__intro_reseaux_soiaux h2 {
        font-size: 26px;
        line-height: 1.08;
    }

    .commentMarche__intro_reseaux_soiaux h2::after {
        width: 108px;
        height: 6px;
        margin-top: -4px;
    }

    .commentMarche__intro_reseaux_soiaux::after {
        right: -15px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 767px) {
    .commentMarche__intro_reseaux_soiaux,
    .commentMarche__step {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        max-width: none;
    }

    .commentMarche__intro_reseaux_soiaux {
        width: auto;
        min-height: auto;
        margin: 0 0 46px;
        padding: 28px 28px 26px;
    }

    .commentMarche__intro_reseaux_soiaux h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .commentMarche__intro_reseaux_soiaux {
        padding: 24px 22px;
        border-radius: 24px;
        margin-bottom: 42px;
    }

    .commentMarche__intro_reseaux_soiaux p {
        font-size: 10px;
    }

    .commentMarche__intro_reseaux_soiaux h2 {
        font-size: 25px;
    }

    .commentMarche__intro_reseaux_soiaux h2::after {
        width: 112px;
        height: 7px;
    }
}

@media (min-width: 768px) and (max-width: 960px) {
    .commentMarche__intro_reseaux_soiaux,
    .commentMarche__step {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: none;
    }

    .commentMarche__intro_reseaux_soiaux {
        margin: 0 0 58px;
        padding: 28px 30px 26px;
        border-radius: 26px;
    }

    .commentMarche__intro_reseaux_soiaux::after {
        right: -14px;
        width: 38px;
        height: 38px;
    }

    .commentMarche__intro_reseaux_soiaux .font18 {
        margin: 0 0 12px;
        font-size: 12px;
        line-height: 1.2;
    }

    .commentMarche__intro_reseaux_soiaux .font43 {
        margin: 0;
        font-size: 34px;
        line-height: 1.05;
    }
}

.commentMarche__timeline_reseaux_soiaux {
    position: absolute;
    z-index: 1;
    top: 265px;
    bottom: 120px;
    left: 50%;
    width: 2px;
    background-color: #FFEB00;
    transform: translateX(-50%);
}

@media (max-width: 1200px) {
    .commentMarche__timeline_reseaux_soiaux {
        top: 230px;
        bottom: 105px;
    }
}

@media (max-width: 950px) {
    .commentMarche__timeline_reseaux_soiaux {
        top: 200px;
        bottom: 90px;
    }

}

@media (max-width: 767px) {
    .commentMarche__timeline_reseaux_soiaux {
        top: 205px;
        bottom: 55px;
        left: 27px;
        transform: none;
    }
}
@media (max-width: 480px) {
    .commentMarche__timeline_reseaux_soiaux {
        left: 22px;
        top: 195px;
    }
}

@media (min-width: 768px) and (max-width: 960px) {
    .commentMarche__timeline_reseaux_soiaux {
        top: 205px;
        bottom: 45px;
        left: 26px;
        transform: none;
    }

}


/*@todo tableau de bord client */
#compte {
    padding-top: 20px;
}

#compte .container {
    max-width: 1280px;
}

.compte-nav,
.compte-content {
    background: #fff;
}

.compte-nav {
    min-height: 340px;
}

.compte-nav a {
    display: inline-flex;
    align-items: center;
    color: #347887;
    text-decoration: none;
    font-size: 16px;
}

.compte-nav a:hover {
    color: #235d68;
}

.compte-nav picture,
.compte-nav img {
    flex: 0 0 auto;
}

.compte-content {
    min-height: 520px;
}

.compte-content h2 {
    font-size: 31px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.compte-content h3 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    color: #000;
}

.liste-commandes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.commande-ligne {
    display: block;
    padding: 17px 16px;
    border: 2px solid #6f7d8b;
    color: #347887;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
}

.commande-ligne:hover {
    color: #235d68;
    border-color: #235d68;
}

/*@todo web*/

.header-web {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: min(784px, 40.85vw);
    min-height: 460px;
    padding: 0;
    background-color: #f7fbff;
    color: #001F55;
}

/* IMAGE DE FOND */

.header-web__background {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.imageBanniereWeb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* CONTAINER */

.header-web__container {
    position: relative;
    z-index: 2;
    width: 100% !important;
    max-width: none !important;
    height: 100%;
    margin: 0 auto;
    padding: 0 !important;
}

/* CONTENU CENTRAL */

.header-web__content {
    position: absolute;
    z-index: 3;
    top: 142px;
    left: 50%;
    width: 660px;
    max-width: calc(100% - 40px);
    margin: 0;
    text-align: center;
    transform: translateX(-50%);
}

/* LABEL */

.header-web__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 206px;
    height: 39px;
    padding: 0;
    margin: 0 0 22px;
    border: 1.5px solid #82A3F7;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.88);
    color: #001F55;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}

/* TITRE */

.header-web__title,
.header-web__title.font70 {
    margin: 0;
    color: #001F55;
    font-size: 50px !important;
    font-weight: 800;
    line-height: 1.06 !important;
    letter-spacing: -0.8px;
    text-align: center;
}

.header-web__title span {
    display: inline;
    margin: 0;
    color: #82A3F7;
    font-size: inherit !important;
    font-weight: inherit;
    line-height: inherit !important;
    letter-spacing: inherit;
}

/* TEXTE */

.header-web__text {
    width: 100%;
    max-width: 540px;
    margin: 24px auto 0;
    color: #001F55;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

/* BOUTONS */

.header-web__buttons {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.btn-form-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    min-width: 184px;
    padding: 0 8px 0 20px;
    border: 2px solid #82A3F7;
    border-radius: 999px;
    background-color: #ffffff;
    color: #001F55;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 5px 5px 0 #82A3F7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-form-contact:hover {
    color: #001F55;
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #82A3F7;
}

.btn-form-contact--quote {
    gap: 10px;
}

.btn-form-contact--rdv {
    gap: 10px;
    padding-left: 12px;
    padding-right: 18px;
}

.btn-form-contact span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-form-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.btn-form-contact-icon img {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* SCROLL BAS */

.header-web__scroll {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 0;
    width: 46px;
    height: 46px;
    border-radius: 50% 50% 0 0;
    background-color: #ffffff;
    color: #82A3F7;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.commentMarche__step--5 {
    top: 70rem;
}

.commentMarche__number--5 {
    top: 1105px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1600px) {
    .header-web {
        height: min(720px, 40.85vw);
        min-height: 500px;
    }

    .header-web__content {
        top: 118px;
        width: 620px;
        transform: translateX(-50%);
    }

    .header-web__title,
    .header-web__title.font70 {
        font-size: 46px !important;
        line-height: 1.06 !important;
    }

    .header-web__text {
        margin-top: 22px;
        font-size: 14px;
    }

    .header-web__buttons {
        margin-top: 42px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .header-web {
        height: 560px;
        min-height: 560px;
    }

    .header-web__content {
        top: 94px;
        left: 50%;
        width: 580px;
        max-width: calc(100% - 40px);
        transform: translateX(-50%);
    }

    .header-web__label {
        width: 190px;
        height: 36px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .header-web__title,
    .header-web__title.font70 {
        font-size: 43px !important;
        line-height: 1.06 !important;
        letter-spacing: -0.6px;
    }

    .header-web__text {
        max-width: 460px;
        margin-top: 20px;
        font-size: 13px;
    }

    .header-web__buttons {
        gap: 15px;
        margin-top: 38px;
    }
}

@media (min-width: 1000px) and (max-width: 1199px) {
    html,
    body {
        overflow-x: hidden;
    }

    .header-web {
        height: 463px;
        min-height: 463px;
    }

    .imageBanniereWeb {
        object-position: center top;
    }

    .header-web__content {
        top: 72px;
        left: 50%;
        width: 540px;
        max-width: calc(100% - 40px);
        transform: translateX(-50%);
    }

    .header-web__label {
        width: 108px;
        height: 25px;
        margin-bottom: 24px;
        font-size: 12px;
        border-width: 1px;
    }

    .header-web__title,
    .header-web__title.font70 {
        font-size: 40px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.5px;
    }

    .header-web__text {
        max-width: 430px;
        margin-top: 28px;
        font-size: 12px;
        line-height: 1.32;
    }

    .header-web__buttons {
        gap: 16px;
        margin-top: 48px;
    }

    .btn-form-contact {
        height: 34px;
        min-width: 168px;
        padding-left: 15px;
        padding-right: 7px;
        font-size: 12px;
        box-shadow: 4px 4px 0 #82A3F7;
    }

    .btn-form-contact--rdv {
        min-width: 124px;
        padding-left: 10px;
        padding-right: 14px;
    }

    .btn-form-contact-icon img {
        width: 20px;
        height: 20px;
    }

    .header-web__scroll {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 999px) {
    html,
    body {
        overflow-x: hidden;
    }

    .header-web {
        height: 520px;
        min-height: 520px;
    }

    .imageBanniereWeb {
        object-position: 35% top;
    }

    .header-web__content {
        top: 74px;
        left: 50%;
        width: 500px;
        max-width: calc(100% - 40px);
        transform: translateX(-50%);
    }

    .header-web__label {
        width: 150px;
        height: 31px;
        margin-bottom: 18px;
        font-size: 12px;
    }

    .header-web__title,
    .header-web__title.font70 {
        font-size: 34px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.4px;
    }

    .header-web__text {
        max-width: 360px;
        margin-top: 18px;
        font-size: 13px;
        line-height: 1.3;
    }

    .header-web__buttons {
        gap: 14px;
        margin-top: 30px;
    }

    .btn-form-contact {
        height: 40px;
        min-width: 160px;
        padding-left: 15px;
        padding-right: 8px;
        font-size: 12px;
    }

    .btn-form-contact--rdv {
        padding-left: 10px;
        padding-right: 14px;
    }
}

@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }

    .header-web {
        height: 600px;
        min-height: 600px;
    }

    .imageBanniereWeb {
        opacity: 0.32;
        object-position: 18% center;
    }

    .header-web__content {
        top: 62px;
        left: 50%;
        width: calc(100% - 32px);
        max-width: 430px;
        transform: translateX(-50%);
    }

    .header-web__label {
        width: 160px;
        height: 31px;
        margin-bottom: 16px;
        font-size: 12px;
    }

    .header-web__title,
    .header-web__title.font70 {
        font-size: 31px !important;
        line-height: 1.09 !important;
        letter-spacing: -0.3px;
    }

    .header-web__text {
        max-width: 340px;
        margin-top: 16px;
        font-size: 13px;
        line-height: 1.3;
    }

    .header-web__buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 24px;
    }

    .btn-form-contact {
        width: 225px;
        min-width: 0;
        height: 43px;
        font-size: 13px;
    }

    .header-web__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-web {
        height: 560px;
        min-height: 560px;
    }

    .header-web__content {
        top: 52px;
        width: calc(100% - 24px);
    }

    .header-web__title,
    .header-web__title.font70 {
        font-size: 28px !important;
        line-height: 1.1 !important;
    }

    .header-web__text {
        max-width: 300px;
        margin-top: 15px;
        font-size: 12px;
    }

    .header-web__buttons {
        margin-top: 22px;
    }

    .btn-form-contact {
        width: 215px;
        height: 42px;
        font-size: 12px;
    }

    .btn-form-contact-icon img {
        width: 22px;
        height: 22px;
    }
}

/* Même hauteur pour les 3 cards du haut */
@media (min-width: 1200px) {
    .row.g-5.mt-4.align-items-start {
        align-items: stretch !important;
    }

    .row.g-5.mt-4.align-items-start > .col-xl-8,
    .row.g-5.mt-4.align-items-start > .col-xl-4 {
        display: flex;
        flex-direction: column;
    }

    .row.g-5.mt-4.align-items-start > .col-xl-8 > .row {
        flex: 1;
        align-items: stretch !important;
    }

    .row.g-5.mt-4.align-items-start > .col-xl-8 > .row > [class*="col-"] {
        display: flex;
    }

    .row.g-5.mt-4.align-items-start .packGraphique {
        height: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .row.g-5.mt-4.align-items-start .packGraphique__footer {
        margin-top: auto;
    }
}

@media (max-width: 380px) {
    .header-web {
        height: 535px;
        min-height: 535px;
    }

    .header-web__content {
        top: 48px;
    }

    .header-web__title,
    .header-web__title.font70 {
        font-size: 26px !important;
    }

    .header-web__text {
        font-size: 12px;
    }

    .btn-form-contact {
        width: 210px;
        height: 40px;
    }
}

.packGraphique__list_web {
    width: 100%;
    max-width: 285px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: left;
}



.packGraphique__list_web li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 17px;
    color: #062a63;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.packGraphique__list_web li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 19px;
    height: 19px;
    background-image: url("../image/icones/web/picto-tcheck.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.packGraphique__button_web {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 7px 8px 7px 22px;
    border: 2px solid #86A9F7;
    border-radius: 999px;
    background-color: #ffffff;
    color: #062a63;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 6px 6px 0 #86A9F7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.packGraphique__button_web:hover,
.packGraphique__button_web:focus-visible {
    color: #062a63;
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 #86A9F7;
}

/* Effet encore plus enfoncé au clic */
.packGraphique__button_web:active {
    transform: translate(6px, 6px);
    box-shadow: 0 0 0 #86A9F7;
}












.packGraphiqueWeb {
    position: relative;
    max-width : 453px;
    padding: 38px 34px 28px;
    border-radius: 24px;
    background-color: #86A9F7;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* 800€ uniquement */
.packGraphiqueWeb {
    width: min(100%, 453px);
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center;
}

.packGraphiqueWeb .packGraphiquePrix {
    position: relative;
    width: 240px;
    height: 90px;
    margin: 0 auto;
}

.packGraphiqueWeb .packGraphiquePrix img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.packGraphiqueWeb .packGraphiquePrix__montant {
    position: absolute !important;
    z-index: 2;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0;
    color: #001F55;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.packGraphiqueWeb .packGraphiquePrix__ht {
    position: absolute !important;
    z-index: 3;
    left: calc(50% + 58px);
    top: 50%;
    transform: translateY(6px);
    margin: 0;
    color: #001F55;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

/* responsive */
@media (max-width: 767px) {
    .packGraphiqueWeb {
        width: calc(100% - 32px);
        max-width: 453px;
        padding: 32px 20px 26px;
    }

    .packGraphiqueWeb .packGraphiquePrix {
        width: 210px;
        height: 79px;
    }

    .packGraphiqueWeb .packGraphiquePrix__ht {
        left: calc(50% + 50px);
        font-size: 8px;
        transform: translateY(5px);
    }
}

@media (max-width: 480px) {
    .packGraphiqueWeb .packGraphiquePrix {
        width: 190px;
        height: 71px;
    }

    .packGraphiqueWeb .packGraphiquePrix__montant {
        font-size: 30px;
    }

    .packGraphiqueWeb .packGraphiquePrix__ht {
        left: calc(50% + 45px);
        font-size: 7px;
        transform: translateY(4px);
    }
}

.commentMarche__intro_web {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 70px;
    width: 410px;
    min-height: 175px;
    padding: 36px 38px 32px;
    border-radius: 30px;
    background-color: #86A9F7;
    color: #001F55;
}

.commentMarche__intro_web::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: 0;
    width: 45px;
    height: 45px;
    background-color: #86A9F7;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

@media (max-width: 1200px) {

    .commentMarche__timeline-web {
        top: 230px;
        bottom: 105px;
    }
}


@media (max-width: 950px) {

    .commentMarche__timeline-web {
        top: 200px;
        bottom: 90px;
    }
}

@media (max-width: 767px) {
    .commentMarche__timeline-web {
        top: 205px;
        bottom: 55px;
        left: 27px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .commentMarche__timeline-web {
        left: 22px;
        top: 195px;
    }
}


@media (min-width: 768px) and (max-width: 960px) {

    .commentMarche__timeline-web {
        top: 205px;
        bottom: 45px;
        left: 26px;
        transform: none;
    }
}




/*@todo comment ça marche*/




.commentMarche_web {
    position: relative;
    padding: 70px 0 100px;
    background-color: #ffffff;
    color: #001F55;
}

.commentMarche_web * {
    box-sizing: border-box;
}

/* CONTAINER */

.commentMarche__container_web {
    position: relative;
    width: min(1180px, calc(100% - 120px));
    min-height: 1690px;
    margin: 0 auto;
}

/* LIGNE CENTRALE */

.commentMarche__timeline_web {
    position: absolute;
    z-index: 1;
    top: 345px;
    bottom: 214px;
    left: 50%;
    width: 2px;
    background-color: #86A9F7;
    transform: translateX(-50%);
}

/* INTRO */

.commentMarche__intro_web {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 70px;
    width: 410px;
    min-height: 175px;
    padding: 36px 38px 32px;
    border-radius: 30px;
    background-color: #86A9F7;
    color: #001F55;
}

.commentMarche__intro_web::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: 0;
    width: 45px;
    height: 45px;
    background-color: #86A9F7;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.commentMarche__introLabel_web {
    margin: 0 0 14px;
    color: #001F55;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.commentMarche__introTitle_web {
    margin: 0;
    color: #001F55;
    font-size: 43px;
    font-weight: 400;
    line-height: 1.05;
}

.commentMarche__introHighlight_web {
    position: relative;
    display: inline-block;
    font-weight: 700;
    z-index: 1;
}

.commentMarche__introHighlight_web::after {
    content: "";
    position: absolute;
    left: 0;
    right: -4px;
    bottom: 3px;
    height: 9px;
    background-color: #ffffff;
    border-radius: 999px;
    z-index: -1;
}

/* CHIFFRES */

.commentMarche__number_web {
    position: absolute;
    z-index: 4;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    transform: translateX(-50%);
}

.commentMarche__number_web img {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.commentMarche__number--1_web {
    top: 330px;
}

.commentMarche__number--2_web {
    top: 585px;
}

.commentMarche__number--3_web {
    top: 870px;
}

.commentMarche__number--4_web {
    top: 1150px;
}

.commentMarche__number--5_web {
    top: 1435px;
}

/* BLOCS ÉTAPES */

.commentMarche__step_web {
    position: absolute;
    z-index: 3;
    width: 100%;
    max-width: 520px;
}

.commentMarche__step--left_web {
    left: 0;
}

.commentMarche__step--right_web {
    right: 0;
}

.commentMarche__step--1_web {
    top: 105px;
}

.commentMarche__step--2_web {
    top: 360px;
}

.commentMarche__step--3_web {
    top: 640px;
}

.commentMarche__step--4_web {
    top: 920px;
}

.commentMarche__step--5_web {
    top: 1210px;
}

/* IMAGES */

.commentMarche__image_web {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.commentMarche__image_web img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* TEXTES */

.commentMarche__text_web {
    color: #001F55;
}

.commentMarche__title_web {
    margin: 0 0 15px;
    color: #001F55;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
}

.commentMarche__paragraph_web {
    margin: 0;
    color: #001F55;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.42;
}

/* ÉCRANS MOYENS */

@media (max-width: 1200px) {
    .commentMarche_web {
        padding: 60px 0 90px;
    }

    .commentMarche__container_web {
        width: min(980px, calc(100% - 70px));
        min-height: 1510px;
    }

    .commentMarche__intro_web {
        left: 0;
        width: 340px;
        min-height: 155px;
        padding: 30px 32px 28px;
    }

    .commentMarche__introLabel_web {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .commentMarche__introTitle_web {
        font-size: 34px;
    }

    .commentMarche__introHighlight_web::after {
        height: 7px;
        bottom: 2px;
    }

    .commentMarche__step_web {
        max-width: 430px;
    }

    .commentMarche__step--1_web {
        top: 90px;
    }

    .commentMarche__step--2_web {
        top: 330px;
    }

    .commentMarche__step--3_web {
        top: 580px;
    }

    .commentMarche__step--4_web {
        top: 830px;
    }

    .commentMarche__step--5_web {
        top: 1090px;
    }

    .commentMarche__timeline_web {
        top: 310px;
        bottom: 174px;
    }

    .commentMarche__number--1_web {
        top: 295px;
    }

    .commentMarche__number--2_web {
        top: 535px;
    }

    .commentMarche__number--3_web {
        top: 785px;
    }

    .commentMarche__number--4_web {
        top: 1035px;
    }

    .commentMarche__number--5_web {
        top: 1295px;
    }

    .commentMarche__title_web {
        font-size: 25px;
    }

    .commentMarche__paragraph_web {
        font-size: 15px;
        line-height: 1.38;
    }
}

/* TABLETTE */

@media (max-width: 960px) {
    .commentMarche_web {
        padding: 55px 0 75px;
        overflow: hidden;
    }

    .commentMarche__container_web {
        width: min(100% - 50px, 720px);
        min-height: auto;
        margin: 0 auto;
        padding-left: 76px;
    }

    .commentMarche__timeline_web {
        top: 205px;
        bottom: 100px;
        left: 26px;
        transform: none;
    }

    .commentMarche__intro_web,
    .commentMarche__step_web {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: none;
    }

    .commentMarche__intro_web {
        margin: 0 0 58px;
        padding: 28px 30px 26px;
        border-radius: 26px;
    }

    .commentMarche__intro_web::after {
        right: -14px;
        width: 38px;
        height: 38px;
    }

    .commentMarche__introLabel_web {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .commentMarche__introTitle_web {
        font-size: 34px;
    }

    .commentMarche__step_web {
        margin: 0 0 68px;
    }

    .commentMarche__step_web:last-of-type {
        margin-bottom: 0;
    }

    .commentMarche__image_web {
        width: 100%;
        max-width: 520px;
        margin: 0 0 20px;
    }

    .commentMarche__number_web {
        display: none;
    }

    .commentMarche__step_web::before {
        position: absolute;
        z-index: 5;
        top: 6px;
        left: -76px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 52px;
        height: 52px;
        border: 2px solid #86A9F7;
        border-radius: 50%;
        background-color: #ffffff;
        color: #001F55;
        font-size: 22px;
        font-weight: 900;
        line-height: 1;
    }

    .commentMarche__step--1_web::before {
        content: "1";
    }

    .commentMarche__step--2_web::before {
        content: "2";
    }

    .commentMarche__step--3_web::before {
        content: "3";
    }

    .commentMarche__step--4_web::before {
        content: "4";
    }

    .commentMarche__step--5_web::before {
        content: "5";
    }

    .commentMarche__title_web {
        font-size: 28px;
    }

    .commentMarche__paragraph_web {
        font-size: 16px;
        line-height: 1.38;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .commentMarche_web {
        padding: 50px 0 65px;
    }

    .commentMarche__container_web {
        width: min(100% - 30px, 520px);
        padding-left: 64px;
    }

    .commentMarche__timeline_web {
        top: 205px;
        bottom: 8px;
        left: 24px;
    }

    .commentMarche__intro_web {
        margin-bottom: 48px;
        padding: 28px 26px 26px;
        border-radius: 24px;
    }

    .commentMarche__introLabel_web {
        font-size: 12px;
    }

    .commentMarche__introTitle_web {
        font-size: 29px;
    }

    .commentMarche__step_web {
        margin-bottom: 56px;
    }

    .commentMarche__step_web::before {
        left: -64px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .commentMarche__image_web {
        margin-bottom: 16px;
    }

    .commentMarche__title_web {
        font-size: 23px;
        line-height: 1.18;
    }

    .commentMarche__paragraph_web {
        font-size: 14px;
        line-height: 1.42;
    }
}

/* PETIT MOBILE */

@media (max-width: 480px) {
    .commentMarche__container_web {
        width: calc(100% - 24px);
        padding-left: 56px;
    }

    .commentMarche__text_web::before {
        position: absolute;
        z-index: 5;

        top: -4px;
        left: -66px;

        display: flex;
        justify-content: center;
        align-items: center;

        width: 52px;
        height: 52px;

        border: 2px solid #86A9F7;
        border-radius: 50%;
        background-color: #ffffff;

        color: #001F55;
        font-size: 22px;
        font-weight: 900;
        line-height: 1;
    }

    .commentMarche__timeline_web {
        left: 21px;
        top: 195px;
        bottom: 20px;
    }

    .commentMarche__intro_web {
        margin-bottom: 42px;
        padding: 24px 22px;
        border-radius: 22px;
    }

    .commentMarche__introLabel_web {
        font-size: 11px;
    }

    .commentMarche__introTitle_web {
        font-size: 26px;
    }

    .commentMarche__step_web {
        margin-bottom: 52px;
    }

    .commentMarche__step_web::before {
        left: -56px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .commentMarche__title_web {
        font-size: 21px;
    }

    .commentMarche__paragraph_web {
        font-size: 13px;
    }
}
@media (max-width: 767px) {
    .confierVotreImage::after {
        content: none;
        display: none;
    }
}

@media (max-width: 960px) {

    .commentMarche__number_web {
        display: none !important;
    }

    .commentMarche__step_web::before {
        content: none !important;
        display: none !important;
    }

    .commentMarche__text_web {
        position: relative;
    }

    .commentMarche__text_web::before {
        position: absolute;
        z-index: 5;

        top: -4px;
        left: -66px;

        display: flex;
        justify-content: center;
        align-items: center;

        width: 52px;
        height: 52px;

        border: 2px solid #86A9F7;
        border-radius: 50%;
        background-color: #ffffff;

        color: #001F55;
        font-size: 22px;
        font-weight: 900;
        line-height: 1;
    }

    .commentMarche__step--1_web .commentMarche__text_web::before {
        content: "1";
    }

    .commentMarche__step--2_web .commentMarche__text_web::before {
        content: "2";
    }

    .commentMarche__step--3_web .commentMarche__text_web::before {
        content: "3";
    }

    .commentMarche__step--4_web .commentMarche__text_web::before {
        content: "4";
    }

    .commentMarche__step--5_web .commentMarche__text_web::before {
        content: "5";
    }
}


@media (min-width: 1199px) and (max-width: 1400px) {
    .confierVotreImage::after {
        content: none;
        display: none;
    }
}


.confierVotreImage {
    position: relative;
    display: inline-block;

    color: #002b66;
    font-weight: 700;
    line-height: 1;

    z-index: 0;
    isolation: isolate;
}

.confierVotreImage::after {
    content: "";
    position: absolute;

    left: -3px;
    right: -5px;
    bottom: 5px;

    height: 12px;

    background: #48e6a0;
    border-radius: 999px;

    z-index: -1;

    transform: scaleX(0);
    transform-origin: left center;

    animation: confierVotreImage-animation 0.7s ease-out forwards;
}

@keyframes confierVotreImage-animation {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}



.panier-feedback {
    display: none;
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    color: #062a63;
    text-align: center;
}
.panier-feedback.is-visible {
    display: block;
}

.panier-feedback.is-success {
    background: rgba(110, 248, 172, 0.22);
    border: 2px solid #6EF8AC;
}

.panier-feedback.is-error {
    background: rgba(255, 80, 80, 0.12);
    border: 2px solid #ff6b6b;
}




@media (max-width: 960px) {

    .commentMarche--reseauxSociaux .commentMarche__number {
        display: none !important;
    }

    .commentMarche--reseauxSociaux .commentMarche__step::before {
        content: none !important;
        display: none !important;
    }

    .commentMarche--reseauxSociaux .commentMarche__text {
        position: relative;
    }

    .commentMarche--reseauxSociaux .commentMarche__text::before {
        position: absolute;
        z-index: 5;

        top: -4px;
        left: -66px;

        display: flex;
        justify-content: center;
        align-items: center;

        width: 52px;
        height: 52px;

        border: 2px solid #FEEA02;
        border-radius: 50%;
        background-color: #ffffff;

        color: #001F55;
        font-size: 22px;
        font-weight: 900;
        line-height: 1;
    }

    .commentMarche--reseauxSociaux .commentMarche__step--1 .commentMarche__text::before {
        content: "1";
    }

    .commentMarche--reseauxSociaux .commentMarche__step--2 .commentMarche__text::before {
        content: "2";
    }

    .commentMarche--reseauxSociaux .commentMarche__step--3 .commentMarche__text::before {
        content: "3";
    }

    .commentMarche--reseauxSociaux .commentMarche__step--4 .commentMarche__text::before {
        content: "4";
    }
}


.objectifCard:active {
    transform: translateY(2px);
    box-shadow: 3px 4px 0 rgba(134, 168, 255, 0.95);
}


/* ==========================================================================
   HOVER CARTES OBJECTIF
   ========================================================================== */

.objectif__cards a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Animation commune aux 3 cartes */
.objectif__cards a .objectifCard {
    cursor: pointer;
    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            border-color 0.2s ease;
}

/* Hover carte verte */
.objectif__cards a:hover .objectifCard--graphique,
.objectif__cards a:focus-visible .objectifCard--graphique {
    transform: translateY(-2px);
    border-color: #4ee79a;
    box-shadow: 12px 12px 0 #6EF8AC, 0 32px 48px rgba(8, 40, 92, 0.14);
}

/* Hover carte bleue */
.objectif__cards a:hover .objectifCard--web,
.objectif__cards a:focus-visible .objectifCard--web {
    transform: translateY(-2px);
    border-color: #6f95f5;
    box-shadow: 12px 12px 0 #83A9FF, 0 32px 48px rgba(8, 40, 92, 0.14);
}

/* Hover carte jaune */
.objectif__cards a:hover .objectifCard--reseaux,
.objectif__cards a:focus-visible .objectifCard--reseaux {
    transform: translateY(-2px);
    border-color: #e8c900;
    box-shadow: 12px 12px 0 #FFD900, 0 32px 48px rgba(8, 40, 92, 0.14);
}

/* Effet clic */
.objectif__cards a:active .objectifCard--graphique {
    transform: translateY(2px);
    box-shadow: 6px 6px 0 #6EF8AC, 0 18px 28px rgba(8, 40, 92, 0.10);
}

.objectif__cards a:active .objectifCard--web {
    transform: translateY(2px);
    box-shadow: 6px 6px 0 #83A9FF, 0 18px 28px rgba(8, 40, 92, 0.10);
}

.objectif__cards a:active .objectifCard--reseaux {
    transform: translateY(2px);
    box-shadow: 6px 6px 0 #FFD900, 0 18px 28px rgba(8, 40, 92, 0.10);
}