.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;
}

.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{
    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;
}

.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);
    }
}

.creneau {
    margin-top: 10rem;
    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: 15rem;
    pointer-events: none;
}
@media (min-width: 1200px) and (max-width: 1400px) {
    .creneau__fleche {
        width: 8rem;
    }
}
@media (max-width: 1199.98px) {
    .creneau__fleche {
        display: none;
    }
}

.backgroundClients {
    background-image: url('../image/images/accueil/webp/background-client.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.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;
}

.exemples{
    margin-top:10rem;
}

.trait {
    width: 118px;
    height: 9px;

    margin: 18px auto 0;

    background: #6EF8AC;
    border-radius: 100px;
}

.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;
}



.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;
    }
}