.bandeau-ordonnance {
    margin: 35px 0 45px;
    padding: 42px 38px 36px;
    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(23, 142, 115, 0.08),
            rgba(98, 190, 175, 0.04)
        );

    border: 1px solid rgba(23, 142, 115, 0.10);

    box-shadow:
        0 12px 35px rgba(15, 47, 51, 0.08);
}


/* INTRO */

.bandeau-ordonnance-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 38px;
}

.bandeau-ordonnance-kicker {
    display: inline-block;
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #178e73;
}

.bandeau-ordonnance-intro h2 {
    margin: 0 0 12px;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;

    color: #0f2f33;
}

.bandeau-ordonnance-intro p {
    margin: 0;

    font-size: 16px;
    line-height: 1.6;

    color: #5d6b6c;
}


/* ÉTAPES */

.bandeau-ordonnance-etapes {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.bandeau-ordonnance-etape {
    position: relative;
    flex: 1;
    max-width: 220px;

    text-align: center;
}

.bandeau-ordonnance-icon {
    width: 76px;
    height: 76px;

    margin: 0 auto 18px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #178e73,
        #62beaf
    );

    box-shadow:
        0 10px 24px rgba(23, 142, 115, 0.20);
}

.bandeau-ordonnance-icon i {
    font-size: 28px;
    color: #ffffff;
}

.bandeau-ordonnance-numero {
    position: absolute;

    top: 51px;
    left: calc(50% + 18px);

    width: 24px;
    height: 24px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #178e73;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 4px 10px rgba(15, 47, 51, 0.12);
}

.bandeau-ordonnance-etape h3 {
    margin: 0 0 8px;

    font-size: 17px;
    font-weight: 700;

    color: #0f2f33;
}

.bandeau-ordonnance-etape p {
    margin: 0;

    font-size: 14px;
    line-height: 1.55;

    color: #667577;
}


/* FLÈCHES */

.bandeau-ordonnance-separateur {
    padding-top: 28px;

    color: rgba(23, 142, 115, 0.35);

    font-size: 18px;
}


/* BOUTON */

.bandeau-ordonnance-action {
    margin-top: 34px;
    text-align: center;
}

.bandeau-ordonnance-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 24px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #159a83,
        #62beaf
    );

    box-shadow:
        0 10px 25px rgba(21, 154, 131, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.bandeau-ordonnance-action a:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 32px rgba(21, 154, 131, 0.28);
}


/* TABLETTE */

@media (max-width: 900px) {

    .bandeau-ordonnance-etapes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .bandeau-ordonnance-etape {
        max-width: none;
    }

    .bandeau-ordonnance-separateur {
        display: none;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .bandeau-ordonnance {
        padding: 32px 20px 28px;
        border-radius: 18px;
    }

    .bandeau-ordonnance-intro {
        margin-bottom: 30px;
    }

    .bandeau-ordonnance-intro h2 {
        font-size: 24px;
    }

    .bandeau-ordonnance-intro p {
        font-size: 15px;
    }

    .bandeau-ordonnance-etapes {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bandeau-ordonnance-etape {
        max-width: 300px;
        margin: 0 auto;
    }

}

#pourquoi-ordonnance {
    scroll-margin-top: 130px;
}