/* =========================================================
   ACCUEIL — EXPERTISE COMPTABLE
========================================================= */

.azed-home-expertise {
    --azed-home-blue: #1d2d7d;
    --azed-home-blue-dark: #142260;
    --azed-home-green: #82b817;
    --azed-home-green-dark: #66950d;
    --azed-home-title: #18214d;
    --azed-home-text: #62697a;
    --azed-home-border: #e6e9f1;
    --azed-home-light: #f6f8fc;
    --azed-home-white: #ffffff;

    position: relative;
    overflow: hidden;
    padding: 95px 6%;
    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(29, 45, 125, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 92%,
            rgba(130, 184, 23, 0.08),
            transparent 27%
        ),
        var(--azed-home-white);

    font-family: "Montserrat", sans-serif;
}

.azed-home-expertise::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -130px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(29, 45, 125, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.azed-home-expertise__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* =========================================================
   EN-TÊTE
========================================================= */

.azed-home-expertise__header {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 48px;
}

.azed-home-expertise__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--azed-home-green-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-home-expertise__badge i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border-radius: 9px;
    background: rgba(130, 184, 23, 0.12);
    color: var(--azed-home-green);
    font-size: 13px;
}

.azed-home-expertise__heading h2 {
    margin: 0;
    color: var(--azed-home-title);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(37px, 4vw, 54px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.azed-home-expertise__heading h2 span {
    display: block;
    color: var(--azed-home-blue);
}

.azed-home-expertise__intro {
    padding-bottom: 5px;
}

.azed-home-expertise__intro p {
    margin: 0 0 22px;
    color: var(--azed-home-text);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.azed-home-expertise__all-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--azed-home-blue);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.azed-home-expertise__all-link i {
    font-size: 11px;
}

.azed-home-expertise__all-link:hover {
    gap: 15px;
    color: var(--azed-home-green-dark);
}

/* =========================================================
   GRILLE
========================================================= */

.azed-home-expertise__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 19px;
}

/* =========================================================
   CARTE CLIQUABLE
========================================================= */

.azed-home-service-card {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 35px;
    align-items: center;
    gap: 18px;
    min-width: 0;
    min-height: 168px;
    padding: 24px 22px;
    overflow: hidden;
    border: 1px solid var(--azed-home-border);
    border-radius: 18px;
    background: var(--azed-home-white);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(23, 32, 75, 0.06);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.azed-home-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(
        90deg,
        var(--azed-home-blue),
        var(--azed-home-green)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.azed-home-service-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -80px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: rgba(29, 45, 125, 0.035);
    transition:
        transform 0.4s ease,
        background 0.4s ease;
    pointer-events: none;
}

.azed-home-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(29, 45, 125, 0.2);
    background: #ffffff;
    color: inherit;
    box-shadow: 0 22px 48px rgba(23, 32, 75, 0.13);
}

.azed-home-service-card:hover::before {
    transform: scaleX(1);
}

.azed-home-service-card:hover::after {
    transform: scale(1.2);
    background: rgba(130, 184, 23, 0.07);
}

/* Icône */

.azed-home-service-card__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(29, 45, 125, 0.1);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(29, 45, 125, 0.1),
            rgba(29, 45, 125, 0.035)
        );
    color: var(--azed-home-blue);
    font-size: 21px;
    box-shadow: 0 9px 22px rgba(29, 45, 125, 0.08);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.azed-home-service-card:hover .azed-home-service-card__icon {
    transform: translateY(-3px) rotate(-3deg);
    background: var(--azed-home-blue);
    color: var(--azed-home-white);
}

/* Contenu */

.azed-home-service-card__content {
    position: relative;
    z-index: 2;
    display: block;
    min-width: 0;
}

.azed-home-service-card__content strong {
    display: block;
    margin-bottom: 9px;
    color: var(--azed-home-title);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.azed-home-service-card__content small {
    display: block;
    color: var(--azed-home-text);
    font-family: "Montserrat", sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.65;
}

/* Flèche */

.azed-home-service-card__arrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(29, 45, 125, 0.12);
    border-radius: 50%;
    background: var(--azed-home-light);
    color: var(--azed-home-blue);
    font-size: 10px;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.azed-home-service-card:hover .azed-home-service-card__arrow {
    transform: translateX(4px);
    border-color: var(--azed-home-green);
    background: var(--azed-home-green);
    color: var(--azed-home-white);
}

/* =========================================================
   ANIMATION D’APPARITION
========================================================= */

.azed-home-reveal {
    opacity: 1;
    transform: none;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1050px) {

    .azed-home-expertise {
        padding: 85px 5%;
    }

    .azed-home-expertise__header {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .azed-home-expertise__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .azed-home-expertise {
        padding: 70px 20px;
    }

    .azed-home-expertise__header {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        margin-bottom: 34px;
    }

    .azed-home-expertise__heading h2 {
        font-size: clamp(31px, 10vw, 40px);
    }

    .azed-home-expertise__intro p {
        margin-bottom: 17px;
        font-size: 13.5px;
    }

    .azed-home-expertise__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
    }

    .azed-home-service-card {
        grid-template-columns: 51px minmax(0, 1fr) 31px;
        gap: 14px;
        min-height: 0;
        padding: 21px 18px;
        border-radius: 15px;
    }

    .azed-home-service-card::before {
        left: 18px;
        right: 18px;
    }

    .azed-home-service-card__icon {
        width: 51px;
        height: 51px;
        border-radius: 14px;
        font-size: 18px;
    }

    .azed-home-service-card__content strong {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .azed-home-service-card__content small {
        font-size: 11.5px;
        line-height: 1.55;
    }

    .azed-home-service-card__arrow {
        width: 31px;
        height: 31px;
        font-size: 9px;
    }

    .azed-home-service-card:hover {
        transform: translateY(-4px);
    }
}

/* =========================================================
   TRÈS PETITS MOBILES
========================================================= */

@media (max-width: 390px) {

    .azed-home-expertise {
        padding-right: 15px;
        padding-left: 15px;
    }

    .azed-home-service-card {
        grid-template-columns: 47px minmax(0, 1fr);
    }

    .azed-home-service-card__icon {
        width: 47px;
        height: 47px;
    }

    .azed-home-service-card__arrow {
        display: none;
    }
}

/* =========================================================
   RÉDUCTION DES ANIMATIONS
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .azed-home-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .azed-home-service-card,
    .azed-home-service-card::before,
    .azed-home-service-card::after,
    .azed-home-service-card__icon,
    .azed-home-service-card__arrow,
    .azed-home-expertise__all-link {
        transition: none;
    }
}


/* =========================================================
   ACCUEIL — CONSEIL, AUDIT & RSE
========================================================= */

.azed-home-advisory {
    --azed-advisory-bg: #111827;
    --azed-advisory-bg-light: #172033;
    --azed-advisory-card: rgba(255, 255, 255, 0.055);
    --azed-advisory-card-hover: rgba(255, 255, 255, 0.085);
    --azed-advisory-white: #ffffff;
    --azed-advisory-title: #f8fafc;
    --azed-advisory-text: #aeb7c8;
    --azed-advisory-muted: #8d98ac;
    --azed-advisory-blue: #5672db;
    --azed-advisory-green: #99c62b;
    --azed-advisory-green-light: #b7df50;
    --azed-advisory-border: rgba(255, 255, 255, 0.095);

    position: relative;
    overflow: hidden;
    padding: 105px 6%;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(86, 114, 219, 0.17),
            transparent 31%
        ),
        radial-gradient(
            circle at 91% 88%,
            rgba(153, 198, 43, 0.11),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #101624 0%,
            #141c2c 48%,
            #101724 100%
        );
    font-family: "Montserrat", sans-serif;
}

/* Décorations de fond */

.azed-home-advisory::before {
    content: "";
    position: absolute;
    top: -185px;
    right: -155px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
    pointer-events: none;
}

.azed-home-advisory::after {
    content: "";
    position: absolute;
    bottom: -135px;
    left: -100px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(153, 198, 43, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.azed-home-advisory__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* =========================================================
   EN-TÊTE
========================================================= */

.azed-home-advisory__header {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 52px;
}

.azed-home-advisory__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--azed-advisory-green-light);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-home-advisory__badge i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border: 1px solid rgba(153, 198, 43, 0.18);
    border-radius: 10px;
    background: rgba(153, 198, 43, 0.1);
    color: var(--azed-advisory-green-light);
    font-size: 13px;
}

.azed-home-advisory__heading h2 {
    margin: 0;
    color: var(--azed-advisory-title);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(37px, 4vw, 54px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.azed-home-advisory__heading h2 span {
    display: block;
    color: var(--azed-advisory-green-light);
}

.azed-home-advisory__intro {
    padding-bottom: 5px;
}

.azed-home-advisory__intro p {
    margin: 0 0 22px;
    color: var(--azed-advisory-text);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

.azed-home-advisory__all-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--azed-advisory-white);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.azed-home-advisory__all-link i {
    color: var(--azed-advisory-green-light);
    font-size: 11px;
}

.azed-home-advisory__all-link:hover {
    gap: 15px;
    color: var(--azed-advisory-green-light);
}

/* =========================================================
   GRILLE
========================================================= */

.azed-home-advisory__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* =========================================================
   CARTE CLIQUABLE
========================================================= */

.azed-home-advisory-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 250px;
    padding: 25px 23px 22px;
    overflow: hidden;
    border: 1px solid var(--azed-advisory-border);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.025)
        );
    color: inherit;
    text-decoration: none;
    box-shadow: 0 17px 38px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

/* Ligne supérieure */

.azed-home-advisory-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 23px;
    right: 23px;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background:
        linear-gradient(
            90deg,
            var(--azed-advisory-blue),
            var(--azed-advisory-green)
        );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

/* Décoration circulaire */

.azed-home-advisory-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -75px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: rgba(86, 114, 219, 0.07);
    pointer-events: none;
    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.azed-home-advisory-card:hover {
    transform: translateY(-8px);
    border-color: rgba(153, 198, 43, 0.34);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.095),
            rgba(255, 255, 255, 0.04)
        );
    color: inherit;
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.27);
}

.azed-home-advisory-card:hover::before {
    transform: scaleX(1);
}

.azed-home-advisory-card:hover::after {
    transform: scale(1.22);
    background: rgba(153, 198, 43, 0.1);
}

/* =========================================================
   ICÔNE
========================================================= */

.azed-home-advisory-card__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    margin-bottom: 23px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(86, 114, 219, 0.22),
            rgba(86, 114, 219, 0.07)
        );
    color: #aebcff;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease;
}

.azed-home-advisory-card:hover
.azed-home-advisory-card__icon {
    transform: translateY(-3px) rotate(-3deg);
    border-color: rgba(153, 198, 43, 0.35);
    background: var(--azed-advisory-green);
    color: var(--azed-advisory-white);
}

/* =========================================================
   CONTENU
========================================================= */

.azed-home-advisory-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.azed-home-advisory-card__content strong {
    display: block;
    margin-bottom: 11px;
    color: var(--azed-advisory-title);
    font-family: "Montserrat", sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.012em;
}

.azed-home-advisory-card__content small {
    display: block;
    color: var(--azed-advisory-text);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.68;
}

/* =========================================================
   FLÈCHE
========================================================= */

.azed-home-advisory-card__arrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-top: 22px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.045);
    color: var(--azed-advisory-green-light);
    font-size: 10px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.azed-home-advisory-card:hover
.azed-home-advisory-card__arrow {
    transform: translateX(4px);
    border-color: var(--azed-advisory-green);
    background: var(--azed-advisory-green);
    color: var(--azed-advisory-white);
}

/* =========================================================
   DÉLAIS D’ANIMATION
========================================================= */

.azed-home-advisory__grid
.azed-home-advisory-card:nth-child(2) {
    transition-delay: 0.05s;
}

.azed-home-advisory__grid
.azed-home-advisory-card:nth-child(3) {
    transition-delay: 0.1s;
}

.azed-home-advisory__grid
.azed-home-advisory-card:nth-child(4) {
    transition-delay: 0.15s;
}

.azed-home-advisory__grid
.azed-home-advisory-card:nth-child(5) {
    transition-delay: 0.05s;
}

.azed-home-advisory__grid
.azed-home-advisory-card:nth-child(6) {
    transition-delay: 0.1s;
}

.azed-home-advisory__grid
.azed-home-advisory-card:nth-child(7) {
    transition-delay: 0.15s;
}

.azed-home-advisory__grid
.azed-home-advisory-card:nth-child(8) {
    transition-delay: 0.2s;
}

/* =========================================================
   ÉCRANS INTERMÉDIAIRES
========================================================= */

@media (max-width: 1150px) {

    .azed-home-advisory__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .azed-home-advisory-card {
        min-height: 210px;
    }
}

/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 900px) {

    .azed-home-advisory {
        padding: 88px 5%;
    }

    .azed-home-advisory__header {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .azed-home-advisory {
        padding: 72px 20px;
    }

    .azed-home-advisory__header {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        margin-bottom: 36px;
    }

    .azed-home-advisory__badge {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .azed-home-advisory__badge i {
        width: 30px;
        height: 30px;
        border-radius: 9px;
        font-size: 12px;
    }

    .azed-home-advisory__heading h2 {
        font-size: clamp(31px, 10vw, 40px);
        line-height: 1.13;
    }

    .azed-home-advisory__heading h2 span {
        display: inline;
    }

    .azed-home-advisory__intro p {
        margin-bottom: 18px;
        font-size: 13.5px;
        line-height: 1.75;
    }

    .azed-home-advisory__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
    }

    .azed-home-advisory-card {
        display: grid;
        grid-template-columns: 51px minmax(0, 1fr) 31px;
        align-items: center;
        gap: 14px;
        min-height: 0;
        padding: 21px 18px;
        border-radius: 15px;
    }

    .azed-home-advisory-card::before {
        left: 18px;
        right: 18px;
    }

    .azed-home-advisory-card__icon {
        width: 51px;
        height: 51px;
        margin: 0;
        border-radius: 14px;
        font-size: 18px;
    }

    .azed-home-advisory-card__content {
        display: block;
    }

    .azed-home-advisory-card__content strong {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .azed-home-advisory-card__content small {
        font-size: 11.5px;
        line-height: 1.57;
    }

    .azed-home-advisory-card__arrow {
        width: 31px;
        height: 31px;
        margin: 0;
        font-size: 9px;
    }

    .azed-home-advisory-card:hover {
        transform: translateY(-4px);
    }
}

/* =========================================================
   TRÈS PETITS MOBILES
========================================================= */

@media (max-width: 390px) {

    .azed-home-advisory {
        padding-right: 15px;
        padding-left: 15px;
    }

    .azed-home-advisory-card {
        grid-template-columns: 47px minmax(0, 1fr);
    }

    .azed-home-advisory-card__icon {
        width: 47px;
        height: 47px;
    }

    .azed-home-advisory-card__arrow {
        display: none;
    }
}

/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .azed-home-advisory-card,
    .azed-home-advisory-card::before,
    .azed-home-advisory-card::after,
    .azed-home-advisory-card__icon,
    .azed-home-advisory-card__arrow,
    .azed-home-advisory__all-link {
        transition: none;
    }
}




/* =========================================================
   ACCUEIL — SOLUTIONS DIGITALES
========================================================= */

.azed-home-digital {
    --azed-digital-bg: #f7f9fc;
    --azed-digital-white: #ffffff;
    --azed-digital-title: #111a33;
    --azed-digital-text: #59637a;
    --azed-digital-blue: #5269c7;
    --azed-digital-blue-dark: #24376f;
    --azed-digital-green: #8ebd19;
    --azed-digital-green-dark: #6f9f0d;
    --azed-digital-border: #e4e8f0;

    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 105px 6%;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(82, 105, 199, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(142, 189, 25, 0.09),
            transparent 28%
        ),
        var(--azed-digital-bg);
    font-family: "Montserrat", sans-serif;
}

/* Décorations */

.azed-home-digital::before {
    content: "";
    position: absolute;
    top: -155px;
    right: -110px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(82, 105, 199, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.azed-home-digital::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -90px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(142, 189, 25, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.azed-home-digital__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* =========================================================
   EN-TÊTE
========================================================= */

.azed-home-digital__header {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 52px;
}

.azed-home-digital__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--azed-digital-green-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-home-digital__badge i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border: 1px solid rgba(142, 189, 25, 0.2);
    border-radius: 10px;
    background: rgba(142, 189, 25, 0.1);
    color: var(--azed-digital-green-dark);
    font-size: 13px;
}

.azed-home-digital__heading h2 {
    margin: 0;
    color: var(--azed-digital-title);
    font-size: clamp(37px, 4vw, 54px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.azed-home-digital__heading h2 span {
    display: block;
    color: var(--azed-digital-green-dark);
}

.azed-home-digital__intro {
    padding-bottom: 5px;
}

.azed-home-digital__intro p {
    margin: 0 0 22px;
    color: var(--azed-digital-text);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

.azed-home-digital__all-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--azed-digital-title);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.azed-home-digital__all-link i {
    color: var(--azed-digital-green-dark);
    font-size: 11px;
}

.azed-home-digital__all-link:hover {
    gap: 15px;
    color: var(--azed-digital-green-dark);
}

/* =========================================================
   GRILLE
========================================================= */

.azed-home-digital__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.azed-home-digital-card {
    grid-column: span 2;
}

.azed-home-digital-card:nth-child(4) {
    grid-column: 1 / span 2;
}

.azed-home-digital-card:nth-child(5) {
    grid-column: 3 / span 2;
}

/* =========================================================
   CARTES
========================================================= */

.azed-home-digital-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 260px;
    padding: 27px 25px 23px;
    overflow: hidden;
    border: 1px solid var(--azed-digital-border);
    border-radius: 20px;
    background: var(--azed-digital-white);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(30, 44, 89, 0.07);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.azed-home-digital-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background:
        linear-gradient(
            90deg,
            var(--azed-digital-blue),
            var(--azed-digital-green)
        );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.azed-home-digital-card::after {
    content: "";
    position: absolute;
    right: -68px;
    bottom: -74px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: rgba(82, 105, 199, 0.055);
    pointer-events: none;
    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.azed-home-digital-card:hover {
    transform: translateY(-8px);
    border-color: rgba(142, 189, 25, 0.4);
    color: inherit;
    box-shadow: 0 25px 52px rgba(30, 44, 89, 0.14);
}

.azed-home-digital-card:hover::before {
    transform: scaleX(1);
}

.azed-home-digital-card:hover::after {
    transform: scale(1.2);
    background: rgba(142, 189, 25, 0.09);
}

/* =========================================================
   ICÔNES
========================================================= */

.azed-home-digital-card__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 23px;
    border: 1px solid rgba(82, 105, 199, 0.13);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(82, 105, 199, 0.12),
            rgba(82, 105, 199, 0.045)
        );
    color: var(--azed-digital-blue);
    font-size: 21px;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease;
}

.azed-home-digital-card:hover
.azed-home-digital-card__icon {
    transform: translateY(-3px) rotate(-3deg);
    border-color: var(--azed-digital-green);
    background: var(--azed-digital-green);
    color: var(--azed-digital-white);
}

/* =========================================================
   CONTENU
========================================================= */

.azed-home-digital-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.azed-home-digital-card__content strong {
    display: block;
    margin-bottom: 11px;
    color: var(--azed-digital-title);
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.012em;
}

.azed-home-digital-card__content small {
    display: block;
    color: var(--azed-digital-text);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.68;
}

/* =========================================================
   FLÈCHE
========================================================= */

.azed-home-digital-card__arrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-top: 22px;
    margin-left: auto;
    border: 1px solid var(--azed-digital-border);
    border-radius: 50%;
    background: #f6f8fc;
    color: var(--azed-digital-green-dark);
    font-size: 10px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.azed-home-digital-card:hover
.azed-home-digital-card__arrow {
    transform: translateX(4px);
    border-color: var(--azed-digital-green);
    background: var(--azed-digital-green);
    color: var(--azed-digital-white);
}

/* =========================================================
   TABLETTE ET ÉCRANS INTERMÉDIAIRES
========================================================= */

@media (max-width: 1100px) {

    .azed-home-digital__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .azed-home-digital-card,
    .azed-home-digital-card:nth-child(4),
    .azed-home-digital-card:nth-child(5) {
        grid-column: auto;
    }

    .azed-home-digital-card:nth-child(5) {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        margin: 0 auto;
    }
}

@media (max-width: 900px) {

    .azed-home-digital {
        padding: 88px 5%;
    }

    .azed-home-digital__header {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .azed-home-digital {
        padding: 72px 20px;
    }

    .azed-home-digital__header {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        margin-bottom: 36px;
    }

    .azed-home-digital__badge {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .azed-home-digital__badge i {
        width: 30px;
        height: 30px;
        border-radius: 9px;
        font-size: 12px;
    }

    .azed-home-digital__heading h2 {
        font-size: clamp(31px, 10vw, 40px);
        line-height: 1.13;
    }

    .azed-home-digital__heading h2 span {
        display: inline;
    }

    .azed-home-digital__intro p {
        margin-bottom: 18px;
        font-size: 13.5px;
        line-height: 1.75;
    }

    .azed-home-digital__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
    }

    .azed-home-digital-card,
    .azed-home-digital-card:nth-child(4),
    .azed-home-digital-card:nth-child(5) {
        display: grid;
        grid-template-columns: 51px minmax(0, 1fr) 31px;
        align-items: center;
        gap: 14px;
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 21px 18px;
        border-radius: 15px;
    }

    .azed-home-digital-card::before {
        left: 18px;
        right: 18px;
    }

    .azed-home-digital-card__icon {
        width: 51px;
        height: 51px;
        margin: 0;
        border-radius: 14px;
        font-size: 18px;
    }

    .azed-home-digital-card__content {
        display: block;
    }

    .azed-home-digital-card__content strong {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .azed-home-digital-card__content small {
        font-size: 11.5px;
        line-height: 1.57;
    }

    .azed-home-digital-card__arrow {
        width: 31px;
        height: 31px;
        margin: 0;
        font-size: 9px;
    }

    .azed-home-digital-card:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 390px) {

    .azed-home-digital {
        padding-right: 15px;
        padding-left: 15px;
    }

    .azed-home-digital-card,
    .azed-home-digital-card:nth-child(4),
    .azed-home-digital-card:nth-child(5) {
        grid-template-columns: 47px minmax(0, 1fr);
    }

    .azed-home-digital-card__icon {
        width: 47px;
        height: 47px;
    }

    .azed-home-digital-card__arrow {
        display: none;
    }
}

/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .azed-home-digital-card,
    .azed-home-digital-card::before,
    .azed-home-digital-card::after,
    .azed-home-digital-card__icon,
    .azed-home-digital-card__arrow,
    .azed-home-digital__all-link {
        transition: none;
    }
}



/* =========================================================
   FAQ — PAGE ACCUEIL
========================================================= */

.azed-home-faq {
    --azed-faq-primary: #163f75;
    --azed-faq-primary-dark: #0d2d57;
    --azed-faq-secondary: #c9a45c;
    --azed-faq-title: #10233f;
    --azed-faq-text: #5f6d7f;
    --azed-faq-white: #ffffff;
    --azed-faq-border: rgba(22, 63, 117, 0.12);

    position: relative;
    width: 100%;
    padding: 110px 5% 115px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(22, 63, 117, 0.08),
            transparent 29%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(201, 164, 92, 0.10),
            transparent 31%
        ),
        linear-gradient(180deg, #f8fafd 0%, #ffffff 100%);
    font-family: "Montserrat", sans-serif;
}

.azed-home-faq,
.azed-home-faq * {
    box-sizing: border-box;
}

/* =========================================================
   DÉCORATIONS
========================================================= */

.azed-home-faq__decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.azed-home-faq__decoration--one {
    top: -160px;
    right: -130px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(22, 63, 117, 0.08);
}

.azed-home-faq__decoration--two {
    bottom: -190px;
    left: -180px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(201, 164, 92, 0.12);
}

/* =========================================================
   CONTENEUR GÉNÉRAL
========================================================= */

.azed-home-faq__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

/* =========================================================
   EN-TÊTE CENTRÉ
========================================================= */

.azed-home-faq__header {
    width: 100%;
    max-width: 860px;
    margin: 0 auto 58px;
    text-align: center;
}

.azed-home-faq__badge {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(22, 63, 117, 0.12);
    border-radius: 999px;
    color: var(--azed-faq-primary);
    background: rgba(22, 63, 117, 0.06);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.azed-home-faq__badge i {
    color: var(--azed-faq-secondary);
    font-size: 13px;
}

.azed-home-faq__title {
    margin: 0;
    color: var(--azed-faq-title);
    font-size: clamp(34px, 3.5vw, 52px);
    font-weight: 750;
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.azed-home-faq__title span {
    display: block;
    color: var(--azed-faq-primary);
}

.azed-home-faq__description {
    max-width: 690px;
    margin: 22px auto 0;
    color: var(--azed-faq-text);
    font-size: 16px;
    font-weight: 450;
    line-height: 1.8;
}

/* =========================================================
   GRILLE IMAGE + FAQ
========================================================= */

.azed-home-faq__main {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(360px, 0.84fr) minmax(520px, 1.16fr);
    align-items: start;
    gap: clamp(48px, 6vw, 88px);
}

.azed-home-faq__content {
    min-width: 0;
}

/* =========================================================
   IMAGE
========================================================= */

.azed-home-faq__visual {
    position: sticky;
    top: 110px;
    min-width: 0;
}

.azed-home-faq__image-wrapper {
    position: relative;
    z-index: 2;
    min-height: 690px;
    overflow: hidden;
    border-radius: 30px;
    background: #e9eef5;
    box-shadow:
        0 35px 85px rgba(16, 35, 63, 0.16),
        0 10px 28px rgba(16, 35, 63, 0.08);
}

.azed-home-faq__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

.azed-home-faq__image-wrapper:hover .azed-home-faq__image {
    transform: scale(1.04);
}

.azed-home-faq__image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(13, 45, 87, 0.02) 25%,
            rgba(13, 45, 87, 0.15) 68%,
            rgba(13, 45, 87, 0.60) 100%
        );
    pointer-events: none;
}

.azed-home-faq__visual-shape {
    position: absolute;
    z-index: 1;
    right: -22px;
    bottom: -22px;
    width: 76%;
    height: 72%;
    border: 1px solid rgba(201, 164, 92, 0.35);
    border-radius: 30px;
    background: rgba(201, 164, 92, 0.08);
}

.azed-home-faq__image-card {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: 24px;
    left: 24px;
    min-height: 88px;
    padding: 17px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(8, 29, 57, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.azed-home-faq__image-card-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--azed-faq-white);
    background:
        linear-gradient(
            135deg,
            var(--azed-faq-primary),
            var(--azed-faq-primary-dark)
        );
    box-shadow: 0 12px 25px rgba(22, 63, 117, 0.24);
}

.azed-home-faq__image-card-icon i {
    font-size: 18px;
}

.azed-home-faq__image-card-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.azed-home-faq__image-card-content strong {
    color: var(--azed-faq-title);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.4;
}

.azed-home-faq__image-card-content span {
    color: var(--azed-faq-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

/* =========================================================
   LISTE FAQ
========================================================= */

.azed-home-faq__list {
    display: grid;
    gap: 14px;
}

.azed-home-faq__item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--azed-faq-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 13px 35px rgba(16, 35, 63, 0.045);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.azed-home-faq__item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background:
        linear-gradient(
            180deg,
            var(--azed-faq-secondary),
            var(--azed-faq-primary)
        );
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.azed-home-faq__item:hover {
    border-color: rgba(22, 63, 117, 0.20);
    box-shadow: 0 18px 45px rgba(16, 35, 63, 0.07);
}

.azed-home-faq__item.is-active {
    border-color: rgba(22, 63, 117, 0.24);
    box-shadow: 0 20px 55px rgba(16, 35, 63, 0.09);
}

.azed-home-faq__item.is-active::before {
    transform: scaleY(1);
}

.azed-home-faq__question-title {
    margin: 0;
    padding: 0;
    font-size: inherit;
}

.azed-home-faq__question {
    position: relative;
    width: 100%;
    min-height: 76px;
    padding: 20px 21px 20px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: center;
    gap: 18px;
    border: 0;
    outline: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.azed-home-faq__question:focus-visible {
    outline: 3px solid rgba(22, 63, 117, 0.20);
    outline-offset: -3px;
    border-radius: 18px;
}

.azed-home-faq__question-text {
    color: var(--azed-faq-title);
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: -0.012em;
    text-transform: none;
}

.azed-home-faq__icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(22, 63, 117, 0.10);
    border-radius: 12px;
    color: var(--azed-faq-primary);
    background: rgba(22, 63, 117, 0.06);
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.azed-home-faq__icon i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.azed-home-faq__item.is-active .azed-home-faq__icon {
    border-color: transparent;
    color: var(--azed-faq-white);
    background:
        linear-gradient(
            135deg,
            var(--azed-faq-primary),
            var(--azed-faq-primary-dark)
        );
    box-shadow: 0 10px 24px rgba(22, 63, 117, 0.22);
}

.azed-home-faq__item.is-active .azed-home-faq__icon i {
    transform: rotate(45deg);
}

/* =========================================================
   RÉPONSES
========================================================= */

.azed-home-faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
        max-height 0.42s cubic-bezier(.25, .8, .25, 1),
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.azed-home-faq__item.is-active .azed-home-faq__answer {
    opacity: 1;
    visibility: visible;
}

.azed-home-faq__answer-inner {
    padding: 0 78px 23px 24px;
    color: var(--azed-faq-text);
    font-size: 14.5px;
    font-weight: 450;
    line-height: 1.8;
}

.azed-home-faq__answer-inner p {
    margin: 0;
}

.azed-home-faq__answer-inner p + p {
    margin-top: 9px;
}

/* =========================================================
   CTA PLEINE LARGEUR
========================================================= */

.azed-home-faq__cta {
    width: 100%;
    margin-top: 58px;
    padding: 25px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(22, 63, 117, 0.12);
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            rgba(22, 63, 117, 0.07),
            rgba(201, 164, 92, 0.09)
        );
    box-shadow: 0 16px 45px rgba(16, 35, 63, 0.05);
}

.azed-home-faq__cta-text {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.azed-home-faq__cta-text strong {
    color: var(--azed-faq-title);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.5;
}

.azed-home-faq__cta-text strong::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 14px;
    border-radius: 50%;
    background: var(--azed-faq-secondary);
    vertical-align: middle;
}

.azed-home-faq__cta-text span {
    color: var(--azed-faq-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.azed-home-faq__cta-button {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 11px;
    color: var(--azed-faq-white);
    background:
        linear-gradient(
            135deg,
            var(--azed-faq-primary),
            var(--azed-faq-primary-dark)
        );
    box-shadow: 0 13px 28px rgba(22, 63, 117, 0.20);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.azed-home-faq__cta-button:hover,
.azed-home-faq__cta-button:focus {
    color: var(--azed-faq-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 17px 34px rgba(22, 63, 117, 0.27);
}

.azed-home-faq__cta-button i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.azed-home-faq__cta-button:hover i {
    transform: translateX(3px);
}

/* =========================================================
   ÉCRANS MOYENS
========================================================= */

@media (max-width: 1100px) {

    .azed-home-faq {
        padding: 90px 4% 100px;
    }

    .azed-home-faq__header {
        margin-bottom: 50px;
    }

    .azed-home-faq__main {
        grid-template-columns: minmax(300px, 0.76fr) minmax(440px, 1.24fr);
        gap: 42px;
    }

    .azed-home-faq__image-wrapper {
        min-height: 610px;
    }

    .azed-home-faq__title {
        font-size: clamp(33px, 4vw, 44px);
    }

}

/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 900px) {

    .azed-home-faq {
        padding: 82px 24px 90px;
    }

    .azed-home-faq__header {
        max-width: 720px;
        margin-bottom: 46px;
    }

    .azed-home-faq__main {
        max-width: 760px;
        margin: 0 auto;
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .azed-home-faq__visual {
        position: relative;
        top: auto;
    }

    .azed-home-faq__image-wrapper {
        min-height: 510px;
    }

    .azed-home-faq__visual-shape {
        right: -14px;
        bottom: -14px;
    }

    .azed-home-faq__cta {
        max-width: 760px;
        margin: 48px auto 0;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .azed-home-faq {
        padding: 72px 16px 78px;
    }

    .azed-home-faq__header {
        margin-bottom: 36px;
        text-align: center;
    }

    .azed-home-faq__badge {
        margin: 0 auto 15px;
        padding: 8px 12px;
        font-size: 10.5px;
    }

    .azed-home-faq__title {
        font-size: 30px;
        line-height: 1.17;
        letter-spacing: -0.035em;
    }

    .azed-home-faq__description {
        margin: 18px auto 0;
        font-size: 14.5px;
        line-height: 1.75;
    }

    .azed-home-faq__main {
        gap: 43px;
    }

    .azed-home-faq__image-wrapper {
        min-height: 390px;
        border-radius: 22px;
    }

    .azed-home-faq__visual-shape {
        right: -8px;
        bottom: -10px;
        border-radius: 22px;
    }

    .azed-home-faq__image-card {
        right: 14px;
        bottom: 14px;
        left: 14px;
        min-height: 74px;
        padding: 13px 14px;
        gap: 12px;
        border-radius: 15px;
    }

    .azed-home-faq__image-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .azed-home-faq__image-card-icon i {
        font-size: 16px;
    }

    .azed-home-faq__image-card-content strong {
        font-size: 13.5px;
    }

    .azed-home-faq__image-card-content span {
        font-size: 12px;
    }

    .azed-home-faq__list {
        gap: 12px;
    }

    .azed-home-faq__item {
        border-radius: 16px;
    }

    .azed-home-faq__question {
        min-height: 70px;
        padding: 17px 15px 17px 17px;
        grid-template-columns: minmax(0, 1fr) 36px;
        gap: 13px;
    }

    .azed-home-faq__question-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .azed-home-faq__icon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .azed-home-faq__icon i {
        font-size: 12px;
    }

    .azed-home-faq__answer-inner {
        padding: 0 17px 19px;
        font-size: 13.5px;
        line-height: 1.75;
    }

    .azed-home-faq__cta {
        margin-top: 38px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 17px;
        border-radius: 16px;
    }

    .azed-home-faq__cta-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .azed-home-faq__cta-text strong {
        font-size: 14px;
    }

    .azed-home-faq__cta-text strong::after {
        display: none;
    }

    .azed-home-faq__cta-text span {
        font-size: 13px;
    }

    .azed-home-faq__cta-button {
        width: fit-content;
        min-height: 44px;
        padding: 0 17px;
    }

}

/* =========================================================
   TRÈS PETIT MOBILE
========================================================= */

@media (max-width: 420px) {

    .azed-home-faq__image-wrapper {
        min-height: 345px;
    }

    .azed-home-faq__title {
        font-size: 27px;
    }

    .azed-home-faq__image-card-content span {
        display: none;
    }

}

/* =========================================================
   ACCESSIBILITÉ — ANIMATIONS RÉDUITES
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .azed-home-faq__image,
    .azed-home-faq__item,
    .azed-home-faq__icon,
    .azed-home-faq__icon i,
    .azed-home-faq__answer,
    .azed-home-faq__cta-button,
    .azed-home-faq__cta-button i {
        transition: none;
    }

}



/* =========================================================
   AVIS GOOGLE — PAGE ACCUEIL
========================================================= */

.azed-google-reviews {
    --azed-reviews-primary: #163f75;
    --azed-reviews-primary-dark: #0d2d57;
    --azed-reviews-gold: #c9a45c;
    --azed-reviews-title: #ffffff;
    --azed-reviews-text: rgba(255, 255, 255, 0.78);
    --azed-reviews-muted: rgba(255, 255, 255, 0.52);
    --azed-reviews-border: rgba(255, 255, 255, 0.12);
    --azed-reviews-card: rgba(255, 255, 255, 0.07);

    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding:
        clamp(82px, 8vw, 120px)
        0
        clamp(55px, 5vw, 75px);
    overflow: hidden;
    color: var(--azed-reviews-title);
    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(201, 164, 92, 0.15),
            transparent 31%
        ),
        radial-gradient(
            circle at 8% 88%,
            rgba(45, 101, 164, 0.18),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #081b34 0%,
            #0d2d57 50%,
            #102f58 100%
        );
    font-family: "Montserrat", sans-serif;
}

.azed-google-reviews,
.azed-google-reviews * {
    box-sizing: border-box;
}

/* =========================================================
   DÉCORATIONS
========================================================= */

.azed-google-reviews__decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.azed-google-reviews__decoration--one {
    top: -190px;
    right: -150px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.azed-google-reviews__decoration--two {
    bottom: -210px;
    left: -170px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(201, 164, 92, 0.13);
}

/* =========================================================
   CONTENEUR
========================================================= */

.azed-google-reviews__container {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, 1360px);
    margin: 0 auto;
}

/* =========================================================
   EN-TÊTE
========================================================= */

.azed-google-reviews__header {
    max-width: 820px;
    margin: 0 auto clamp(46px, 5vw, 68px);
    text-align: center;
}

.azed-google-reviews__badge {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.07);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.azed-google-reviews__badge i {
    color: var(--azed-reviews-gold);
    font-size: 14px;
}

.azed-google-reviews__title {
    margin: 0;
    color: var(--azed-reviews-title);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 750;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.azed-google-reviews__title span {
    color: var(--azed-reviews-gold);
}

.azed-google-reviews__description {
    max-width: 700px;
    margin: 22px auto 0;
    color: var(--azed-reviews-text);
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 400;
    line-height: 1.75;
}

/* =========================================================
   CARROUSEL
========================================================= */

.azed-google-reviews__slider-wrapper {
    position: relative;
}

.azed-google-reviews__slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
    padding: 12px 4px 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    outline: none;
}

.azed-google-reviews__slider::-webkit-scrollbar {
    display: none;
}

.azed-google-reviews__slider:focus-visible {
    border-radius: 25px;
    outline: 2px solid rgba(201, 164, 92, 0.75);
    outline-offset: 5px;
}

/* =========================================================
   CARTE AVIS
========================================================= */

.azed-google-review-card {
    position: relative;
    min-height: 390px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--azed-reviews-border);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.17);
    scroll-snap-align: start;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.azed-google-review-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 130px;
    border-radius: 0 26px 0 100%;
    background:
        radial-gradient(
            circle at top right,
            rgba(201, 164, 92, 0.14),
            transparent 70%
        );
    pointer-events: none;
}

.azed-google-review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 164, 92, 0.46);
    background:
        linear-gradient(
            145deg,
            rgba(201, 164, 92, 0.13),
            rgba(255, 255, 255, 0.04)
        );
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

/* =========================================================
   HAUT DE CARTE
========================================================= */

.azed-google-review-card__top {
    position: relative;
    z-index: 2;
    min-height: 47px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.azed-google-review-card__google {
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.70);
    background: rgba(255, 255, 255, 0.055);
    font-size: 10px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.azed-google-review-card__google i {
    color: var(--azed-reviews-gold);
    font-size: 12px;
}

.azed-google-review-card__quote {
    height: 42px;
    color: var(--azed-reviews-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 0.78;
    opacity: 0.9;
}

/* =========================================================
   CONTENU DE L’AVIS
========================================================= */

.azed-google-review-card__content {
    position: relative;
    z-index: 2;
    flex: 1;
    margin: 23px 0 29px;
}

.azed-google-review-card__content > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.75;
}

.azed-google-review-card__tags {
    margin-top: 19px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.azed-google-review-card__tags span {
    padding: 6px 9px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(201, 164, 92, 0.24);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(201, 164, 92, 0.09);
    font-size: 9.5px;
    font-weight: 600;
    line-height: 1.2;
}

/* =========================================================
   AUTEUR
========================================================= */

.azed-google-review-card__author {
    position: relative;
    z-index: 2;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.azed-google-review-card__avatar {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 164, 92, 0.42);
    border-radius: 50%;
    color: var(--azed-reviews-title);
    background:
        linear-gradient(
            135deg,
            rgba(201, 164, 92, 0.26),
            rgba(22, 63, 117, 0.42)
        );
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
}

.azed-google-review-card__author-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.azed-google-review-card__author-info strong {
    overflow: hidden;
    color: var(--azed-reviews-title);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.azed-google-review-card__author-info span {
    color: var(--azed-reviews-muted);
    font-size: 11.5px;
    font-weight: 450;
    line-height: 1.4;
}

/* =========================================================
   BOUTONS DE NAVIGATION
========================================================= */

.azed-google-reviews__nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    color: var(--azed-reviews-title);
    background: rgba(8, 27, 52, 0.90);
    font-size: 14px;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

.azed-google-reviews__nav--prev {
    left: -26px;
}

.azed-google-reviews__nav--next {
    right: -26px;
}

.azed-google-reviews__nav:hover,
.azed-google-reviews__nav:focus-visible {
    border-color: var(--azed-reviews-gold);
    color: #0d2d57;
    background: var(--azed-reviews-gold);
    transform: translateY(-50%) scale(1.07);
    outline: none;
}

/* =========================================================
   BAS DE SECTION
========================================================= */

.azed-google-reviews__bottom {
    margin-top: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.azed-google-reviews__bottom-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--azed-reviews-muted);
    font-size: 12.5px;
    font-weight: 450;
    line-height: 1.5;
}

.azed-google-reviews__bottom-icon {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    color: var(--azed-reviews-gold);
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

.azed-google-reviews__progress {
    width: min(250px, 35vw);
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
}

.azed-google-reviews__progress span {
    display: block;
    width: 28%;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            var(--azed-reviews-gold),
            #f0d18d
        );
    transform: translateX(0);
    will-change: transform;
}

/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1100px) {

    .azed-google-reviews__container {
        width: min(100% - 44px, 1050px);
    }

    .azed-google-reviews__slider {
        grid-auto-columns: calc((100% - 22px) / 2);
        gap: 22px;
    }

    .azed-google-review-card {
        min-height: 380px;
    }

    .azed-google-reviews__nav--prev {
        left: -18px;
    }

    .azed-google-reviews__nav--next {
        right: -18px;
    }

}

/* =========================================================
   PETITE TABLETTE
========================================================= */

@media (max-width: 767px) {

    .azed-google-reviews {
        padding: 72px 0 50px;
    }

    .azed-google-reviews__container {
        width: min(100% - 30px, 700px);
    }

    .azed-google-reviews__header {
        margin-bottom: 38px;
    }

    .azed-google-reviews__badge {
        margin-bottom: 15px;
        padding: 8px 12px;
        font-size: 10px;
    }

    .azed-google-reviews__title {
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1.04;
    }

    .azed-google-reviews__description {
        margin-top: 18px;
        font-size: 14.5px;
        line-height: 1.7;
    }

    .azed-google-reviews__slider {
        grid-auto-columns: 88%;
        gap: 16px;
        padding: 8px 0 25px;
        scroll-padding-left: 0;
    }

    .azed-google-review-card {
        min-height: 370px;
        padding: 25px 22px;
        border-radius: 22px;
    }

    .azed-google-review-card::before {
        border-radius: 0 22px 0 100%;
    }

    .azed-google-review-card__content {
        margin: 20px 0 26px;
    }

    .azed-google-review-card__content > p {
        font-size: 14.5px;
        line-height: 1.72;
    }

    .azed-google-reviews__nav {
        display: none;
    }

    .azed-google-reviews__bottom {
        margin-top: 10px;
    }

    .azed-google-reviews__bottom-text {
        display: none;
    }

    .azed-google-reviews__progress {
        width: 100%;
    }

}

/* =========================================================
   TRÈS PETIT MOBILE
========================================================= */

@media (max-width: 420px) {

    .azed-google-reviews__container {
        width: min(100% - 24px, 700px);
    }

    .azed-google-reviews__title {
        font-size: 34px;
    }

    .azed-google-reviews__slider {
        grid-auto-columns: 91%;
        gap: 14px;
    }

    .azed-google-review-card {
        min-height: 360px;
        padding: 23px 20px;
    }

    .azed-google-review-card__google {
        font-size: 9px;
    }

    .azed-google-review-card__author-info strong {
        font-size: 13.5px;
    }

}

/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .azed-google-reviews__slider {
        scroll-behavior: auto;
    }

    .azed-google-review-card,
    .azed-google-reviews__nav {
        transition: none;
    }

}





/* =========================================================
   PAGE SERVICES — ADAPTATION DES SECTIONS DE L’ACCUEIL
========================================================= */

/*
 * Le conteneur général ne doit pas limiter
 * la largeur des trois sections.
 */
.azed-services-page {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: visible;
}

/*
 * Les trois fonds occupent toute la largeur
 * de la fenêtre, même si Elementor utilise
 * un conteneur central limité.
 */
.azed-services-page .azed-home-expertise,
.azed-services-page .azed-home-advisory,
.azed-services-page .azed-home-digital {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

/*
 * Suppression des éventuels espaces ajoutés
 * entre les widgets et les sections.
 */
.azed-services-page__section {
    margin-top: 0;
    margin-bottom: 0;
}

/*
 * Sur la page Services, les introductions
 * ne contiennent plus le lien "Découvrir le pôle".
 */
.azed-services-page .azed-home-expertise__intro p,
.azed-services-page .azed-home-advisory__intro p,
.azed-services-page .azed-home-digital__intro p {
    margin-bottom: 0;
}

/*
 * Alignement vertical du texte d’introduction.
 */
.azed-services-page .azed-home-expertise__intro,
.azed-services-page .azed-home-advisory__intro,
.azed-services-page .azed-home-digital__intro {
    display: flex;
    align-items: flex-end;
}

/* =========================================================
   SECTION SOLUTIONS DIGITALES — DEUX DERNIÈRES CARTES
   ALIGNÉES À GAUCHE
========================================================= */

@media (min-width: 1101px) {

    .azed-services-page
    .azed-home-digital-card:nth-child(4) {
        grid-column: 1 / span 2;
    }

    .azed-services-page
    .azed-home-digital-card:nth-child(5) {
        grid-column: 3 / span 2;
    }
}

/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 900px) {

    .azed-services-page .azed-home-expertise__intro,
    .azed-services-page .azed-home-advisory__intro,
    .azed-services-page .azed-home-digital__intro {
        align-items: flex-start;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .azed-services-page .azed-home-expertise,
    .azed-services-page .azed-home-advisory,
    .azed-services-page .azed-home-digital {
        width: 100vw;
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
    }

    .azed-services-page .azed-home-expertise__intro,
    .azed-services-page .azed-home-advisory__intro,
    .azed-services-page .azed-home-digital__intro {
        display: block;
    }
}




/* =========================================================
   PAGE EXPERTISE COMPTABLE
========================================================= */

.azed-expertise-page {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    font-family: "Montserrat", sans-serif;
}

/* =========================================================
   SECTION SERVICES
========================================================= */

.azed-expertise-page__services {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.azed-expertise-page__services
.azed-home-expertise__intro p {
    margin-bottom: 0;
}

/* =========================================================
   BLOC INTRODUCTIF
========================================================= */

.azed-expertise-page__introduction {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 25px;
    margin-bottom: 42px;
    padding: 28px 30px;
    border: 1px solid rgba(33, 52, 125, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(33, 52, 125, 0.045),
            rgba(139, 190, 20, 0.055)
        ),
        #ffffff;
    box-shadow: 0 16px 38px rgba(20, 37, 86, 0.055);
}

.azed-expertise-page__introduction-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            #263e98,
            #1d2e75
        );
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 12px 28px rgba(30, 49, 123, 0.2);
}

.azed-expertise-page__introduction-content h3 {
    margin: 0 0 12px;
    color: #14204a;
    font-size: 21px;
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.azed-expertise-page__introduction-content p {
    margin: 0 0 10px;
    color: #5d6679;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.75;
}

.azed-expertise-page__introduction-content p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   POURQUOI AZED
========================================================= */

.azed-expertise-benefits {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 95px 6%;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(81, 104, 199, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(147, 196, 26, 0.1),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #111827,
            #162137
        );
}

.azed-expertise-benefits__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.azed-expertise-benefits__header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.azed-expertise-benefits__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #b5df4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-expertise-benefits__header h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.azed-expertise-benefits__header h2 span {
    display: block;
    color: #a8d532;
}

.azed-expertise-benefits__header p {
    margin: 0;
    color: #aeb7c8;
    font-size: 14px;
    line-height: 1.75;
}

.azed-expertise-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.azed-expertise-benefit {
    position: relative;
    min-width: 0;
    min-height: 245px;
    padding: 28px 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.azed-expertise-benefit:hover {
    transform: translateY(-7px);
    border-color: rgba(168, 213, 50, 0.38);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.095),
            rgba(255, 255, 255, 0.035)
        );
}

.azed-expertise-benefit__number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(255, 255, 255, 0.1);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.azed-expertise-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border: 1px solid rgba(168, 213, 50, 0.22);
    border-radius: 15px;
    background: rgba(168, 213, 50, 0.11);
    color: #b5df4b;
    font-size: 19px;
}

.azed-expertise-benefit h3 {
    margin: 0 0 11px;
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.4;
}

.azed-expertise-benefit p {
    margin: 0;
    color: #aeb7c8;
    font-size: 12px;
    line-height: 1.7;
}

/* =========================================================
   CTA FINAL
========================================================= */

.azed-expertise-cta {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 80px 6%;
    overflow: hidden;
    background: #f6f8fc;
}

.azed-expertise-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 52px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(168, 213, 50, 0.2),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #203888,
            #152761
        );
    box-shadow: 0 25px 60px rgba(23, 42, 105, 0.2);
}

.azed-expertise-cta__badge {
    display: inline-block;
    margin-bottom: 14px;
    color: #b5df4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-expertise-cta__content h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(29px, 3.5vw, 43px);
    font-weight: 750;
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.azed-expertise-cta__content h2 span {
    display: block;
    color: #b5df4b;
}

.azed-expertise-cta__content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13.5px;
    line-height: 1.75;
}

.azed-expertise-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 245px;
}

.azed-expertise-cta__primary,
.azed-expertise-cta__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 49px;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.azed-expertise-cta__primary {
    background: #99c62b;
    color: #ffffff;
    box-shadow: 0 13px 30px rgba(153, 198, 43, 0.23);
}

.azed-expertise-cta__primary:hover {
    transform: translateY(-3px);
    background: #aad43d;
    color: #ffffff;
}

.azed-expertise-cta__secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.azed-expertise-cta__secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
}

/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1050px) {

    .azed-expertise-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .azed-expertise-cta__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .azed-expertise-cta__actions {
        flex-direction: row;
        min-width: 0;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .azed-expertise-page__introduction {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        margin-bottom: 30px;
        padding: 23px 20px;
    }

    .azed-expertise-page__introduction-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        font-size: 18px;
    }

    .azed-expertise-page__introduction-content h3 {
        font-size: 18px;
    }

    .azed-expertise-page__introduction-content p {
        font-size: 12.5px;
    }

    .azed-expertise-benefits {
        padding: 72px 20px;
    }

    .azed-expertise-benefits__header {
        margin-bottom: 34px;
        text-align: left;
    }

    .azed-expertise-benefits__header h2 span {
        display: inline;
    }

    .azed-expertise-benefits__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
    }

    .azed-expertise-benefit {
        min-height: 0;
        padding: 23px 20px;
    }

    .azed-expertise-cta {
        padding: 60px 20px;
    }

    .azed-expertise-cta__inner {
        gap: 28px;
        padding: 34px 24px;
        border-radius: 20px;
    }

    .azed-expertise-cta__content h2 span {
        display: inline;
    }

    .azed-expertise-cta__actions {
        flex-direction: column;
    }

    .azed-expertise-cta__primary,
    .azed-expertise-cta__secondary {
        width: 100%;
    }
}

/* =========================================================
   PETITS MOBILES
========================================================= */

@media (max-width: 390px) {

    .azed-expertise-benefits,
    .azed-expertise-cta {
        padding-right: 15px;
        padding-left: 15px;
    }
}



/* =========================================================
   PAGE SOLUTIONS DIGITALES
========================================================= */

.azed-digital-page {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    font-family: "Montserrat", sans-serif;
}

/* =========================================================
   SECTION SERVICES
========================================================= */

.azed-digital-page__services {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.azed-digital-page__services
.azed-home-digital__intro p {
    margin-bottom: 0;
}

/* =========================================================
   BLOC INTRODUCTIF
========================================================= */

.azed-digital-page__introduction {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 25px;
    margin-bottom: 42px;
    padding: 28px 30px;
    border: 1px solid rgba(33, 52, 125, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(33, 52, 125, 0.045),
            rgba(139, 190, 20, 0.055)
        ),
        #ffffff;
    box-shadow: 0 16px 38px rgba(20, 37, 86, 0.055);
}

.azed-digital-page__introduction-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            #263e98,
            #1d2e75
        );
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 12px 28px rgba(30, 49, 123, 0.2);
}

.azed-digital-page__introduction-content h3 {
    margin: 0 0 12px;
    color: #14204a;
    font-size: 21px;
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.azed-digital-page__introduction-content p {
    margin: 0 0 10px;
    color: #5d6679;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.75;
}

.azed-digital-page__introduction-content p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   POURQUOI AZED
========================================================= */

.azed-digital-benefits {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 95px 6%;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(81, 104, 199, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(147, 196, 26, 0.1),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #111827,
            #162137
        );
}

.azed-digital-benefits__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.azed-digital-benefits__header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.azed-digital-benefits__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #b5df4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-digital-benefits__header h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.azed-digital-benefits__header h2 span {
    display: block;
    color: #a8d532;
}

.azed-digital-benefits__header p {
    margin: 0;
    color: #aeb7c8;
    font-size: 14px;
    line-height: 1.75;
}

.azed-digital-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.azed-digital-benefit {
    position: relative;
    min-width: 0;
    min-height: 245px;
    padding: 28px 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.azed-digital-benefit:hover {
    transform: translateY(-7px);
    border-color: rgba(168, 213, 50, 0.38);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.095),
            rgba(255, 255, 255, 0.035)
        );
}

.azed-digital-benefit__number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(255, 255, 255, 0.1);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.azed-digital-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border: 1px solid rgba(168, 213, 50, 0.22);
    border-radius: 15px;
    background: rgba(168, 213, 50, 0.11);
    color: #b5df4b;
    font-size: 19px;
}

.azed-digital-benefit h3 {
    margin: 0 0 11px;
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.4;
}

.azed-digital-benefit p {
    margin: 0;
    color: #aeb7c8;
    font-size: 12px;
    line-height: 1.7;
}

/* =========================================================
   CTA FINAL
========================================================= */

.azed-digital-cta {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 80px 6%;
    overflow: hidden;
    background: #f6f8fc;
}

.azed-digital-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 52px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(168, 213, 50, 0.2),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #203888,
            #152761
        );
    box-shadow: 0 25px 60px rgba(23, 42, 105, 0.2);
}

.azed-digital-cta__badge {
    display: inline-block;
    margin-bottom: 14px;
    color: #b5df4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-digital-cta__content h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(29px, 3.5vw, 43px);
    font-weight: 750;
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.azed-digital-cta__content h2 span {
    display: block;
    color: #b5df4b;
}

.azed-digital-cta__content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13.5px;
    line-height: 1.75;
}

.azed-digital-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 245px;
}

.azed-digital-cta__primary,
.azed-digital-cta__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 49px;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.azed-digital-cta__primary {
    background: #99c62b;
    color: #ffffff;
    box-shadow: 0 13px 30px rgba(153, 198, 43, 0.23);
}

.azed-digital-cta__primary:hover {
    transform: translateY(-3px);
    background: #aad43d;
    color: #ffffff;
}

.azed-digital-cta__secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.azed-digital-cta__secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
}

/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1050px) {

    .azed-digital-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .azed-digital-cta__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .azed-digital-cta__actions {
        flex-direction: row;
        min-width: 0;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .azed-digital-page__introduction {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        margin-bottom: 30px;
        padding: 23px 20px;
    }

    .azed-digital-page__introduction-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        font-size: 18px;
    }

    .azed-digital-page__introduction-content h3 {
        font-size: 18px;
    }

    .azed-digital-page__introduction-content p {
        font-size: 12.5px;
    }

    .azed-digital-benefits {
        padding: 72px 20px;
    }

    .azed-digital-benefits__header {
        margin-bottom: 34px;
        text-align: left;
    }

    .azed-digital-benefits__header h2 span {
        display: inline;
    }

    .azed-digital-benefits__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
    }

    .azed-digital-benefit {
        min-height: 0;
        padding: 23px 20px;
    }

    .azed-digital-cta {
        padding: 60px 20px;
    }

    .azed-digital-cta__inner {
        gap: 28px;
        padding: 34px 24px;
        border-radius: 20px;
    }

    .azed-digital-cta__content h2 span {
        display: inline;
    }

    .azed-digital-cta__actions {
        flex-direction: column;
    }

    .azed-digital-cta__primary,
    .azed-digital-cta__secondary {
        width: 100%;
    }
}

/* =========================================================
   PETITS MOBILES
========================================================= */

@media (max-width: 390px) {

    .azed-digital-benefits,
    .azed-digital-cta {
        padding-right: 15px;
        padding-left: 15px;
    }
}





/* =========================================================
   PAGE CONSEIL, AUDIT & RSE
========================================================= */

.azed-advisory-page {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    font-family: "Montserrat", sans-serif;
}

/* =========================================================
   SECTION SERVICES
========================================================= */

.azed-advisory-page__services {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.azed-advisory-page__services
.azed-home-advisory__intro p {
    margin-bottom: 0;
}

/* =========================================================
   BLOC INTRODUCTIF
========================================================= */

.azed-advisory-page__introduction {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 25px;
    margin-bottom: 42px;
    padding: 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.17);
}

.azed-advisory-page__introduction-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(168, 213, 50, 0.25);
    border-radius: 17px;
    background: rgba(168, 213, 50, 0.12);
    color: #b5df4b;
    font-size: 22px;
}

.azed-advisory-page__introduction-content h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.azed-advisory-page__introduction-content p {
    margin: 0 0 10px;
    color: #aeb7c8;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.75;
}

.azed-advisory-page__introduction-content p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   MÉTHODE
========================================================= */

.azed-advisory-method {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 95px 6%;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(82, 105, 199, 0.1),
            transparent 31%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(142, 189, 25, 0.09),
            transparent 28%
        ),
        #f6f8fc;
}

.azed-advisory-method__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.azed-advisory-method__header {
    max-width: 730px;
    margin: 0 auto 48px;
    text-align: center;
}

.azed-advisory-method__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #6f9f0d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-advisory-method__header h2 {
    margin: 0 0 18px;
    color: #111a33;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.azed-advisory-method__header h2 span {
    display: block;
    color: #6f9f0d;
}

.azed-advisory-method__header p {
    margin: 0;
    color: #59637a;
    font-size: 14px;
    line-height: 1.75;
}

.azed-advisory-method__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.azed-advisory-method-card {
    position: relative;
    min-width: 0;
    min-height: 250px;
    padding: 28px 24px;
    overflow: hidden;
    border: 1px solid #e4e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 17px 38px rgba(30, 44, 89, 0.07);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.azed-advisory-method-card:hover {
    transform: translateY(-7px);
    border-color: rgba(142, 189, 25, 0.4);
    box-shadow: 0 25px 52px rgba(30, 44, 89, 0.14);
}

.azed-advisory-method-card__number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(31, 52, 125, 0.08);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.azed-advisory-method-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border: 1px solid rgba(82, 105, 199, 0.13);
    border-radius: 15px;
    background: rgba(82, 105, 199, 0.08);
    color: #5269c7;
    font-size: 19px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.azed-advisory-method-card:hover
.azed-advisory-method-card__icon {
    border-color: #8ebd19;
    background: #8ebd19;
    color: #ffffff;
}

.azed-advisory-method-card h3 {
    margin: 0 0 11px;
    color: #111a33;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.4;
}

.azed-advisory-method-card p {
    margin: 0;
    color: #59637a;
    font-size: 12px;
    line-height: 1.7;
}

/* =========================================================
   CTA FINAL
========================================================= */

.azed-advisory-cta {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 80px 6%;
    overflow: hidden;
    background: #ffffff;
}

.azed-advisory-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 52px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(168, 213, 50, 0.2),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #203888,
            #152761
        );
    box-shadow: 0 25px 60px rgba(23, 42, 105, 0.2);
}

.azed-advisory-cta__badge {
    display: inline-block;
    margin-bottom: 14px;
    color: #b5df4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-advisory-cta__content h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(29px, 3.5vw, 43px);
    font-weight: 750;
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.azed-advisory-cta__content h2 span {
    display: block;
    color: #b5df4b;
}

.azed-advisory-cta__content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13.5px;
    line-height: 1.75;
}

.azed-advisory-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 245px;
}

.azed-advisory-cta__primary,
.azed-advisory-cta__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 49px;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.azed-advisory-cta__primary {
    background: #99c62b;
    color: #ffffff;
    box-shadow: 0 13px 30px rgba(153, 198, 43, 0.23);
}

.azed-advisory-cta__primary:hover {
    transform: translateY(-3px);
    background: #aad43d;
    color: #ffffff;
}

.azed-advisory-cta__secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.azed-advisory-cta__secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
}

/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1050px) {

    .azed-advisory-method__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .azed-advisory-cta__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .azed-advisory-cta__actions {
        flex-direction: row;
        min-width: 0;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .azed-advisory-page__introduction {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        margin-bottom: 30px;
        padding: 23px 20px;
    }

    .azed-advisory-page__introduction-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        font-size: 18px;
    }

    .azed-advisory-page__introduction-content h3 {
        font-size: 18px;
    }

    .azed-advisory-page__introduction-content p {
        font-size: 12.5px;
    }

    .azed-advisory-method {
        padding: 72px 20px;
    }

    .azed-advisory-method__header {
        margin-bottom: 34px;
        text-align: left;
    }

    .azed-advisory-method__header h2 span {
        display: inline;
    }

    .azed-advisory-method__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
    }

    .azed-advisory-method-card {
        min-height: 0;
        padding: 23px 20px;
    }

    .azed-advisory-cta {
        padding: 60px 20px;
    }

    .azed-advisory-cta__inner {
        gap: 28px;
        padding: 34px 24px;
        border-radius: 20px;
    }

    .azed-advisory-cta__content h2 span {
        display: inline;
    }

    .azed-advisory-cta__actions {
        flex-direction: column;
    }

    .azed-advisory-cta__primary,
    .azed-advisory-cta__secondary {
        width: 100%;
    }
}

/* =========================================================
   PETITS MOBILES
========================================================= */

@media (max-width: 390px) {

    .azed-advisory-method,
    .azed-advisory-cta {
        padding-right: 15px;
        padding-left: 15px;
    }
}




/* =========================================================
   PAGE À PROPOS — BASE
========================================================= */

.azed-about-page {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    font-family: "Montserrat", sans-serif;
}

.azed-about-page *,
.azed-about-page *::before,
.azed-about-page *::after {
    box-sizing: border-box;
}

/* =========================================================
   EN-TÊTE GÉNÉRIQUE DE SECTION
========================================================= */

.azed-about-section-header {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.azed-about-section-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #6f9f0d;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-about-section-header h2 {
    margin: 0 0 18px;
    color: #111a33;
    font-size: clamp(30px, 3.4vw, 43px);
    font-weight: 750;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.azed-about-section-header h2 span {
    display: block;
    color: #6f9f0d;
}

.azed-about-section-header p {
    max-width: 680px;
    margin: 0 auto;
    color: #59637a;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

/* =========================================================
   SECTION 1 — INTRODUCTION
========================================================= */

.azed-about-intro {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 105px 6%;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(82, 105, 199, 0.11),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(142, 189, 25, 0.1),
            transparent 29%
        ),
        #f7f9fc;
}

.azed-about-intro::before {
    content: "";
    position: absolute;
    top: -145px;
    right: -110px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(82, 105, 199, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.azed-about-intro__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    align-items: center;
    gap: 75px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.azed-about-intro__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 19px;
    color: #6f9f0d;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-about-intro__badge i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border: 1px solid rgba(142, 189, 25, 0.2);
    border-radius: 10px;
    background: rgba(142, 189, 25, 0.1);
}

.azed-about-intro__content h2 {
    max-width: 670px;
    margin: 0 0 23px;
    color: #111a33;
    font-size: clamp(36px, 4.2vw, 50px);
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.azed-about-intro__content h2 span {
    display: block;
    color: #6f9f0d;
}

.azed-about-intro__content p {
    max-width: 670px;
    margin: 0 0 16px;
    color: #59637a;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

.azed-about-intro__content
.azed-about-intro__lead {
    color: #303b55;
    font-size: 16px;
    font-weight: 450;
    line-height: 1.75;
}

.azed-about-intro__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 24px;
    margin-top: 27px;
}

.azed-about-intro__features span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #26324b;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.azed-about-intro__features i {
    margin-top: 2px;
    color: #8ebd19;
    font-size: 13px;
}

/* Visuel abstrait */

.azed-about-intro__visual {
    position: relative;
    min-height: 430px;
}

.azed-about-intro__visual-main {
    position: absolute;
    top: 40px;
    right: 30px;
    bottom: 40px;
    left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(168, 213, 50, 0.23),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #203888,
            #121f50
        );
    box-shadow: 0 28px 65px rgba(24, 43, 107, 0.24);
}

.azed-about-intro__visual-main::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -60px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
}

.azed-about-intro__visual-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.09);
    color: #b5df4b;
    font-size: 24px;
}

.azed-about-intro__visual-main strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 23px;
    font-weight: 750;
    line-height: 1.35;
}

.azed-about-intro__visual-main p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.75;
}

.azed-about-intro__visual-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 145px;
    padding: 14px 17px;
    border: 1px solid #e4e8f0;
    border-radius: 14px;
    background: #ffffff;
    color: #111a33;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 18px 38px rgba(25, 42, 92, 0.15);
}

.azed-about-intro__visual-card i {
    color: #7eac10;
    font-size: 15px;
}

.azed-about-intro__visual-card--one {
    top: 9px;
    left: 0;
}

.azed-about-intro__visual-card--two {
    right: 0;
    bottom: 8px;
}

/* =========================================================
   SECTION 2 — REPÈRES
========================================================= */

.azed-about-figures {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 95px 6%;
    background: #ffffff;
}

.azed-about-figures__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.azed-about-figures__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.azed-about-figure {
    position: relative;
    min-width: 0;
    min-height: 235px;
    padding: 26px 23px;
    overflow: hidden;
    border: 1px solid #e4e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 17px 38px rgba(30, 44, 89, 0.07);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.azed-about-figure:hover {
    transform: translateY(-7px);
    border-color: rgba(142, 189, 25, 0.4);
    box-shadow: 0 25px 52px rgba(30, 44, 89, 0.14);
}

.azed-about-figure__number {
    position: absolute;
    top: 19px;
    right: 21px;
    color: rgba(31, 52, 125, 0.08);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.azed-about-figure__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    border: 1px solid rgba(82, 105, 199, 0.14);
    border-radius: 16px;
    background: rgba(82, 105, 199, 0.08);
    color: #5269c7;
    font-size: 19px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.azed-about-figure:hover
.azed-about-figure__icon {
    background: #8ebd19;
    color: #ffffff;
}

.azed-about-figure h3 {
    margin: 0 0 11px;
    color: #111a33;
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.4;
}

.azed-about-figure p {
    margin: 0;
    color: #59637a;
    font-size: 13.5px;
    line-height: 1.7;
}

/* =========================================================
   SECTION 3 — IDENTITÉ
========================================================= */

.azed-about-identity {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 95px 6%;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(82, 105, 199, 0.16),
            transparent 31%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(142, 189, 25, 0.11),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #111827,
            #162137
        );
}

.azed-about-identity__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.azed-about-identity__header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.azed-about-identity__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #b5df4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-about-identity__header h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(30px, 3.4vw, 43px);
    font-weight: 750;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.azed-about-identity__header h2 span {
    display: block;
    color: #b5df4b;
}

.azed-about-identity__header p {
    margin: 0;
    color: #aeb7c8;
    font-size: 14px;
    line-height: 1.75;
}

.azed-about-identity__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.azed-about-identity-card {
    position: relative;
    min-width: 0;
    min-height: 245px;
    padding: 28px 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: 0 19px 42px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.azed-about-identity-card:hover {
    transform: translateY(-7px);
    border-color: rgba(181, 223, 75, 0.38);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.035)
        );
}

.azed-about-identity-card__number {
    position: absolute;
    top: 20px;
    right: 23px;
    color: rgba(255, 255, 255, 0.09);
    font-size: 38px;
    font-weight: 800;
}

.azed-about-identity-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    margin-bottom: 23px;
    border: 1px solid rgba(181, 223, 75, 0.22);
    border-radius: 16px;
    background: rgba(181, 223, 75, 0.11);
    color: #b5df4b;
    font-size: 20px;
}

.azed-about-identity-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.azed-about-identity-card p {
    margin: 0;
    color: #b8c1d1;
    font-size: 13.5px;
    line-height: 1.75;
}

/* =========================================================
   SECTION 4 — FORCES
========================================================= */

.azed-about-strengths {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 95px 6%;
    background:
        radial-gradient(
            circle at 92% 15%,
            rgba(142, 189, 25, 0.08),
            transparent 30%
        ),
        #f7f9fc;
}

.azed-about-strengths__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.azed-about-strengths__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.azed-about-strength {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    min-width: 0;
    padding: 24px;
    border: 1px solid #e4e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(30, 44, 89, 0.06);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.azed-about-strength:hover {
    transform: translateY(-6px);
    border-color: rgba(142, 189, 25, 0.4);
    box-shadow: 0 23px 48px rgba(30, 44, 89, 0.12);
}

.azed-about-strength__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(82, 105, 199, 0.13);
    border-radius: 16px;
    background: rgba(82, 105, 199, 0.08);
    color: #5269c7;
    font-size: 19px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.azed-about-strength:hover
.azed-about-strength__icon {
    background: #8ebd19;
    color: #ffffff;
}

.azed-about-strength h3 {
    margin: 2px 0 9px;
    color: #111a33;
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.4;
}

.azed-about-strength p {
    margin: 0;
    color: #59637a;
    font-size: 13.5px;
    line-height: 1.7;
}

/* =========================================================
   SECTION 5 — MÉTHODE
========================================================= */

.azed-about-method {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 95px 6%;
    background: #ffffff;
}

.azed-about-method__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.azed-about-method__header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.azed-about-method__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #6f9f0d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-about-method__header h2 {
    margin: 0 0 18px;
    color: #111a33;
    font-size: clamp(30px, 3.4vw, 43px);
    font-weight: 750;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.azed-about-method__header h2 span {
    display: block;
    color: #6f9f0d;
}

.azed-about-method__header p {
    margin: 0;
    color: #59637a;
    font-size: 14px;
    line-height: 1.75;
}

.azed-about-method__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.azed-about-method-card {
    position: relative;
    min-width: 0;
    min-height: 225px;
    padding: 28px 24px;
    overflow: hidden;
    border: 1px solid #e4e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 17px 38px rgba(30, 44, 89, 0.07);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.azed-about-method-card:hover {
    transform: translateY(-7px);
    border-color: rgba(142, 189, 25, 0.4);
    box-shadow: 0 25px 52px rgba(30, 44, 89, 0.14);
}

.azed-about-method-card__number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(31, 52, 125, 0.08);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.azed-about-method-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border: 1px solid rgba(82, 105, 199, 0.13);
    border-radius: 15px;
    background: rgba(82, 105, 199, 0.08);
    color: #5269c7;
    font-size: 19px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.azed-about-method-card:hover
.azed-about-method-card__icon {
    background: #8ebd19;
    color: #ffffff;
}

.azed-about-method-card h3 {
    margin: 0 0 11px;
    color: #111a33;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.azed-about-method-card p {
    margin: 0;
    color: #59637a;
    font-size: 13.5px;
    line-height: 1.7;
}

/* =========================================================
   SECTION 6 — CTA
========================================================= */

.azed-about-cta {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 80px 6%;
    overflow: hidden;
    background: #f6f8fc;
}

.azed-about-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 52px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(168, 213, 50, 0.2),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #203888,
            #152761
        );
    box-shadow: 0 25px 60px rgba(23, 42, 105, 0.2);
}

.azed-about-cta__badge {
    display: inline-block;
    margin-bottom: 14px;
    color: #b5df4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azed-about-cta__content h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 39px);
    font-weight: 750;
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.azed-about-cta__content h2 span {
    display: block;
    color: #b5df4b;
}

.azed-about-cta__content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.75;
}

.azed-about-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 245px;
}

.azed-about-cta__primary,
.azed-about-cta__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 49px;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.azed-about-cta__primary {
    background: #99c62b;
    color: #ffffff;
    box-shadow: 0 13px 30px rgba(153, 198, 43, 0.23);
}

.azed-about-cta__primary:hover {
    transform: translateY(-3px);
    background: #aad43d;
    color: #ffffff;
}

.azed-about-cta__secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.azed-about-cta__secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
}

/* =========================================================
   AJUSTEMENTS TYPOGRAPHIQUES COMMUNS
========================================================= */

.azed-about-section-header__badge,
.azed-about-intro__badge,
.azed-about-identity__badge,
.azed-about-method__badge,
.azed-about-cta__badge {
    font-size: 11.5px;
    line-height: 1.4;
    letter-spacing: 0.075em;
}

/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1050px) {

    .azed-about-intro__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 50px;
    }

    .azed-about-intro__visual {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
    }

    .azed-about-figures__grid,
    .azed-about-method__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .azed-about-cta__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .azed-about-cta__actions {
        flex-direction: row;
        min-width: 0;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .azed-about-intro,
    .azed-about-figures,
    .azed-about-identity,
    .azed-about-strengths,
    .azed-about-method {
        padding: 72px 20px;
    }

    .azed-about-intro__content h2 {
        font-size: clamp(30px, 9vw, 37px);
        line-height: 1.13;
    }

    .azed-about-intro__content h2 span,
    .azed-about-section-header h2 span,
    .azed-about-identity__header h2 span,
    .azed-about-method__header h2 span,
    .azed-about-cta__content h2 span {
        display: inline;
    }

    .azed-about-intro__features {
        grid-template-columns: minmax(0, 1fr);
    }

    .azed-about-intro__visual {
        min-height: 370px;
    }

    .azed-about-intro__visual-main {
        top: 35px;
        right: 10px;
        bottom: 35px;
        left: 10px;
        padding: 28px 24px;
    }

    .azed-about-intro__visual-card {
        min-width: 125px;
        padding: 12px 14px;
        font-size: 11px;
    }

    .azed-about-section-header,
    .azed-about-identity__header,
    .azed-about-method__header {
        margin-bottom: 34px;
        text-align: left;
    }

    .azed-about-figures__grid,
    .azed-about-identity__grid,
    .azed-about-strengths__grid,
    .azed-about-method__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
    }

    .azed-about-figure,
    .azed-about-identity-card,
    .azed-about-method-card {
        min-height: 0;
        padding: 23px 20px;
    }

    .azed-about-strength {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 16px;
        padding: 21px 18px;
    }

    .azed-about-strength__icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .azed-about-section-header h2,
    .azed-about-identity__header h2,
    .azed-about-method__header h2 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.16;
    }

    .azed-about-section-header p,
    .azed-about-identity__header p,
    .azed-about-method__header p {
        font-size: 14px;
        line-height: 1.75;
    }

    .azed-about-figure p,
    .azed-about-identity-card p,
    .azed-about-strength p,
    .azed-about-method-card p {
        font-size: 13.5px;
    }

    .azed-about-section-header__badge,
    .azed-about-intro__badge,
    .azed-about-identity__badge,
    .azed-about-method__badge,
    .azed-about-cta__badge {
        font-size: 10.5px;
    }

    .azed-about-cta {
        padding: 60px 20px;
    }

    .azed-about-cta__inner {
        gap: 28px;
        padding: 34px 24px;
        border-radius: 20px;
    }

    .azed-about-cta__actions {
        flex-direction: column;
    }

    .azed-about-cta__primary,
    .azed-about-cta__secondary {
        width: 100%;
    }
}

/* =========================================================
   PETITS MOBILES
========================================================= */

@media (max-width: 390px) {

    .azed-about-intro,
    .azed-about-figures,
    .azed-about-identity,
    .azed-about-strengths,
    .azed-about-method,
    .azed-about-cta {
        padding-right: 15px;
        padding-left: 15px;
    }

    .azed-about-intro__visual {
        min-height: 340px;
    }

    .azed-about-intro__visual-card--one {
        left: 0;
    }

    .azed-about-intro__visual-card--two {
        right: 0;
    }
}

