
/* ==========================================================================
   MPPME v4.1.11-Beta — Finition visuelle et lisibilité
   --------------------------------------------------------------------------
   Ce fichier contient uniquement les raffinements visuels ajoutés après
   site.css. Les sélecteurs sont volontairement ciblés par page/section pour
   éviter les effets de bord dans les futurs développements.
   ========================================================================== */


/* ==========================================================================
   ACCUEIL — cartes de services, bande de confiance et textes
   ========================================================================== */

.home-services-section .section-head > p {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.72;
    font-weight: 600;
}

.home-service-cards {
    gap: 22px;
}

.home-service-cards article {
    position: relative;
    min-height: 410px;
    padding: 32px 30px 30px;
    overflow: hidden;
    border: 1px solid #cbdac6;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 247, .98));
    box-shadow: 0 14px 36px rgba(27, 61, 38, .07);
}

.home-service-cards article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #6abd45, #3f8f2c);
}

.home-service-cards article::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -85px;
    top: -88px;
    border-radius: 50%;
    background: rgba(106, 189, 69, .08);
    pointer-events: none;
}

.home-service-cards article:hover {
    transform: translateY(-7px);
    border-color: #aecaab;
    box-shadow: 0 24px 56px rgba(27, 61, 38, .14);
}

.home-service-cards .num {
    position: relative;
    z-index: 1;
    display: inline-grid;
    width: 43px;
    height: 43px;
    place-items: center;
    min-height: 0;
    border-radius: 13px;
    background: #edf6e9;
    color: #43892b;
    font-size: 14px;
    font-weight: 900;
}

.home-service-cards h3 {
    min-height: 62px;
    margin: 24px 0 13px;
    font-size: 22px;
    line-height: 1.28;
}

.home-service-cards p {
    min-height: 112px;
    margin: 0 0 24px;
    color: #4e5d52;
    font-size: 16.5px;
    line-height: 1.68;
}

.home-service-cards .info-button {
    min-width: 190px;
    min-height: 48px;
    padding: 12px 21px;
    justify-content: center;
    border-radius: 999px;
    background: #173a25;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 9px 20px rgba(23, 58, 37, .14);
}

.home-service-cards .info-button:hover {
    background: #6abd45;
    color: #102b1b;
    transform: translateY(-1px);
}

.trust {
    padding: 20px 0;
    background: #dce7d8;
}

.trust-grid {
    gap: 16px;
}

.trust-grid > div,
.trust-grid > div:first-child,
.trust-grid > div:last-child {
    padding: 23px 25px;
    border: 1px solid #c3d3bf;
    border-radius: 16px;
    background: rgba(255, 255, 255, .55);
}

.trust strong {
    color: #1f3928;
    font-size: 18px;
    line-height: 1.3;
}

.trust span {
    margin-top: 7px;
    color: #56675a;
    font-size: 15.5px;
    line-height: 1.5;
}


/* ==========================================================================
   À PROPOS — raison d'être et valeurs
   ========================================================================== */

.about-purpose-section {
    position: relative;
    overflow: hidden;
}

.about-purpose-section::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    right: -230px;
    top: -230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 189, 69, .20), transparent 69%);
    pointer-events: none;
}

.about-purpose-section .section-head,
.about-values-section .section-head {
    align-items: stretch;
}

.about-purpose-section .section-head > p,
.about-values-section .section-head > p {
    display: flex;
    align-items: center;
    max-width: 500px;
    padding: 22px 24px;
    border-left: 4px solid #6abd45;
    border-radius: 14px;
    background: rgba(255, 255, 255, .55);
    color: #46584c;
    font-size: 18px;
    line-height: 1.62;
    font-weight: 650;
}

.about-purpose-section .feature-grid {
    gap: 22px;
}

.about-purpose-section .feature {
    position: relative;
    min-height: 255px;
    padding: 34px 32px 30px;
    overflow: hidden;
    border: 1px solid #c6d8c1;
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff 0%, #f5faf3 100%);
    box-shadow: 0 15px 38px rgba(27, 61, 38, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.about-purpose-section .feature::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #6abd45, #3e8d2a);
}

.about-purpose-section .feature:hover {
    transform: translateY(-4px);
    border-color: #abc9a1;
    box-shadow: 0 22px 48px rgba(27, 61, 38, .12);
}

.about-feature-index {
    display: inline-grid;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 14px;
    background: #173a25;
    color: #b9ef9f;
    font-size: 14px;
    font-weight: 900;
}

.about-purpose-section .feature h3 {
    margin: 0 0 12px;
    color: #1d3726;
    font-size: 23px;
    line-height: 1.25;
}

.about-purpose-section .feature p {
    margin: 0;
    color: #526157;
    font-size: 17px;
    line-height: 1.7;
}

.about-values-section {
    position: relative;
}

.about-values-section .values-grid {
    gap: 20px;
}

.about-values-section .value-card {
    position: relative;
    min-height: 235px;
    padding: 29px 28px 27px;
    overflow: hidden;
    border: 1px solid #cbdac7;
    border-radius: 20px;
    background: linear-gradient(150deg, #ffffff 0%, #f8fbf7 100%);
    box-shadow: 0 12px 32px rgba(26, 60, 37, .06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.about-values-section .value-card::after {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    right: -48px;
    bottom: -48px;
    border-radius: 50%;
    background: rgba(106, 189, 69, .08);
}

.about-values-section .value-card:hover {
    transform: translateY(-4px);
    border-color: #acd0a1;
    box-shadow: 0 20px 42px rgba(26, 60, 37, .11);
}

.about-value-index {
    display: inline-flex;
    margin-bottom: 20px;
    color: #43892b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
}

.about-values-section .value-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 11px;
    color: #203b29;
    font-size: 21px;
    line-height: 1.25;
}

.about-values-section .value-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #536259;
    font-size: 16.5px;
    line-height: 1.68;
}


/* ==========================================================================
   SIGNALER UN INCIDENT — équilibre du bloc d'information
   ========================================================================== */

.privacy-report-help .section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.privacy-report-help .section-head > div,
.privacy-report-help .section-head > p {
    min-height: 175px;
    margin: 0;
    padding: 28px 30px;
    border-radius: 18px;
}

.privacy-report-help .section-head > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #bfd2ba;
    background: linear-gradient(145deg, #ffffff, #f5faf3);
}

.privacy-report-help .section-head > p {
    display: flex;
    align-items: center;
    max-width: none;
    border: 1px solid #c4d7be;
    background: #e8f1e5;
    color: #3f5145;
    font-size: 17.5px;
    line-height: 1.72;
    font-weight: 650;
}

.privacy-report-help .privacy-incident-cards p {
    font-size: 16.5px;
    line-height: 1.65;
}


/* ==========================================================================
   ESPACE MEMBRE — cartes principales et lisibilité
   ========================================================================== */

.member-space-page .client-section-head > p {
    max-width: 560px;
    font-size: 18.5px;
    line-height: 1.68;
    font-weight: 650;
}

.member-space-page .client-primary-grid {
    gap: 24px;
}

.member-space-page .client-service-card {
    min-height: 430px;
    padding: 34px;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(26, 62, 38, .10);
}

.member-space-page .client-service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #6abd45, #43892b);
}

.member-space-page .client-service-card--cloud::before {
    background: linear-gradient(90deg, #b5ed9a, #6abd45);
}

.member-space-page .client-service-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 30px;
    border-radius: 19px;
    font-size: 30px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}

.member-space-page .client-service-kicker {
    font-size: 13px;
    line-height: 1.4;
}

.member-space-page .client-service-card h3 {
    margin: 7px 0 15px;
    font-size: 32px;
}

.member-space-page .client-service-card p {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.72;
}

.member-space-page .client-card-action {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    border: 1px solid #d3e0cf;
    border-radius: 14px;
    background: #eef6ea;
    color: #173a25;
    font-size: 17px;
    box-sizing: border-box;
}

.member-space-page .client-service-card--cloud .client-card-action {
    border-color: rgba(255, 255, 255, .17);
    background: rgba(255, 255, 255, .09);
    color: #c6f0b2;
}

.member-space-page .client-resource-card {
    min-height: 132px;
    padding: 25px 28px;
}

.member-space-page .client-resource-card p {
    font-size: 16.5px;
    line-height: 1.6;
}


/* ==========================================================================
   ANALYSE DE DOSSIER — cartes de choix CNESST
   ========================================================================== */

.analysis-choice-section .feature-grid {
    gap: 24px;
}

.analysis-choice-section .analysis-choice-card {
    position: relative;
    min-height: 420px;
    padding: 36px 34px 34px;
    overflow: hidden;
    border: 1px solid #bdd4b5;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff 0%, #f5faf3 100%);
    box-shadow: 0 18px 48px rgba(25, 60, 37, .10);
}

.analysis-choice-section .analysis-choice-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, #6abd45, #43892b);
}

.analysis-choice-section .analysis-choice-card--unregistered {
    background: linear-gradient(145deg, #f8fbf7 0%, #eaf2e6 100%);
}

.analysis-choice-kicker {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 23px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #173a25;
    color: #b9ef9f;
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.analysis-choice-section .analysis-choice-card h3 {
    min-height: 64px;
    margin: 0 0 17px;
    color: #1e3927;
    font-size: 25px;
    line-height: 1.28;
}

.analysis-choice-section .analysis-choice-card > p:not(.analysis-choice-action) {
    color: #4d5d52;
    font-size: 17px;
    line-height: 1.72;
}

.analysis-choice-section .analysis-choice-action {
    width: 100%;
    padding-top: 32px;
}

.analysis-choice-section .analysis-choice-action .btn {
    width: 100%;
    max-width: 420px;
    min-height: 72px;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 16.5px;
    line-height: 1.35;
    box-shadow: 0 12px 26px rgba(51, 126, 37, .16);
}


/* ==========================================================================
   ÉQUIPE — biographies plus confortables à lire
   ========================================================================== */

.team-page-section .team-profile p {
    color: #4d5e53;
    font-size: 17px;
    line-height: 1.72;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {
    .home-service-cards p,
    .home-service-cards h3 {
        min-height: 0;
    }

    .about-purpose-section .feature,
    .about-values-section .value-card,
    .analysis-choice-section .analysis-choice-card {
        min-height: 0;
    }
}

@media (max-width: 900px) {
    .privacy-report-help .section-head {
        grid-template-columns: 1fr;
    }

    .privacy-report-help .section-head > div,
    .privacy-report-help .section-head > p {
        min-height: 0;
    }

    .about-purpose-section .section-head > p,
    .about-values-section .section-head > p {
        max-width: none;
    }
}

@media (max-width: 700px) {
    .home-service-cards article,
    .member-space-page .client-service-card,
    .analysis-choice-section .analysis-choice-card {
        padding: 27px 24px;
    }

    .trust {
        padding: 12px 0;
    }

    .trust-grid > div,
    .trust-grid > div:first-child,
    .trust-grid > div:last-child {
        padding: 20px;
    }

    .about-purpose-section .feature,
    .about-values-section .value-card {
        padding: 26px 24px;
    }
}


/* ==========================================================================
   v4.1.11-Beta — Accueil : mutuelle de prévention
   ========================================================================== */

.home-mutuelle-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(106, 189, 69, .18), transparent 31%),
        linear-gradient(135deg, #edf5e9 0%, #f8fbf7 52%, #e6efe3 100%);
}

.home-mutuelle-section::before,
.home-mutuelle-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-mutuelle-section::before {
    width: 330px;
    height: 330px;
    right: -145px;
    top: -170px;
    border: 1px solid rgba(106, 189, 69, .20);
    box-shadow:
        0 0 0 45px rgba(106, 189, 69, .045),
        0 0 0 90px rgba(106, 189, 69, .025);
}

.home-mutuelle-section::after {
    width: 175px;
    height: 175px;
    left: -95px;
    bottom: -92px;
    background: rgba(23, 58, 37, .05);
}

.home-mutuelle-layout {
    position: relative;
    z-index: 1;
    grid-template-columns: .92fr 1.08fr;
    gap: 38px;
    align-items: stretch;
}

.home-mutuelle-heading,
.home-mutuelle-copy {
    position: relative;
    border-radius: 26px;
}

.home-mutuelle-heading {
    display: flex;
    min-height: 310px;
    padding: 44px 42px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(23, 58, 37, .12);
    background:
        linear-gradient(145deg, rgba(23, 58, 37, .98), rgba(31, 75, 47, .96));
    box-shadow: 0 22px 55px rgba(23, 58, 37, .16);
}

.home-mutuelle-heading::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -72px;
    bottom: -92px;
    border-radius: 50%;
    background: rgba(106, 189, 69, .17);
}

.home-mutuelle-heading .eyebrow {
    position: relative;
    z-index: 1;
    max-width: 440px;
    margin-bottom: 18px;
    color: #aeea92;
    font-size: 21px;
    line-height: 1.32;
}

.home-mutuelle-heading h2 {
    position: relative;
    z-index: 1;
    max-width: 510px;
    color: #ffffff;
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.06;
}

.home-mutuelle-copy {
    display: flex;
    min-height: 310px;
    padding: 40px 42px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #c5d6c0;
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 18px 46px rgba(27, 61, 38, .09);
    backdrop-filter: blur(8px);
}

.home-mutuelle-copy::before {
    content: "";
    position: absolute;
    inset: 24px auto 24px 0;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, #6abd45, #43892b);
}

.home-mutuelle-copy p {
    color: #45564b;
    font-size: 18px;
    line-height: 1.74;
}

.home-mutuelle-method {
    margin-top: 3px !important;
    padding: 17px 19px;
    border-radius: 14px;
    background: #edf6e9;
    color: #294332 !important;
}

.home-mutuelle-method strong {
    color: #317c25;
    font-weight: 900;
}

.home-mutuelle-link {
    align-self: flex-start;
    min-height: 50px;
    margin-top: 5px;
    padding-inline: 23px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(67, 137, 43, .18);
}

/* Avec 7 services, la dernière carte demeure visuellement centrée. */
.home-service-cards article:nth-child(7) {
    grid-column: 2;
}


/* ==========================================================================
   v4.1.11-Beta — Nos services : profondeur visuelle et hiérarchie
   ========================================================================== */

.services-page .page-hero {
    position: relative;
    overflow: hidden;
}

.services-page .page-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -150px;
    bottom: -220px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, .045),
        0 0 0 110px rgba(255, 255, 255, .025);
    pointer-events: none;
}

.services-intro-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f6faf4 0%, #eef5eb 100%);
}

.services-intro-section .split {
    gap: 34px;
    align-items: stretch;
}

.services-intro-section .split > div {
    position: relative;
    padding: 34px 36px;
    border: 1px solid #c7d7c3;
    border-radius: 22px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 16px 40px rgba(27, 61, 38, .07);
}

.services-intro-section .split > div:first-child {
    overflow: hidden;
    background: linear-gradient(145deg, #173a25, #255b37);
}

.services-intro-section .split > div:first-child::after {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    right: -62px;
    bottom: -72px;
    border-radius: 50%;
    background: rgba(106, 189, 69, .15);
}

.services-intro-section .split > div:first-child .eyebrow {
    position: relative;
    z-index: 1;
    color: #b8efa0;
}

.services-intro-section .split > div:first-child h2 {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.services-intro-section .split > div:last-child {
    border-left: 5px solid #6abd45;
}

.services-intro-section .split > div:last-child p {
    color: #46574b;
    font-size: 18px;
    line-height: 1.72;
}

.services-catalog-section {
    position: relative;
    background:
        radial-gradient(circle at 7% 8%, rgba(106, 189, 69, .09), transparent 22%),
        var(--soft);
}

.services-page .service-long {
    gap: 22px;
}

.services-page .service-long article {
    position: relative;
    min-height: 500px;
    padding: 34px 34px 32px;
    overflow: hidden;
    border: 1px solid #c5d5c0;
    border-radius: 24px;
    background:
        linear-gradient(150deg, #ffffff 0%, #f8fbf7 100%);
    box-shadow: 0 15px 40px rgba(28, 63, 39, .075);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.services-page .service-long article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #6abd45, #43892b);
}

.services-page .service-long article::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -82px;
    top: -82px;
    border-radius: 50%;
    background: rgba(106, 189, 69, .07);
    pointer-events: none;
}

.services-page .service-long article:hover {
    transform: translateY(-5px);
    border-color: #a8c89f;
    box-shadow: 0 24px 54px rgba(28, 63, 39, .13);
}

.services-page .service-long .num {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-self: flex-start;
    min-height: 34px;
    padding: 8px 12px;
    align-items: center;
    border-radius: 999px;
    background: #eaf4e6;
    color: #3f842c;
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: .055em;
}

.services-page .service-long h3 {
    position: relative;
    z-index: 1;
    min-height: 70px;
    margin: 22px 0 14px;
    color: #1d3826;
    font-size: 24px;
    line-height: 1.24;
}

.services-page .service-long p,
.services-page .service-long li {
    position: relative;
    z-index: 1;
    color: #4b5b50;
    font-size: 16.5px;
    line-height: 1.68;
}

.services-page .service-long p {
    min-height: 112px;
}

.services-page .service-long ul {
    position: relative;
    z-index: 1;
    margin: 3px 0 28px;
    padding: 18px 18px 18px 38px;
    border-radius: 15px;
    background: #f0f6ed;
}

.services-page .service-long li::marker {
    color: #5fae3d;
}

.services-page .service-long .service-button {
    position: relative;
    z-index: 1;
    min-width: 190px;
    min-height: 50px;
    padding: 12px 22px;
    justify-content: center;
    border-radius: 999px;
    box-shadow: 0 9px 22px rgba(35, 82, 47, .13);
}

.services-page .service-long .mutuelle-card {
    background:
        linear-gradient(145deg, #5daf3d 0%, #438f2e 58%, #347624 100%);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: 0 19px 48px rgba(53, 120, 37, .20);
}

.services-page .service-long .mutuelle-card::before {
    background: rgba(255, 255, 255, .58);
}

.services-page .service-long .mutuelle-card::after {
    background: rgba(255, 255, 255, .08);
}

.services-page .service-long .mutuelle-card .num {
    background: rgba(255, 255, 255, .16);
    color: #ffffff;
}

.services-page .service-long .mutuelle-card h3,
.services-page .service-long .mutuelle-card p,
.services-page .service-long .mutuelle-card li {
    color: #ffffff;
}

.services-page .service-long .mutuelle-card ul {
    background: rgba(255, 255, 255, .10);
}

@media (max-width: 980px) {
    .home-service-cards article:nth-child(7) {
        grid-column: auto;
    }

    .home-mutuelle-layout,
    .services-intro-section .split {
        grid-template-columns: 1fr;
    }

    .home-mutuelle-heading,
    .home-mutuelle-copy {
        min-height: 0;
    }

    .services-page .service-long article {
        min-height: 0;
    }

    .services-page .service-long h3,
    .services-page .service-long p {
        min-height: 0;
    }
}

@media (max-width: 700px) {
    .home-mutuelle-heading,
    .home-mutuelle-copy,
    .services-intro-section .split > div,
    .services-page .service-long article {
        padding: 28px 24px;
    }

    .home-mutuelle-heading .eyebrow {
        font-size: 19px;
    }

    .home-mutuelle-copy p,
    .services-intro-section .split > div:last-child p {
        font-size: 17px;
    }
}


/* ==========================================================================
   v4.1.12-Beta — Espace membre : Formation en ligne
   ========================================================================== */

.member-space-page .client-primary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-space-page .client-service-card--training {
    background:
        radial-gradient(circle at 88% 12%, rgba(106, 189, 69, .17), transparent 30%),
        linear-gradient(160deg, #f7fbf5 0%, #eef6ea 100%);
    border-color: #c5dcc0;
}

.member-space-page .client-service-card--training .client-service-icon {
    background: linear-gradient(145deg, #6abd45, #4d9f31);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(73, 147, 47, .22);
}

.member-space-page .client-service-card--training .client-card-action {
    border-color: #bfd9b7;
    background: #e2f1db;
}


/* ==========================================================================
   v4.1.12-Beta — Formation en ligne : transition vers la plateforme externe
   ========================================================================== */

.training-transition-section {
    position: relative;
    overflow: hidden;
}

.training-transition-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -260px;
    right: -220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(106, 189, 69, .18),
        rgba(106, 189, 69, 0) 68%
    );
    pointer-events: none;
}

.training-transition-card {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #cbdac7;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(245,250,243,.98));
    box-shadow: 0 26px 70px rgba(24, 57, 35, .13);
}

.training-transition-accent {
    height: 7px;
    background: linear-gradient(90deg, #6abd45, #8ed66d, #43892b);
}

.training-transition-content {
    padding: 48px 58px 44px;
    text-align: center;
}

.training-transition-icon {
    display: grid;
    width: 82px;
    height: 82px;
    margin: 0 auto 23px;
    place-items: center;
    border: 1px solid rgba(106, 189, 69, .28);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(106,189,69,.16), rgba(106,189,69,.07));
    color: #43892b;
    font-size: 29px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(67, 137, 43, .10);
}

.training-transition-kicker {
    display: block;
    margin-bottom: 8px;
    color: #43892b;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.training-transition-content h2 {
    max-width: 720px;
    margin: 0 auto;
    color: #173a25;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.training-transition-description {
    max-width: 760px;
    margin: 21px auto 0;
    color: #4d5e53;
    font-size: 17.5px;
    line-height: 1.74;
    text-align: justify;
}

.training-transition-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 760px;
    margin: 30px auto 0;
    padding: 20px 22px;
    border: 1px solid #c8ddc2;
    border-radius: 17px;
    background: #edf6e9;
    color: #44544a;
    text-align: left;
}

.training-transition-notice strong {
    display: inline-flex;
    min-height: 44px;
    padding: 0 15px;
    align-items: center;
    border-radius: 12px;
    background: #173a25;
    color: #c7f0b4;
    font-size: 14px;
    white-space: nowrap;
}

.training-transition-notice span {
    font-size: 16px;
    line-height: 1.55;
}

.training-transition-notice b {
    color: #2f7621;
}

.training-transition-progress {
    width: min(580px, 100%);
    height: 8px;
    margin: 20px auto 0;
    overflow: hidden;
    border-radius: 999px;
    background: #e1eae0;
}

.training-transition-progress > span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #6abd45, #43892b);
    transform-origin: left center;
    animation: mppmeTrainingCountdown var(--training-delay, 120s) linear forwards;
}

.training-transition-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.training-transition-actions .btn {
    min-height: 54px;
    padding: 14px 24px;
}

.training-transition-secondary {
    border: 1px solid #c1d3bc;
    background: #ffffff;
    color: #173a25;
}

.training-transition-secondary:hover {
    border-color: #6abd45;
    background: #f4f9f1;
}

.training-transition-footnote {
    max-width: 680px;
    margin: 24px auto 0;
    color: #6a776e;
    font-size: 13.5px;
    line-height: 1.55;
    text-align: center;
}

@keyframes mppmeTrainingCountdown {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

@media (max-width: 900px) {
    .member-space-page .client-primary-grid {
        grid-template-columns: 1fr;
    }

    .training-transition-content {
        padding: 40px 34px 36px;
    }
}

@media (max-width: 620px) {
    .training-transition-content {
        padding: 34px 23px 30px;
    }

    .training-transition-notice {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .training-transition-notice strong {
        justify-content: center;
    }

    .training-transition-actions {
        flex-direction: column;
    }

    .training-transition-actions .btn {
        width: 100%;
    }
}


/* ==========================================================================
   v4.1.13-Beta — Formation en ligne : minuterie synchronisée
   ========================================================================== */

/*
 * La durée de la barre est fournie par formation-en-ligne.php au moyen de la
 * variable CSS --training-delay. Ainsi, le compteur texte et la barre visuelle
 * utilisent toujours la même valeur ($delaySeconds).
 */
.training-transition-progress > span {
    animation-duration: var(--training-delay, 120s);
}


/* ==========================================================================
   v4.1.13-Beta — Espace membre : alignement et contraste
   ========================================================================== */

.member-space-page .client-service-icon {
    margin-left: auto;
    margin-right: auto;
}

.member-space-page .client-service-kicker,
.member-space-page .client-service-card h3 {
    width: 100%;
    text-align: center;
}

/* Formulaires reprend exactement le traitement foncé du Cloud. */
.member-space-page .client-service-card--forms {
    border-color: #244a32;
    background: linear-gradient(160deg, #173a25 0%, #102b1b 100%);
    color: #ffffff;
}

.member-space-page .client-service-card--forms::before {
    background: linear-gradient(90deg, #b5ed9a, #6abd45);
}

.member-space-page .client-service-card--forms .client-service-icon {
    border-color: rgba(255, 255, 255, .08);
    background: var(--g);
    color: #ffffff;
}

.member-space-page .client-service-card--forms .client-card-action {
    border-color: rgba(255, 255, 255, .17);
    background: rgba(255, 255, 255, .09);
    color: #ffffff;
}

/* Contraste renforcé sur les deux cartes vert foncé. */
.member-space-page .client-service-card--cloud .client-service-kicker,
.member-space-page .client-service-card--cloud h3,
.member-space-page .client-service-card--cloud p,
.member-space-page .client-service-card--forms .client-service-kicker,
.member-space-page .client-service-card--forms h3,
.member-space-page .client-service-card--forms p {
    color: #f7fbf5 !important;
}

.member-space-page .client-service-card--cloud .client-card-action,
.member-space-page .client-service-card--forms .client-card-action {
    color: #ffffff !important;
}


/* ==========================================================================
   v4.1.13-Beta — Contraste des panneaux verts / foncés du site
   ========================================================================== */

/*
 * Les panneaux verts ou vert foncé doivent conserver un contraste très élevé.
 * Les textes secondaires gris sont donc remplacés par un blanc légèrement
 * adouci pour la lecture, sans modifier les panneaux clairs du site.
 */
.client-security-panel p,
.support-service-card--dark p,
.support-contact-panel p,
.kb-help-panel p,
.services-cnesst-action p {
    color: #f4f8f2 !important;
}

.client-security-panel .eyebrow,
.support-service-card--dark .support-kicker,
.support-contact-panel .eyebrow,
.kb-help-panel .eyebrow,
.services-cnesst-action > span {
    color: #dff7d4 !important;
}

.support-service-card--dark h2,
.support-service-card--dark h3,
.support-contact-panel h2,
.kb-help-panel h2,
.services-cnesst-action strong {
    color: #ffffff !important;
}


/* ==========================================================================
   v4.1.14-Beta — Analyse de dossier : étapes 01-03
   ========================================================================== */

.analysis-choice-section .analysis-process-grid {
    position: relative;
    gap: 22px;
    margin-top: 42px;
}

.analysis-choice-section .analysis-process-grid::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 34px;
    left: 13%;
    right: 13%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(106, 189, 69, 0),
        rgba(106, 189, 69, .55),
        rgba(106, 189, 69, 0)
    );
}

.analysis-choice-section .analysis-process-grid > div {
    position: relative;
    z-index: 1;
    min-height: 255px;
    padding: 32px 30px 30px;
    overflow: hidden;
    border: 1px solid #c3d8bd;
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(106, 189, 69, .15), transparent 34%),
        linear-gradient(145deg, #ffffff 0%, #f5faf3 100%);
    box-shadow: 0 16px 42px rgba(24, 59, 36, .08);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.analysis-choice-section .analysis-process-grid > div::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, #43892b, #6abd45, #99df78);
}

.analysis-choice-section .analysis-process-grid > div:hover {
    transform: translateY(-4px);
    border-color: #a8ca9f;
    box-shadow: 0 24px 54px rgba(24, 59, 36, .13);
}

.analysis-choice-section .analysis-process-grid b {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 18px;
    background: #173a25;
    color: #c8f2b5;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(23, 58, 37, .15);
}

.analysis-choice-section .analysis-process-grid h3 {
    margin: 0 0 12px;
    color: #1d3927;
    font-size: 24px;
    line-height: 1.2;
}

.analysis-choice-section .analysis-process-grid p {
    margin: 0;
    color: #4e6054;
    font-size: 17px;
    line-height: 1.72;
}


/* ==========================================================================
   v4.1.14-Beta — Accueil : appel à l'analyse CNESST
   ========================================================================== */

.home-analysis-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(106, 189, 69, .12), transparent 28%),
        linear-gradient(180deg, #f4f8f2 0%, #eef5eb 100%);
}

.home-analysis-box {
    position: relative;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr) minmax(245px, .34fr);
    gap: 48px;
    padding: 58px 62px;
    border: 1px solid rgba(106, 189, 69, .40);
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 18%, rgba(151, 224, 118, .22), transparent 30%),
        linear-gradient(135deg, #173a25 0%, #214a30 100%);
    box-shadow: 0 28px 72px rgba(17, 49, 29, .18);
}

.home-analysis-box::before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    right: -95px;
    bottom: -150px;
    border: 42px solid rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.home-analysis-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, #9ce57c, #6abd45, #43892b);
}

.home-analysis-copy,
.home-analysis-actions {
    position: relative;
    z-index: 1;
}

.home-analysis-box .eyebrow {
    color: #b9ef9f !important;
    font-size: 19px;
    line-height: 1.35;
}

.home-analysis-box h2 {
    margin-top: 10px;
    color: #ffffff !important;
    font-size: clamp(34px, 4.3vw, 50px);
}

.home-analysis-box .home-analysis-copy p {
    max-width: 700px;
    margin: 18px 0 0;
    color: #edf6e9 !important;
    font-size: 18px;
    line-height: 1.72;
}

.home-analysis-actions {
    display: flex;
    min-height: 180px;
    padding: 26px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 22px;
    background: rgba(255, 255, 255, .075);
    backdrop-filter: blur(3px);
}

.home-analysis-actions .btn {
    min-height: 56px;
    padding: 15px 22px;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.home-analysis-actions small {
    margin-top: 14px;
    color: #e5f2df !important;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
    text-align: center;
}


/* ==========================================================================
   v4.1.14-Beta — À propos : introduction MPPME
   ========================================================================== */

.about-intro-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 5%, rgba(106, 189, 69, .11), transparent 27%),
        #ffffff;
}

.about-intro-grid {
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
    gap: 30px;
    align-items: stretch;
}

.about-intro-heading,
.about-intro-copy {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
}

.about-intro-heading {
    display: flex;
    min-height: 390px;
    padding: 42px 38px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #244b32;
    background:
        radial-gradient(circle at 95% 8%, rgba(152, 226, 118, .18), transparent 34%),
        linear-gradient(145deg, #173a25 0%, #214b30 100%);
    box-shadow: 0 22px 56px rgba(23, 58, 37, .16);
}

.about-intro-heading::after {
    content: "2007";
    position: absolute;
    right: 28px;
    bottom: 12px;
    color: rgba(255, 255, 255, .055);
    font-size: clamp(84px, 11vw, 150px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.07em;
}

.about-intro-heading .eyebrow {
    position: relative;
    z-index: 1;
    max-width: 520px;
    color: #b8ee9f !important;
    font-size: 19px;
    line-height: 1.45;
}

.about-intro-heading h2 {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    color: #ffffff !important;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.04;
}

.about-intro-copy {
    padding: 42px 44px 36px;
    border: 1px solid #cfddcb;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(247, 251, 246, .98));
    box-shadow: 0 18px 48px rgba(27, 61, 38, .08);
}

.about-intro-copy::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 0;
    width: 5px;
    height: 92px;
    border-radius: 0 5px 5px 0;
    background: linear-gradient(180deg, #6abd45, #43892b);
}

.about-intro-copy p {
    margin: 0;
    color: #48594e;
    font-size: 17.5px;
    line-height: 1.78;
}

.about-intro-copy p + p {
    margin-top: 20px;
}

.about-intro-copy p:first-child {
    color: #2f4436;
    font-size: 18.5px;
    font-weight: 720;
}


/* ==========================================================================
   v4.1.14-Beta — Incident de confidentialité : signalement
   ========================================================================== */

.privacy-incident-intro--featured {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(106, 189, 69, .12), transparent 30%),
        #ffffff;
}

.privacy-incident-intro--featured .privacy-incident-grid {
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    gap: 24px;
    align-items: stretch;
}

.privacy-intro-heading,
.privacy-intro-copy {
    position: relative;
    min-height: 310px;
    padding: 38px 38px 34px;
    border-radius: 24px;
}

.privacy-intro-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #285039;
    background:
        radial-gradient(circle at 90% 12%, rgba(151, 225, 116, .20), transparent 34%),
        linear-gradient(145deg, #173a25 0%, #214a30 100%);
    box-shadow: 0 20px 52px rgba(23, 58, 37, .14);
}

.privacy-intro-heading::after {
    content: "?";
    position: absolute;
    right: 28px;
    bottom: -38px;
    color: rgba(255, 255, 255, .05);
    font-size: 190px;
    line-height: 1;
    font-weight: 900;
}

.privacy-intro-heading .eyebrow {
    position: relative;
    z-index: 1;
    color: #b8ef9e !important;
    font-size: 19px;
    line-height: 1.4;
}

.privacy-intro-heading h2 {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    color: #ffffff !important;
    font-size: clamp(36px, 5vw, 52px);
}

.privacy-intro-copy {
    border: 1px solid #c9dac5;
    background:
        linear-gradient(145deg, #ffffff 0%, #f6faf4 100%);
    box-shadow: 0 16px 42px rgba(24, 59, 36, .07);
}

.privacy-intro-copy::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 0;
    width: 5px;
    height: 92px;
    border-radius: 0 5px 5px 0;
    background: linear-gradient(180deg, #6abd45, #43892b);
}

.privacy-intro-copy p {
    margin: 0;
    color: #47594d;
    font-size: 17.5px;
    line-height: 1.76;
}

.privacy-intro-copy p + p {
    margin-top: 20px;
}

.privacy-intro-copy p:last-child {
    padding: 17px 19px;
    border: 1px solid #d6e6d1;
    border-radius: 14px;
    background: #edf6e9;
    color: #334a3a;
    font-weight: 720;
}

.privacy-report-help .privacy-report-cards {
    gap: 22px;
}

.privacy-report-help .privacy-report-cards article {
    position: relative;
    min-height: 270px;
    padding: 32px 30px 30px;
    overflow: hidden;
    border: 1px solid #c8dac3;
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(106, 189, 69, .12), transparent 32%),
        #ffffff;
    box-shadow: 0 16px 40px rgba(25, 57, 36, .08);
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.privacy-report-help .privacy-report-cards article::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, #43892b, #6abd45, #9ade7c);
}

.privacy-report-help .privacy-report-cards article:hover {
    transform: translateY(-4px);
    border-color: #a9ca9f;
    box-shadow: 0 22px 50px rgba(25, 57, 36, .12);
}

.privacy-report-help .privacy-report-cards article > span {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 17px;
    background: #173a25;
    color: #c7f1b3;
    font-size: 15px;
    letter-spacing: 0;
}

.privacy-report-help .privacy-report-cards h3 {
    margin: 0 0 12px;
    color: #1f3928;
    font-size: 23px;
    line-height: 1.25;
}

.privacy-report-help .privacy-report-cards p {
    margin: 0;
    color: #4d5e53;
    font-size: 17px;
    line-height: 1.7;
}


/* ==========================================================================
   Responsive v4.1.14-Beta
   ========================================================================== */

@media (max-width: 900px) {
    .home-analysis-box,
    .about-intro-grid,
    .privacy-incident-intro--featured .privacy-incident-grid {
        grid-template-columns: 1fr;
    }

    .home-analysis-box {
        padding: 44px 36px;
    }

    .home-analysis-actions {
        min-height: auto;
    }

    .about-intro-heading {
        min-height: 300px;
    }

    .privacy-intro-heading,
    .privacy-intro-copy {
        min-height: auto;
    }

    .analysis-choice-section .analysis-process-grid::before {
        display: none;
    }
}

@media (max-width: 620px) {
    .home-analysis-box,
    .about-intro-heading,
    .about-intro-copy,
    .privacy-intro-heading,
    .privacy-intro-copy,
    .privacy-report-help .privacy-report-cards article,
    .analysis-choice-section .analysis-process-grid > div {
        padding-left: 24px;
        padding-right: 24px;
    }

    .home-analysis-box {
        padding-top: 38px;
        padding-bottom: 38px;
    }
}


/* ==========================================================================
   v4.1.15-Beta — Ajustements ciblés demandés
   ========================================================================== */


/* --------------------------------------------------------------------------
   Espace membre — boutons d'accès plus compacts et centrés
   -------------------------------------------------------------------------- */

.member-space-page .client-card-action {
    width: auto;
    min-width: 235px;
    max-width: 100%;
    min-height: 50px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 22px;
    justify-content: center;
    gap: 10px;
    text-align: center;
    border-radius: 999px;
}

.member-space-page .client-card-action b {
    flex: 0 0 auto;
}

.member-space-page .client-resources-section .client-section-head {
    display: flex;
    max-width: 920px;
    margin: 0 auto 34px;
    padding: 30px 34px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid #c7d8c2;
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 12%, rgba(106, 189, 69, .13), transparent 30%),
        linear-gradient(145deg, #ffffff 0%, #f3f8f1 100%);
    box-shadow: 0 16px 40px rgba(25, 60, 37, .07);
    text-align: center;
}

.member-space-page .client-resources-section .client-section-head > div {
    text-align: center;
}

.member-space-page .client-resources-section .client-section-head h2 {
    margin: 0 0 7px;
}

.member-space-page .client-resources-section .client-section-head .eyebrow {
    margin-bottom: 0;
}

.member-space-page .client-resources-section .client-section-head > p {
    max-width: 720px;
    margin: 0;
    padding: 14px 20px;
    border: 1px solid #d5e3d1;
    border-radius: 14px;
    background: #edf5e9;
    color: #45574b;
    font-size: 17.5px;
    line-height: 1.62;
    font-weight: 650;
    text-align: center;
}


/* --------------------------------------------------------------------------
   Accueil — bouton « Découvrir notre approche » centré
   -------------------------------------------------------------------------- */

.home-mutuelle-link {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}


/* --------------------------------------------------------------------------
   À propos — centrage de l'introduction
   -------------------------------------------------------------------------- */

.about-intro-heading {
    align-items: center;
    text-align: center;
}

.about-intro-heading .eyebrow,
.about-intro-heading h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* --------------------------------------------------------------------------
   À propos — raison d'être et valeurs plus rapprochées et cohérentes
   -------------------------------------------------------------------------- */

.about-purpose-section .section-head,
.about-values-section .section-head {
    display: flex;
    max-width: 940px;
    margin: 0 auto 42px;
    padding: 32px 34px;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    border: 1px solid #c7d8c2;
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 12%, rgba(106, 189, 69, .13), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(242,248,239,.96));
    box-shadow: 0 18px 44px rgba(27, 61, 38, .075);
    text-align: center;
}

.about-purpose-section .section-head > div,
.about-values-section .section-head > div {
    text-align: center;
}

.about-purpose-section .section-head h2,
.about-values-section .section-head h2 {
    margin: 0 0 8px;
}

.about-purpose-section .section-head .eyebrow,
.about-values-section .section-head .eyebrow {
    display: block;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-purpose-section .section-head > p,
.about-values-section .section-head > p {
    display: block;
    max-width: 760px;
    margin: 0;
    padding: 15px 20px;
    border: 1px solid #d1e0cd;
    border-left: 1px solid #d1e0cd;
    border-radius: 14px;
    background: #edf5e9;
    color: #405247;
    font-size: 17.5px;
    line-height: 1.62;
    font-weight: 650;
    text-align: center;
}

/* Titres des douze valeurs */
.about-values-section .about-value-index {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.about-values-section .value-card h3 {
    text-align: center;
}


/* --------------------------------------------------------------------------
   Nos services — panneau « Une approche complète » centré
   -------------------------------------------------------------------------- */

.services-intro-section .split > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-intro-section .split > div:first-child .eyebrow,
.services-intro-section .split > div:first-child h2 {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* --------------------------------------------------------------------------
   Analyse de dossier — « Ce que nous analysons »
   -------------------------------------------------------------------------- */

.cnesst-callout h2 {
    text-align: center;
}


/* --------------------------------------------------------------------------
   Analyse de dossier — entête des parcours plus compact et plus élégant
   -------------------------------------------------------------------------- */

.analysis-choice-section .section-head {
    display: flex;
    max-width: 940px;
    margin: 0 auto 38px;
    padding: 32px 34px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid #bfd5b8;
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 12%, rgba(106, 189, 69, .15), transparent 30%),
        linear-gradient(145deg, #ffffff 0%, #eef6eb 100%);
    box-shadow: 0 18px 46px rgba(24, 59, 36, .08);
    text-align: center;
}

.analysis-choice-section .section-head > div {
    text-align: center;
}

.analysis-choice-section .section-head .eyebrow {
    display: block;
    margin: 0 auto 8px;
    text-align: center;
}

.analysis-choice-section .section-head h2 {
    margin: 0;
    text-align: center;
}

.analysis-choice-section .section-head > p {
    max-width: 720px;
    margin: 0;
    padding: 14px 20px;
    border: 1px solid #d0e1cb;
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    color: #405247;
    font-size: 17.5px;
    line-height: 1.6;
    font-weight: 650;
    text-align: center;
}


/* --------------------------------------------------------------------------
   Analyse de dossier — Parcours 01 et Parcours 02
   -------------------------------------------------------------------------- */

.analysis-choice-section .analysis-choice-card {
    display: flex;
    flex-direction: column;
}

.analysis-choice-section .analysis-choice-kicker {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    padding: 9px 16px;
    font-size: 15px;
    letter-spacing: .09em;
    text-align: center;
}


/* --------------------------------------------------------------------------
   Analyse de dossier — étapes 01 / 02 / 03 centrées
   -------------------------------------------------------------------------- */

.analysis-choice-section .analysis-process-grid > div {
    text-align: center;
}

.analysis-choice-section .analysis-process-grid b {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.analysis-choice-section .analysis-process-grid h3 {
    text-align: center;
}


/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 700px) {
    .member-space-page .client-card-action {
        min-width: 0;
        width: min(100%, 290px);
    }

    .member-space-page .client-resources-section .client-section-head,
    .about-purpose-section .section-head,
    .about-values-section .section-head,
    .analysis-choice-section .section-head {
        padding: 26px 22px;
    }
}


/* ==========================================================================
   v4.1.16-Beta — Incident de confidentialité + Accueil
   ========================================================================== */


/* --------------------------------------------------------------------------
   Incident — panneau vert « Quand nous écrire »
   -------------------------------------------------------------------------- */

.privacy-intro-heading--organized {
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 44px 42px;
    text-align: center;
}

.privacy-intro-heading--organized::after {
    right: 18px;
    bottom: -52px;
    font-size: 220px;
}

.privacy-intro-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 38px;
    margin-bottom: 18px;
    padding: 8px 15px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(190, 239, 167, .26);
    border-radius: 999px;
    background: rgba(255, 255, 255, .075);
    color: #c8f2b4;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.privacy-intro-heading--organized h2 {
    margin: 0;
    text-align: center;
}

.privacy-intro-heading--organized .eyebrow {
    max-width: 520px;
    margin: 13px auto 0;
    color: #d2f2c3 !important;
    font-size: 19px;
    line-height: 1.45;
    text-align: center;
    text-transform: none;
    letter-spacing: 0;
}

.privacy-intro-divider {
    position: relative;
    z-index: 1;
    width: 74px;
    height: 3px;
    margin: 22px auto 19px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6abd45, #a9e88d);
}

.privacy-intro-helper {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto !important;
    color: #edf7e9 !important;
    font-size: 16.5px !important;
    line-height: 1.65 !important;
    text-align: center !important;
}


/* --------------------------------------------------------------------------
   Incident — entête de procédure centré
   -------------------------------------------------------------------------- */

.privacy-incident-process .privacy-process-head {
    display: flex;
    justify-content: center;
    margin-bottom: 34px;
    text-align: center;
}

.privacy-incident-process .privacy-process-head > div {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.privacy-incident-process .privacy-process-head .eyebrow {
    display: block;
    margin: 0 auto 8px;
    text-align: center;
}

.privacy-incident-process .privacy-process-head h2 {
    margin: 0;
    text-align: center;
}


/* --------------------------------------------------------------------------
   Incident — responsable de la protection : texte plus lisible
   -------------------------------------------------------------------------- */

.privacy-officer-kicker {
    font-size: 18px;
    line-height: 1.42;
}

.privacy-incident-contact .privacy-officer-note {
    max-width: 760px;
    font-size: 17px !important;
    line-height: 1.72;
}


/* --------------------------------------------------------------------------
   Accueil — introduction des services réunie dans un vrai panneau
   -------------------------------------------------------------------------- */

.home-services-section .home-services-head {
    display: block;
    max-width: 980px;
    margin: 0 auto 46px;
    padding: 34px 38px;
    border: 1px solid #c5d8bf;
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 10%, rgba(106, 189, 69, .14), transparent 30%),
        linear-gradient(145deg, #ffffff 0%, #f1f7ee 100%);
    box-shadow: 0 18px 46px rgba(27, 61, 38, .08);
    text-align: center;
}

.home-services-head-copy {
    max-width: 800px;
    margin: 0 auto;
}

.home-services-kicker {
    display: inline-flex;
    margin-bottom: 11px;
    padding: 8px 15px;
    border: 1px solid #c5dcbc;
    border-radius: 999px;
    background: #e8f3e3;
    color: #397b28;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
}

.home-services-section .home-services-head h2 {
    margin: 0;
    color: #173a25;
    font-size: clamp(38px, 4.6vw, 54px);
    line-height: 1.05;
}

.home-services-section .home-services-head p {
    max-width: 760px;
    margin: 16px auto 0;
    color: #4b5d50;
    font-size: 18px;
    line-height: 1.68;
    font-weight: 650;
    text-align: center;
}


/* Les numéros 01 à 07 ont été retirés des cartes de services. */
.home-service-cards h3 {
    margin-top: 8px;
}


/* --------------------------------------------------------------------------
   Accueil — « Notre façon de travailler »
   -------------------------------------------------------------------------- */

.home-approach-section {
    position: relative;
    overflow: hidden;
    padding-top: 84px;
    padding-bottom: 84px;
    background:
        radial-gradient(circle at 8% 12%, rgba(106, 189, 69, .17), transparent 29%),
        radial-gradient(circle at 94% 88%, rgba(160, 229, 128, .08), transparent 28%),
        linear-gradient(145deg, #102b1b 0%, #173a25 56%, #1d432b 100%) !important;
}

.home-approach-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -250px;
    right: -180px;
    border: 48px solid rgba(255, 255, 255, .025);
    border-radius: 50%;
    pointer-events: none;
}

.home-approach-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
    gap: 36px;
    align-items: stretch;
}

.home-approach-intro {
    display: flex;
    min-height: 100%;
    padding: 40px 38px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 8%, rgba(151, 224, 118, .15), transparent 34%),
        rgba(255, 255, 255, .055);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .11);
}

.home-approach-label {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(178, 231, 153, .25);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #b9ef9f;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .06em;
}

.home-approach-intro h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(37px, 4.5vw, 54px);
    line-height: 1.06;
}

.home-approach-intro p {
    max-width: 520px;
    margin: 23px 0 0;
    color: #deeadf;
    font-size: 18px;
    line-height: 1.7;
}

.home-approach-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-approach-steps > div {
    position: relative;
    display: flex;
    min-height: 245px;
    padding: 28px 26px 26px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .065);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .08);
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.home-approach-steps > div:hover {
    transform: translateY(-3px);
    border-color: rgba(170, 231, 142, .34);
    background: rgba(255, 255, 255, .09);
}

.home-approach-steps b {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    place-items: center;
    border: 1px solid rgba(179, 237, 153, .23);
    border-radius: 16px;
    background: #6abd45;
    color: #102b1b;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 9px 22px rgba(0, 0, 0, .12);
}

.home-approach-steps h3 {
    margin: 0 0 11px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.24;
}

.home-approach-steps p {
    margin: 0;
    color: #d4e3d7;
    font-size: 16.5px;
    line-height: 1.65;
}


/* --------------------------------------------------------------------------
   Accueil — Analyse sans frais intégrée sous l'approche, mais indépendante
   -------------------------------------------------------------------------- */

.home-analysis-under-approach {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.home-analysis-under-approach .home-analysis-box {
    grid-template-columns: minmax(0, 1fr) minmax(250px, .34fr);
    gap: 42px;
    padding: 38px 42px;
    border: 1px solid rgba(168, 224, 143, .55);
    background:
        radial-gradient(circle at 92% 14%, rgba(106, 189, 69, .18), transparent 30%),
        linear-gradient(145deg, #f9fcf7 0%, #e9f4e4 100%);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .15);
}

.home-analysis-under-approach .home-analysis-box::before {
    border-color: rgba(67, 137, 43, .055);
}

.home-analysis-under-approach .home-analysis-box h2 {
    color: #173a25 !important;
    font-size: clamp(32px, 4vw, 45px);
}

.home-analysis-under-approach .home-analysis-box .eyebrow {
    color: #43892b !important;
    font-size: 18px;
}

.home-analysis-under-approach .home-analysis-copy p {
    color: #4b5d50 !important;
    font-size: 17px;
}

.home-analysis-under-approach .home-analysis-actions {
    min-height: 150px;
    border-color: #c6dac0;
    background: rgba(255, 255, 255, .70);
}

.home-analysis-under-approach .home-analysis-actions small {
    color: #53645a !important;
    font-size: 14px;
}


/* --------------------------------------------------------------------------
   Responsive v4.1.16-Beta
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
    .home-approach-shell {
        grid-template-columns: 1fr;
    }

    .home-analysis-under-approach .home-analysis-box {
        grid-template-columns: 1fr;
    }

    .home-analysis-under-approach .home-analysis-actions {
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .privacy-intro-heading--organized,
    .home-services-section .home-services-head,
    .home-approach-intro,
    .home-analysis-under-approach .home-analysis-box {
        padding-left: 24px;
        padding-right: 24px;
    }

    .home-approach-steps {
        grid-template-columns: 1fr;
    }

    .home-approach-steps > div {
        min-height: auto;
    }

    .home-services-kicker {
        font-size: 13.5px;
    }
}


/* ==========================================================================
   v4.1.17-Beta — Rectangles de services, assistance et lisibilité FAQ/KB
   ========================================================================== */

/* --------------------------------------------------------------------------
   Accueil — 7 services en rectangles stylisés
   -------------------------------------------------------------------------- */

.home-services-section .home-service-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.home-services-section .home-service-cards article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr;
    column-gap: 26px;
    row-gap: 13px;
    min-height: 225px;
    padding: 32px 34px;
    align-items: center;
    border: 1px solid #c4d8bf;
    border-radius: 24px;
    background:
        radial-gradient(circle at 98% 5%, rgba(106, 189, 69, .14), transparent 30%),
        linear-gradient(145deg, #ffffff 0%, #f4f9f2 100%);
    box-shadow: 0 15px 38px rgba(24, 59, 36, .075);
}

.home-services-section .home-service-cards article::before {
    inset: 0 auto 0 0;
    width: 6px;
    height: auto;
    background: linear-gradient(180deg, #9be17b 0%, #6abd45 48%, #3e872c 100%);
}

.home-services-section .home-service-cards article::after {
    width: 190px;
    height: 190px;
    right: -105px;
    top: -110px;
    background: rgba(106, 189, 69, .075);
}

.home-services-section .home-service-cards article:hover {
    transform: translateY(-4px);
    border-color: #9ec995;
    box-shadow: 0 22px 52px rgba(24, 59, 36, .13);
}

.home-services-section .home-service-cards h3 {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    margin: 0;
    padding-right: 8px;
    color: #1a3825;
    font-size: 22px;
    line-height: 1.27;
}

.home-services-section .home-service-cards p {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    margin: 0;
    color: #4a5d50;
    font-size: 16.5px;
    line-height: 1.66;
}

.home-services-section .home-service-cards .info-button {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    min-width: 158px;
    min-height: 50px;
    margin: 0;
    padding: 12px 18px;
    white-space: nowrap;
}

/* Le septième service ferme la grille comme une grande signature. */
.home-services-section .home-service-cards article:nth-child(7) {
    grid-column: 1 / -1;
    min-height: 205px;
    background:
        radial-gradient(circle at 92% 20%, rgba(154, 226, 120, .19), transparent 28%),
        linear-gradient(135deg, #173a25 0%, #214a30 100%);
    border-color: #2f5b3d;
}

.home-services-section .home-service-cards article:nth-child(7) h3 {
    color: #ffffff;
}

.home-services-section .home-service-cards article:nth-child(7) p {
    color: #e5f0e6;
}

.home-services-section .home-service-cards article:nth-child(7) .info-button {
    background: #6abd45;
    color: #102b1b;
}

.home-services-section .home-service-cards article:nth-child(7) .info-button:hover {
    background: #ffffff;
    color: #173a25;
}


/* --------------------------------------------------------------------------
   À propos — centrage des quatre piliers
   -------------------------------------------------------------------------- */

.about-purpose-section .feature {
    text-align: center;
}

.about-purpose-section .about-feature-index--centered {
    display: grid;
    margin-left: auto;
    margin-right: auto;
}

.about-purpose-section .feature h3 {
    text-align: center;
}


/* --------------------------------------------------------------------------
   Nos services — intro, suppression des catégories et CTA CNESST
   -------------------------------------------------------------------------- */

.services-intro-section .split > div:first-child {
    min-height: 210px;
    padding: 30px 34px;
    border: 1px solid #c6d9c0;
    border-radius: 22px;
    background:
        radial-gradient(circle at 90% 10%, rgba(106, 189, 69, .14), transparent 31%),
        linear-gradient(145deg, #ffffff 0%, #f2f8ef 100%);
    box-shadow: 0 16px 40px rgba(24, 59, 36, .07);
}

.services-intro-section .split > div:first-child .eyebrow {
    max-width: 570px;
    margin: 0 auto;
    color: #367929;
    font-size: 21px;
    line-height: 1.42;
    text-align: center;
}

/* Les libellés 01—08 ont été retirés du HTML. On resserre donc le haut des cartes. */
.services-catalog-section .service-long article h3 {
    margin-top: 0;
}

.services-cnesst-section .services-cnesst-action {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-cnesst-section .services-cnesst-action > span,
.services-cnesst-section .services-cnesst-action > strong,
.services-cnesst-section .services-cnesst-action > p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.services-cnesst-section .services-cnesst-action > span {
    font-size: 18px;
    font-weight: 900;
}

.services-cnesst-section .services-cnesst-action > strong {
    display: block;
    margin-top: 9px;
    font-size: clamp(29px, 3.8vw, 42px);
    line-height: 1.06;
}

.services-cnesst-section .services-cnesst-action > p {
    max-width: 520px;
}

.services-cnesst-section .services-cnesst-action .btn {
    align-self: center;
    width: auto;
    min-width: 280px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
}


/* --------------------------------------------------------------------------
   Assistance — réponses/documentation plus assumé
   -------------------------------------------------------------------------- */

.support-resources-section .support-resources-head--featured {
    display: grid;
    max-width: 1040px;
    margin: 0 auto 34px;
    padding: 34px 38px;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
    border: 1px solid #c4d8bf;
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 10%, rgba(106, 189, 69, .15), transparent 29%),
        linear-gradient(145deg, #ffffff 0%, #f1f7ee 100%);
    box-shadow: 0 18px 46px rgba(25, 59, 36, .08);
}

.support-resources-head--featured > div {
    padding-right: 22px;
    border-right: 1px solid #d5e2d1;
}

.support-resources-head--featured .eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #43892b;
    font-size: 18px;
    line-height: 1.42;
}

.support-resources-head--featured h2 {
    margin: 0;
    color: #173a25;
    font-size: clamp(31px, 4vw, 43px);
}

.support-resources-head--featured > h3 {
    margin: 0;
    padding: 19px 21px;
    border: 1px solid #d4e3d0;
    border-radius: 16px;
    background: rgba(255, 255, 255, .70);
    color: #425549;
    font-size: 18px;
    line-height: 1.62;
    font-weight: 700;
}


/* --------------------------------------------------------------------------
   Assistance — intervention humaine : contenu rapproché, plus vivant
   -------------------------------------------------------------------------- */

.support-contact-section .support-contact-panel--featured {
    position: relative;
    display: grid;
    max-width: 1080px;
    min-height: 260px;
    padding: 36px 40px;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #2c5a3b;
    border-radius: 28px;
    background:
        radial-gradient(circle at 94% 10%, rgba(151, 226, 118, .17), transparent 30%),
        linear-gradient(140deg, #14321f 0%, #1b422a 100%);
    box-shadow: 0 24px 58px rgba(15, 43, 25, .18);
}

.support-contact-panel--featured::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -100px;
    bottom: -130px;
    border: 34px solid rgba(255, 255, 255, .035);
    border-radius: 50%;
    pointer-events: none;
}

.support-contact-panel--featured .support-contact-mark {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border: 1px solid rgba(201, 242, 182, .25);
    border-radius: 22px;
    background: #6abd45;
    color: #102b1b;
    font-size: 34px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
}

.support-contact-panel--featured h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: clamp(31px, 4vw, 42px);
}

.support-contact-panel--featured .eyebrow.light {
    display: block;
    margin: 0 0 12px;
    color: #b9ef9f;
    font-size: 17px;
    line-height: 1.4;
}

.support-contact-panel--featured p {
    max-width: 720px;
    margin: 0;
    color: #e2eee4;
    font-size: 17px;
    line-height: 1.68;
}

.support-contact-panel--featured .support-contact-button {
    position: relative;
    z-index: 1;
    min-width: 155px;
    justify-content: center;
    background: #ffffff;
    color: #173a25;
}

.support-contact-panel--featured .support-contact-button:hover {
    background: #6abd45;
    color: #102b1b;
}


/* --------------------------------------------------------------------------
   FAQ + Base de connaissances — contraste des articles
   -------------------------------------------------------------------------- */

.faq-pro-list details,
.kb-topic details {
    margin-bottom: 12px;
    padding: 20px 22px;
    border: 1px solid #c7d5c3;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 7px 20px rgba(24, 59, 36, .045);
}

.faq-pro-list details[open],
.kb-topic details[open] {
    border-color: #abcaa2;
    background: #f6faf4;
}

.faq-pro-list summary,
.kb-topic summary {
    color: #1b3624;
    font-weight: 900;
}

.faq-pro-list details p,
.kb-topic details p {
    margin-top: 14px;
    color: #33483b !important;
    font-size: 16.5px;
    line-height: 1.68;
}

.kb-topic {
    color: #273d30;
}

.kb-topic .eyebrow {
    color: #43892b;
}

.kb-topic h2 {
    color: #173a25;
}


/* --------------------------------------------------------------------------
   Responsive v4.1.17-Beta
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
    .home-services-section .home-service-cards {
        grid-template-columns: 1fr;
    }

    .home-services-section .home-service-cards article:nth-child(7) {
        grid-column: auto;
    }

    .support-resources-section .support-resources-head--featured {
        grid-template-columns: 1fr;
    }

    .support-resources-head--featured > div {
        padding-right: 0;
        padding-bottom: 20px;
        border-right: 0;
        border-bottom: 1px solid #d5e2d1;
    }

    .support-contact-section .support-contact-panel--featured {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .support-contact-panel--featured .support-contact-button {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 680px) {
    .home-services-section .home-service-cards article {
        display: flex;
        min-height: 0;
        padding: 28px 25px;
        flex-direction: column;
        align-items: stretch;
    }

    .home-services-section .home-service-cards .info-button {
        align-self: center;
        margin-top: 8px;
    }

    .support-contact-section .support-contact-panel--featured {
        display: flex;
        padding: 30px 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .support-contact-panel--featured p,
    .support-contact-panel--featured .eyebrow.light {
        text-align: center;
    }

    .services-cnesst-section .services-cnesst-action .btn {
        min-width: 0;
        width: min(100%, 320px);
    }
}


/* ==========================================================================
   v4.1.18-Beta — Espace membre + Assistance : continuité visuelle
   ========================================================================== */


/* --------------------------------------------------------------------------
   Espace membre — « Tout au même endroit » sur une seule ligne
   -------------------------------------------------------------------------- */

.member-space-page .client-intro-grid > div:first-child h2 {
    white-space: nowrap;
}


/* --------------------------------------------------------------------------
   Espace membre — disparition de l'ancien entête « Accès principaux »
   -------------------------------------------------------------------------- */

.member-space-page .client-services-section > .wrap {
    padding-top: 4px;
}


/* --------------------------------------------------------------------------
   Espace membre — Ressources + confidentialité réunies dans un même ensemble
   -------------------------------------------------------------------------- */

.member-support-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(106, 189, 69, .11), transparent 28%),
        linear-gradient(180deg, #f5f9f3 0%, #edf4e9 100%);
}

.member-support-shell {
    position: relative;
    padding: 38px;
    border: 1px solid #c2d6bc;
    border-radius: 30px;
    background:
        radial-gradient(circle at 95% 5%, rgba(106, 189, 69, .13), transparent 28%),
        #ffffff;
    box-shadow: 0 24px 62px rgba(24, 59, 36, .10);
}

.member-support-head {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

.member-support-head .eyebrow {
    display: block;
    margin: 0 0 8px;
    color: #43892b;
    text-align: center;
}

.member-support-head h2 {
    margin: 0;
    color: #173a25;
    font-size: clamp(34px, 4.5vw, 48px);
    text-align: center;
}

.member-support-head p {
    max-width: 700px;
    margin: 14px auto 0;
    color: #46584c;
    font-size: 17.5px;
    line-height: 1.65;
    font-weight: 650;
    text-align: center;
}

.member-support-layout {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(340px, 1.06fr);
    gap: 22px;
    align-items: stretch;
}

.member-support-resources {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.member-support-resources .client-resource-card {
    min-height: 145px;
    padding: 24px 26px;
    border: 1px solid #c7d8c2;
    border-radius: 20px;
    background:
        linear-gradient(145deg, #ffffff 0%, #f4f8f2 100%);
    box-shadow: 0 11px 28px rgba(25, 59, 36, .055);
}

.member-support-resources .client-resource-card:hover {
    border-color: #9fc897;
    box-shadow: 0 17px 36px rgba(25, 59, 36, .10);
}

.member-security-card {
    position: relative;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 24px;
    min-height: 100%;
    padding: 32px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #285338;
    border-radius: 24px;
    background:
        radial-gradient(circle at 96% 4%, rgba(151, 226, 118, .18), transparent 32%),
        linear-gradient(145deg, #15341f 0%, #1d452c 100%);
    box-shadow: 0 18px 44px rgba(18, 49, 29, .16);
}

.member-security-card::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -95px;
    bottom: -115px;
    border: 30px solid rgba(255, 255, 255, .035);
    border-radius: 50%;
}

.member-security-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border-radius: 20px;
    background: #6abd45;
    color: #102b1b;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
}

.member-security-copy {
    position: relative;
    z-index: 1;
}

.member-security-label {
    display: block;
    margin-bottom: 7px;
    color: #b8ed9f;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.member-security-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.18;
}

.member-security-card p {
    margin: 0;
    color: #e6f0e7;
    font-size: 16.5px;
    line-height: 1.67;
}

.member-security-button {
    display: inline-flex;
    width: auto;
    min-width: 205px;
    margin-top: 22px;
    justify-content: center;
    background: #ffffff;
    color: #173a25;
}

.member-security-button:hover {
    background: #6abd45;
    color: #102b1b;
}


/* --------------------------------------------------------------------------
   Assistance — cartes CRM / Cloud / Formulaires : identité centrée
   -------------------------------------------------------------------------- */

.support-services-section .support-service-card {
    text-align: center;
}

.support-services-section .support-service-card .support-icon {
    display: grid;
    margin-left: auto;
    margin-right: auto;
}

.support-services-section .support-service-card .support-kicker {
    display: block;
    text-align: center;
}

.support-services-section .support-service-card h3 {
    text-align: center;
}


/* --------------------------------------------------------------------------
   Assistance — documentation + relais humain dans une seule séquence
   -------------------------------------------------------------------------- */

.support-journey-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 8%, rgba(106, 189, 69, .12), transparent 27%),
        linear-gradient(180deg, #f4f8f2 0%, #eaf2e7 100%);
}

.support-journey-shell {
    position: relative;
    padding: 42px;
    border: 1px solid #c5d7bf;
    border-radius: 30px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 24px 62px rgba(24, 59, 36, .09);
}

.support-journey-head {
    max-width: 860px;
    margin: 0 auto 30px;
    text-align: center;
}

.support-journey-head .eyebrow {
    display: block;
    margin: 0 0 8px;
    color: #43892b;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
}

.support-journey-head h2 {
    margin: 0;
    color: #173a25;
    font-size: clamp(34px, 4.5vw, 48px);
    text-align: center;
}

.support-journey-head p {
    max-width: 720px;
    margin: 14px auto 0;
    color: #46584c;
    font-size: 17.5px;
    line-height: 1.64;
    font-weight: 650;
    text-align: center;
}

.support-resource-grid--connected {
    max-width: 1030px;
    margin: 0 auto;
}

.support-resource-grid--connected .support-resource-card {
    min-height: 150px;
    border-color: #c6d7c1;
    background:
        linear-gradient(145deg, #ffffff 0%, #f5f9f3 100%);
    box-shadow: 0 11px 28px rgba(25, 59, 36, .055);
}

.support-journey-transition {
    display: grid;
    max-width: 900px;
    margin: 28px auto;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
}

.support-journey-transition span {
    height: 1px;
    background: linear-gradient(90deg, transparent, #a8c79f);
}

.support-journey-transition span:last-child {
    background: linear-gradient(90deg, #a8c79f, transparent);
}

.support-journey-transition b {
    max-width: 470px;
    color: #55705d;
    font-size: 13.5px;
    line-height: 1.45;
    text-align: center;
}

.support-contact-panel--connected {
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(16, 45, 26, .17);
}

.support-contact-label {
    display: block;
    margin-bottom: 6px;
    color: #b9ef9f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}


/* --------------------------------------------------------------------------
   « La SST ne se résume pas à une inspection annuelle. »
   Le texte se trouve actuellement dans nos-services.php.
   -------------------------------------------------------------------------- */

.services-intro-section .split > div:first-child .eyebrow {
    font-size: 23px;
    line-height: 1.4;
}


/* --------------------------------------------------------------------------
   Responsive v4.1.18-Beta
   -------------------------------------------------------------------------- */

@media (max-width: 940px) {
    .member-support-layout {
        grid-template-columns: 1fr;
    }

    .member-security-card {
        min-height: 0;
    }
}

@media (max-width: 720px) {
    .member-space-page .client-intro-grid > div:first-child h2 {
        white-space: nowrap;
        font-size: clamp(29px, 8.5vw, 40px);
    }

    .member-support-shell,
    .support-journey-shell {
        padding: 28px 22px;
    }

    .member-security-card {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        text-align: center;
    }

    .member-security-icon {
        margin: 0 auto;
    }

    .member-security-button {
        margin-left: auto;
        margin-right: auto;
    }

    .support-journey-transition {
        grid-template-columns: 1fr;
    }

    .support-journey-transition span {
        display: none;
    }
}


/* ==========================================================================
   v4.1.19-Beta — Navigation + Portail d'assistance
   ========================================================================== */

.nav .nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #24442d;
    font-weight: 900;
}

.nav .nav-phone::before {
    content: "☎";
    color: #43892b;
    font-size: 15px;
}

.nav .support-nav {
    padding: 10px 14px;
    border: 1px solid #b9d5b1;
    border-radius: 10px;
    background: #edf6e9;
    color: #2f7022;
    box-shadow: 0 7px 18px rgba(67, 137, 43, .08);
}

.nav .support-nav:hover,
.nav .support-nav.active {
    border-color: #6abd45;
    background: #dff0d8;
    color: #285f1d;
}

.assistance-triage-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 7% 9%, rgba(106, 189, 69, .12), transparent 28%),
        linear-gradient(180deg, #f6f9f4 0%, #edf4ea 100%);
}

.assistance-triage-head {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.assistance-triage-head .eyebrow {
    display: block;
    margin-bottom: 8px;
    text-align: center;
}

.assistance-triage-head h2 {
    margin: 0;
    color: #173a25;
    font-size: clamp(36px, 4.8vw, 54px);
    line-height: 1.08;
    text-align: center;
}

.assistance-triage-head p {
    max-width: 760px;
    margin: 17px auto 0;
    color: #485a4e;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 620;
    text-align: center;
}

.assistance-triage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.assistance-triage-card {
    position: relative;
    display: flex;
    min-height: 430px;
    padding: 32px 30px 30px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #c4d7be;
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(106, 189, 69, .12), transparent 31%),
        linear-gradient(145deg, #ffffff 0%, #f5f9f3 100%);
    color: #1e3526;
    text-decoration: none;
    box-shadow: 0 18px 46px rgba(25, 59, 36, .085);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.assistance-triage-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 6px;
    background: linear-gradient(90deg, #43892b, #6abd45, #a4e686);
}

.assistance-triage-card:hover {
    transform: translateY(-5px);
    border-color: #9bc890;
    box-shadow: 0 26px 60px rgba(25, 59, 36, .14);
}

.assistance-triage-card--infra {
    border-color: #285238;
    background:
        radial-gradient(circle at 96% 4%, rgba(151, 225, 116, .18), transparent 31%),
        linear-gradient(145deg, #15351f 0%, #1d472d 100%);
    color: #ffffff;
}

.assistance-triage-card--infra::after {
    background: linear-gradient(90deg, #98df78, #6abd45);
}

.assistance-triage-number {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 17px;
    background: #173a25;
    color: #baf0a1;
    font-size: 15px;
    font-weight: 900;
}

.assistance-triage-card--infra .assistance-triage-number {
    background: #6abd45;
    color: #102b1b;
}

.assistance-triage-type {
    color: #43892b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.assistance-triage-card--infra .assistance-triage-type {
    color: #b8ed9f;
}

.assistance-triage-card h3 {
    margin: 10px 0 14px;
    color: #173a25;
    font-size: 25px;
    line-height: 1.24;
}

.assistance-triage-card--infra h3 {
    color: #ffffff;
}

.assistance-triage-card p {
    margin: 0 0 26px;
    color: #526157;
    font-size: 16.5px;
    line-height: 1.7;
}

.assistance-triage-card--infra p {
    color: #e4eee6;
}

.assistance-triage-action {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    min-height: 50px;
    margin-top: auto;
    padding: 12px 18px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    background: #e8f3e3;
    color: #2e7121;
    font-size: 15px;
    font-weight: 900;
}

.assistance-triage-card--infra .assistance-triage-action {
    background: rgba(255, 255, 255, .10);
    color: #d2f4c1;
}

.assistance-triage-action b {
    font-size: 18px;
}

.assistance-triage-note {
    display: grid;
    max-width: 980px;
    margin: 30px auto 0;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 20px 23px;
    align-items: center;
    border: 1px solid #c8d9c3;
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
    color: #46584c;
}

.assistance-triage-note strong {
    color: #173a25;
    white-space: nowrap;
}

.assistance-triage-note span {
    font-size: 15.5px;
    line-height: 1.55;
}

@media (max-width: 1180px) {
    .nav .nav-phone {
        font-size: 12px;
    }

    .nav .support-nav {
        padding: 9px 10px;
    }
}

@media (max-width: 980px) {
    .assistance-triage-grid {
        grid-template-columns: 1fr;
    }

    .assistance-triage-card {
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .assistance-triage-note {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .assistance-triage-note strong {
        white-space: normal;
    }
}


/* ==========================================================================
   v4.1.20-Beta — Centre d'assistance + retour en haut
   ========================================================================== */


/* --------------------------------------------------------------------------
   Navigation — Centre d'assistance complètement à droite et rouge
   -------------------------------------------------------------------------- */

/* Le téléphone a été retiré du HTML. */
.nav .nav-phone {
    display: none !important;
}

.nav .support-nav {
    order: 99;
    padding: 11px 15px;
    border: 1px solid #b72f37;
    border-radius: 10px;
    background: linear-gradient(145deg, #c83a42 0%, #a92630 100%);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(166, 37, 47, .20);
}

.nav .support-nav:hover,
.nav .support-nav.active {
    border-color: #8f1f27;
    background: linear-gradient(145deg, #b82e37 0%, #941f27 100%);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(143, 31, 39, .27);
}


/* --------------------------------------------------------------------------
   Assistance — textes justifiés
   -------------------------------------------------------------------------- */

.assistance-triage-head .assistance-triage-intro-text {
    text-align: justify;
    text-align-last: left;
}

.assistance-triage-card .assistance-triage-card-title {
    text-align: justify;
    text-align-last: left;
}


/* --------------------------------------------------------------------------
   Assistance — 01 / type centrés
   -------------------------------------------------------------------------- */

.assistance-triage-card .assistance-triage-number {
    margin-left: auto;
    margin-right: auto;
}

.assistance-triage-card .assistance-triage-type {
    display: block;
    width: 100%;
    text-align: center;
}


/* --------------------------------------------------------------------------
   Assistance — bouton CONTINUER centré
   -------------------------------------------------------------------------- */

.assistance-triage-card .assistance-triage-action {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* --------------------------------------------------------------------------
   Bouton global « Retour en haut »
   -------------------------------------------------------------------------- */

.back-to-top {
    --back-to-top-bottom: 24px;

    position: fixed;
    z-index: 8800;
    right: 24px;
    bottom: var(--back-to-top-bottom);
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(106, 189, 69, .50);
    border-radius: 14px;
    background: #173a25;
    color: #ffffff;
    font: inherit;
    font-size: 23px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 12px 30px rgba(15, 46, 27, .22);
    transition:
        opacity .18s ease,
        visibility .18s ease,
        transform .18s ease,
        bottom .2s ease,
        background .18s ease;
}

.back-to-top:hover {
    background: #6abd45;
    color: #102b1b;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top span {
    transform: translateY(-1px);
}

@media (max-width: 700px) {
    .back-to-top {
        right: 16px;
        width: 43px;
        height: 43px;
        border-radius: 13px;
        font-size: 21px;
    }
}


/* ==========================================================================
   v4.1.21-Beta — Pages détaillées de services
   ========================================================================== */

.service-page .service-hero .wrap {
    max-width: 1120px;
}

.service-page .service-hero h1 {
    max-width: 920px;
}

.service-page .service-hero .lead {
    max-width: 840px;
}

.service-hero-actions {
    display: flex;
    margin-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.service-intro-section {
    background:
        radial-gradient(circle at 8% 10%, rgba(106, 189, 69, .09), transparent 27%),
        #ffffff;
}

.service-intro-layout {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    gap: 54px;
    align-items: start;
}

.service-intro-title {
    position: sticky;
    top: 120px;
    padding: 32px;
    border: 1px solid #c8d9c3;
    border-radius: 26px;
    background:
        radial-gradient(circle at 92% 8%, rgba(106, 189, 69, .13), transparent 30%),
        linear-gradient(145deg, #f8fbf6 0%, #edf5e9 100%);
    box-shadow: 0 18px 44px rgba(24, 59, 36, .07);
}

.service-intro-title h2 {
    margin: 8px 0 0;
    color: #173a25;
    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.08;
}

.service-intro-copy {
    padding: 10px 0;
}

.service-intro-copy p {
    margin: 0 0 22px;
    color: #3f5146;
    font-size: 19px;
    line-height: 1.82;
    text-align: justify;
}

.service-section-head {
    max-width: 850px;
    margin-bottom: 34px;
}

.service-section-head.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.service-section-head.centered .eyebrow,
.service-section-head.centered h2,
.service-section-head.centered p {
    text-align: center;
}

.service-section-head h2 {
    margin: 7px 0 0;
    color: #173a25;
    font-size: clamp(34px, 4.3vw, 50px);
    line-height: 1.08;
}

.service-section-head p {
    max-width: 720px;
    margin: 14px auto 0;
    color: #4b5d50;
    font-size: 17px;
    line-height: 1.7;
}

.service-method-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-method-card {
    position: relative;
    min-height: 285px;
    padding: 28px 24px 25px;
    overflow: hidden;
    border: 1px solid #c7d8c2;
    border-radius: 22px;
    background:
        linear-gradient(145deg, #ffffff 0%, #f4f8f2 100%);
    box-shadow: 0 13px 34px rgba(25, 59, 36, .06);
}

.service-method-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, #43892b, #6abd45, #a8e98b);
}

.service-method-card > span {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 16px;
    background: #173a25;
    color: #bdf1a5;
    font-size: 14px;
    font-weight: 900;
}

.service-method-card h3 {
    margin: 0 0 11px;
    color: #173a25;
    font-size: 21px;
    line-height: 1.25;
}

.service-method-card p {
    margin: 0;
    color: #536259;
    font-size: 15.5px;
    line-height: 1.67;
}

.service-deliverable-layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 48px;
    align-items: stretch;
}

.service-photo-panel {
    min-height: 500px;
    overflow: hidden;
    border-radius: 28px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 24px 58px rgba(21, 52, 32, .15);
}

.service-deliverable-copy {
    display: flex;
    padding: 24px 0;
    flex-direction: column;
    justify-content: center;
}

.service-deliverable-copy h2 {
    margin: 7px 0 14px;
    color: #173a25;
    font-size: clamp(34px, 4.3vw, 50px);
    line-height: 1.08;
}

.service-deliverable-copy > p {
    margin: 0 0 20px;
    color: #4a5c50;
    font-size: 17.5px;
    line-height: 1.72;
}

.service-check-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.service-check-list li {
    position: relative;
    padding: 14px 16px 14px 46px;
    border: 1px solid #d2dfce;
    border-radius: 14px;
    background: #f6f9f4;
    color: #314639;
    font-size: 16px;
    line-height: 1.48;
    font-weight: 700;
}

.service-check-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 12px;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 8px;
    background: #6abd45;
    color: #102b1b;
    font-size: 13px;
    font-weight: 900;
}

.service-context-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-context-card {
    min-height: 190px;
    padding: 27px 26px;
    border: 1px solid #c8d8c4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(25, 59, 36, .055);
}

.service-context-card h3 {
    margin: 0 0 10px;
    color: #173a25;
    font-size: 21px;
}

.service-context-card p {
    margin: 0;
    color: #526159;
    font-size: 15.8px;
    line-height: 1.66;
}

.service-format-section {
    background:
        radial-gradient(circle at 90% 8%, rgba(106, 189, 69, .13), transparent 29%),
        #ffffff;
}

.service-format-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-format-grid article {
    min-height: 280px;
    padding: 34px;
    border: 1px solid #c6d8c0;
    border-radius: 24px;
    background:
        linear-gradient(145deg, #ffffff 0%, #f1f7ee 100%);
    box-shadow: 0 16px 40px rgba(24, 59, 36, .07);
}

.service-format-grid .service-format-card--dark {
    border-color: #285338;
    background:
        radial-gradient(circle at 96% 6%, rgba(153, 225, 120, .18), transparent 31%),
        linear-gradient(145deg, #15351f 0%, #1e482d 100%);
}

.service-format-label {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e6f3e0;
    color: #397b28;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.service-format-card--dark .service-format-label {
    background: rgba(255,255,255,.10);
    color: #b9eea0;
}

.service-format-grid h3 {
    margin: 18px 0 12px;
    color: #173a25;
    font-size: 28px;
}

.service-format-grid p {
    margin: 0;
    color: #4e6054;
    font-size: 17px;
    line-height: 1.7;
}

.service-format-card--dark h3 {
    color: #ffffff;
}

.service-format-card--dark p {
    color: #e4efe5;
}

.service-analysis-strip {
    padding-top: 0;
}

.service-analysis-strip-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    padding: 34px 38px;
    align-items: center;
    border: 1px solid #b9d3b0;
    border-radius: 26px;
    background:
        radial-gradient(circle at 94% 6%, rgba(106, 189, 69, .16), transparent 31%),
        linear-gradient(145deg, #f8fbf6 0%, #eaf4e5 100%);
}

.service-analysis-strip-inner h2 {
    margin: 6px 0 10px;
    color: #173a25;
    font-size: clamp(30px, 4vw, 43px);
}

.service-analysis-strip-inner p {
    margin: 0;
    color: #4d5f53;
    font-size: 16.5px;
}

.service-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 38px;
    padding: 40px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #285137;
    border-radius: 28px;
    background:
        radial-gradient(circle at 94% 5%, rgba(157, 227, 124, .16), transparent 30%),
        linear-gradient(145deg, #14341f 0%, #1d472c 100%);
    box-shadow: 0 22px 52px rgba(16, 46, 27, .15);
}

.service-cta-panel .eyebrow {
    color: #b8ed9f;
}

.service-cta-panel h2 {
    margin: 7px 0 12px;
    color: #ffffff;
    font-size: clamp(33px, 4vw, 47px);
    line-height: 1.08;
}

.service-cta-panel p {
    max-width: 720px;
    margin: 0;
    color: #e1ece3;
    font-size: 17px;
    line-height: 1.7;
}

.service-cta-actions {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    gap: 10px;
}

.service-cta-actions .btn {
    justify-content: center;
}

.service-cta-actions .ghost {
    border-color: rgba(255,255,255,.28);
    color: #ffffff;
}

.service-switcher-head {
    max-width: 820px;
    margin-bottom: 26px;
}

.service-switcher-head h2 {
    margin: 6px 0 0;
    color: #173a25;
    font-size: clamp(31px, 4vw, 44px);
}

.service-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.service-switcher a {
    display: flex;
    min-height: 68px;
    padding: 14px 18px;
    align-items: center;
    border: 1px solid #cbdac7;
    border-radius: 14px;
    background: #ffffff;
    color: #294331;
    font-weight: 850;
    text-decoration: none;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.service-switcher a:hover {
    transform: translateY(-2px);
    border-color: #9cc691;
    box-shadow: 0 10px 24px rgba(24, 59, 36, .07);
}

.service-switcher a.active {
    border-color: #6abd45;
    background: #e8f3e3;
    color: #2c6d20;
}


/* --------------------------------------------------------------------------
   Assistance infrastructure — cartes sans icônes + transition plus lisible
   -------------------------------------------------------------------------- */

.support-services-section .support-service-card {
    justify-content: flex-start;
    padding-top: 34px;
}

.support-services-section .support-service-card h3 {
    margin-top: 0;
}

.support-services-section .support-service-card .support-kicker {
    margin-top: 8px;
}

.support-journey-transition b {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 850;
}


/* --------------------------------------------------------------------------
   Responsive — pages services
   -------------------------------------------------------------------------- */

@media (max-width: 1020px) {
    .service-method-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-intro-layout,
    .service-deliverable-layout {
        grid-template-columns: 1fr;
    }

    .service-intro-title {
        position: static;
    }

    .service-photo-panel {
        min-height: 390px;
    }
}

@media (max-width: 760px) {
    .service-context-grid,
    .service-format-grid,
    .service-switcher {
        grid-template-columns: 1fr;
    }

    .service-analysis-strip-inner,
    .service-cta-panel {
        grid-template-columns: 1fr;
    }

    .service-cta-actions {
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .service-method-grid {
        grid-template-columns: 1fr;
    }

    .service-method-card {
        min-height: 0;
    }

    .service-intro-title,
    .service-format-grid article,
    .service-cta-panel {
        padding: 27px 23px;
    }

    .service-photo-panel {
        min-height: 300px;
    }
}


/* ==========================================================================
   v4.2.0-Beta — Refonte majeure de la navigation principale
   ========================================================================== */

/*
 * Le menu passe à une structure volontairement plus aérée :
 *
 *   - logo à gauche;
 *   - navigation corporative sur une première ligne;
 *   - accès rapides sur une seconde ligne;
 *   - séparation visuelle légère entre les deux niveaux.
 *
 * L'objectif est d'éviter l'effet « huit liens tassés sur une seule ligne »
 * tout en donnant davantage de présence aux accès importants.
 */

.header {
    height: 132px;
    border-bottom: 1px solid rgba(23, 58, 37, .08);
    background: rgba(255, 255, 255, .965);
    box-shadow: 0 10px 34px rgba(24, 59, 36, .055);
}

.nav {
    display: grid;
    height: 100%;
    grid-template-columns: 215px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
    justify-content: initial;
}

.nav .brand {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
}

.nav .brand::after {
    content: "";
    position: absolute;
    top: 27px;
    right: -24px;
    bottom: 27px;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(23, 58, 37, .12) 22%,
        rgba(23, 58, 37, .12) 78%,
        transparent
    );
}

.nav .brand img {
    width: 196px;
    max-width: 100%;
}

.nav .nav-panel {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 11px;
    align-content: center;
}


/* --------------------------------------------------------------------------
   Niveau 1 — navigation corporative
   -------------------------------------------------------------------------- */

.nav-primary {
    display: flex;
    min-height: 43px;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(22px, 2.7vw, 42px);
}

.nav-primary > a {
    position: relative;
    display: inline-flex;
    min-height: 40px;
    padding: 7px 0 10px;
    align-items: center;
    color: #314237;
    font-size: 15.5px;
    font-weight: 850;
    line-height: 1.2;
    white-space: nowrap;
    transition:
        color .18s ease,
        transform .18s ease;
}

.nav-primary > a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 2px;
    left: 50%;
    height: 3px;
    border-radius: 999px;
    background: #6abd45;
    transition:
        right .2s ease,
        left .2s ease;
}

.nav-primary > a:hover,
.nav-primary > a.active {
    color: #2f7422;
    transform: translateY(-1px);
}

.nav-primary > a:hover::after,
.nav-primary > a.active::after {
    right: 0;
    left: 0;
}


/* --------------------------------------------------------------------------
   Niveau 2 — accès rapides
   -------------------------------------------------------------------------- */

.nav-actions {
    display: flex;
    min-height: 53px;
    padding-top: 11px;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
    border-top: 1px solid #e7eee4;
}

.nav-actions > a {
    display: inline-flex;
    min-height: 42px;
    padding: 10px 16px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.nav-actions > a:hover {
    transform: translateY(-2px);
}


/* Espace membre — accès institutionnel foncé */
.nav .nav-actions .client {
    padding: 10px 17px;
    border: 1px solid #173a25;
    background:
        linear-gradient(145deg, #1d472c 0%, #14341f 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(20, 52, 31, .15);
}

.nav .nav-actions .client:hover,
.nav .nav-actions .client.active {
    border-color: #2f6940;
    background:
        linear-gradient(145deg, #245637 0%, #173a25 100%);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(20, 52, 31, .20);
}


/* Analyse CNESST — vert MPPME */
.nav .nav-actions .analysis-nav {
    padding: 10px 18px;
    border: 1px solid #58a939;
    background:
        linear-gradient(145deg, #76c856 0%, #5bb93e 100%);
    color: #102b1b;
    box-shadow: 0 8px 20px rgba(83, 161, 52, .18);
}

.nav .nav-actions .analysis-nav:hover,
.nav .nav-actions .analysis-nav.active {
    border-color: #43892b;
    background:
        linear-gradient(145deg, #69bd48 0%, #4fa535 100%);
    color: #0d2517;
    box-shadow: 0 10px 25px rgba(67, 137, 43, .23);
}


/* Centre d'assistance — rouge, volontairement identifiable */
.nav .nav-actions .support-nav {
    order: initial;
    padding: 10px 17px;
    border: 1px solid #b72f37;
    background:
        linear-gradient(145deg, #c83a42 0%, #a92630 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(166, 37, 47, .19);
}

.nav .nav-actions .support-nav:hover,
.nav .nav-actions .support-nav.active {
    border-color: #8f1f27;
    background:
        linear-gradient(145deg, #b82e37 0%, #941f27 100%);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(143, 31, 39, .26);
}


/* --------------------------------------------------------------------------
   Tablettes et petits ordinateurs
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) and (min-width: 1001px) {
    .nav {
        grid-template-columns: 175px minmax(0, 1fr);
        gap: 34px;
    }

    .nav .brand img {
        width: 166px;
    }

    .nav .brand::after {
        right: -18px;
    }

    .nav-primary {
        gap: 22px;
    }

    .nav-primary > a {
        font-size: 14px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 12.5px;
    }
}


/* --------------------------------------------------------------------------
   Menu mobile / tablette
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
    .header {
        height: 78px;
    }

    .nav {
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .nav .brand {
        height: auto;
    }

    .nav .brand::after {
        display: none;
    }

    .nav .brand img {
        width: 165px;
    }

    .menu {
        display: grid;
        width: 44px;
        height: 44px;
        padding: 0;
        place-items: center;
        border: 1px solid #d2dfce;
        border-radius: 13px;
        background: #f2f7ef;
        color: #173a25;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        transition:
            background .18s ease,
            border-color .18s ease;
    }

    .menu:hover {
        border-color: #a9cba1;
        background: #e7f2e2;
    }

    .nav .nav-panel {
        position: absolute;
        top: 78px;
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        max-height: calc(100vh - 78px);
        padding: 20px 22px 24px;
        overflow-y: auto;
        gap: 16px;
        border-top: 1px solid #edf2eb;
        border-bottom: 1px solid #dce7d8;
        background:
            radial-gradient(circle at 95% 5%, rgba(106, 189, 69, .11), transparent 28%),
            rgba(250, 252, 249, .985);
        box-shadow: 0 22px 45px rgba(23, 58, 37, .13);
        backdrop-filter: blur(16px);
    }

    .nav .nav-panel.open {
        display: grid;
    }

    .nav-primary,
    .nav-actions {
        display: flex;
        width: min(100%, 720px);
        margin: 0 auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 7px;
    }

    .nav-primary {
        min-height: 0;
    }

    .nav-primary > a {
        min-height: 46px;
        padding: 11px 14px;
        justify-content: flex-start;
        border-radius: 12px;
        color: #26392e;
        font-size: 15px;
    }

    .nav-primary > a::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        width: 4px;
        height: 0;
        transform: translateY(-50%);
        transition: height .18s ease;
    }

    .nav-primary > a:hover,
    .nav-primary > a.active {
        transform: none;
        background: #edf5e9;
        color: #2f7422;
    }

    .nav-primary > a:hover::after,
    .nav-primary > a.active::after {
        right: auto;
        left: 0;
        height: 24px;
    }

    .nav-actions {
        min-height: 0;
        padding-top: 15px;
        border-top: 1px solid #dfe9dc;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
        font-size: 14px;
        white-space: normal;
    }
}

@media (max-width: 460px) {
    .nav .brand img {
        width: 150px;
    }

    .nav .nav-panel {
        padding-right: 16px;
        padding-left: 16px;
    }
}


/* ==========================================================================
   v4.2.1-Beta — Navigation horizontale, une seule ligne
   ========================================================================== */

/*
 * Nouvelle direction :
 * - aucun menu à deux étages sur ordinateur;
 * - logo à gauche;
 * - navigation corporative au centre;
 * - trois accès rapides regroupés dans un « dock » discret à droite;
 * - passage au menu compact avant que les éléments commencent à se tasser.
 */

.header {
    height: 94px;
    border-bottom: 1px solid rgba(23, 58, 37, .08);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 8px 28px rgba(24, 59, 36, .055);
}

.header > .wrap.nav {
    width: min(1520px, calc(100% - 40px));
}

.nav {
    display: grid;
    height: 100%;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.nav .brand {
    display: flex;
    height: auto;
    align-items: center;
}

.nav .brand::after {
    display: none;
}

.nav .brand img {
    width: 178px;
    max-width: 100%;
}

.nav .nav-panel {
    display: flex;
    width: 100%;
    min-width: 0;
    gap: 25px;
    align-items: center;
    justify-content: flex-end;
}


/* --------------------------------------------------------------------------
   Navigation principale
   -------------------------------------------------------------------------- */

.nav-primary {
    display: flex;
    min-height: 0;
    flex: 0 1 auto;
    gap: clamp(18px, 1.75vw, 30px);
    align-items: center;
    justify-content: flex-end;
}

.nav-primary > a {
    position: relative;
    display: inline-flex;
    min-height: 45px;
    padding: 11px 0;
    align-items: center;
    color: #304137;
    font-size: 14.5px;
    font-weight: 850;
    line-height: 1.2;
    white-space: nowrap;
    transition:
        color .18s ease,
        transform .18s ease;
}

.nav-primary > a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 5px;
    left: 50%;
    height: 3px;
    border-radius: 999px;
    background: #6abd45;
    transition:
        right .18s ease,
        left .18s ease;
}

.nav-primary > a:hover,
.nav-primary > a.active {
    color: #327625;
    transform: translateY(-1px);
}

.nav-primary > a:hover::after,
.nav-primary > a.active::after {
    right: 0;
    left: 0;
}


/* --------------------------------------------------------------------------
   Accès rapides — un seul groupe, toujours sur la même ligne
   -------------------------------------------------------------------------- */

.nav-actions {
    display: flex;
    min-height: 0;
    flex: 0 0 auto;
    margin: 0;
    padding: 0 0 0 22px;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    border-top: 0;
    border-left: 1px solid #dfe8dc;
}

.nav-actions > a,
.nav .nav-actions .client,
.nav .nav-actions .analysis-nav,
.nav .nav-actions .support-nav {
    display: inline-flex;
    width: auto;
    min-height: 44px;
    margin: 0;
    padding: 10px 14px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 12.8px;
    font-weight: 900;
    line-height: 1.08;
    text-align: center;
    white-space: nowrap;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.nav-actions > a:hover {
    transform: translateY(-2px);
}


/* Espace membre — élégant, moins lourd visuellement */
.nav .nav-actions .client {
    border: 1px solid #b9cbbb;
    background: #ffffff;
    color: #173a25;
    box-shadow: 0 6px 16px rgba(22, 57, 34, .07);
}

.nav .nav-actions .client:hover,
.nav .nav-actions .client.active {
    border-color: #173a25;
    background: #173a25;
    color: #ffffff;
    box-shadow: 0 9px 22px rgba(20, 52, 31, .16);
}


/* Analyse CNESST — bouton vert compact à deux lignes internes */
.nav .nav-actions .analysis-nav {
    min-width: 128px;
    padding: 7px 15px;
    border: 1px solid #57aa39;
    background:
        linear-gradient(145deg, #76c956 0%, #5ab83e 100%);
    color: #102b1b;
    box-shadow: 0 7px 18px rgba(83, 161, 52, .18);
}

.nav .nav-actions .analysis-nav:hover,
.nav .nav-actions .analysis-nav.active {
    border-color: #43892b;
    background:
        linear-gradient(145deg, #68bd48 0%, #4fa536 100%);
    color: #0d2517;
    box-shadow: 0 10px 23px rgba(67, 137, 43, .23);
}

.nav-action-stack {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: center;
    justify-content: center;
}

.nav-action-main {
    display: block;
    font-size: 12.8px;
    font-weight: 950;
    line-height: 1.05;
}

.nav-action-stack small {
    display: block;
    font-size: 10.5px;
    font-weight: 850;
    line-height: 1;
    opacity: .82;
}


/* Centre d'assistance — rouge, clairement identifiable */
.nav .nav-actions .support-nav {
    order: initial;
    border: 1px solid #b72f37;
    background:
        linear-gradient(145deg, #c83a42 0%, #a92630 100%);
    color: #ffffff;
    box-shadow: 0 7px 18px rgba(166, 37, 47, .18);
}

.nav .nav-actions .support-nav:hover,
.nav .nav-actions .support-nav.active {
    border-color: #8f1f27;
    background:
        linear-gradient(145deg, #b72e37 0%, #941f27 100%);
    color: #ffffff;
    box-shadow: 0 10px 23px rgba(143, 31, 39, .25);
}


/* --------------------------------------------------------------------------
   Écrans de taille moyenne : on réduit légèrement avant de passer au menu.
   -------------------------------------------------------------------------- */

@media (max-width: 1380px) and (min-width: 1261px) {
    .header > .wrap.nav {
        width: min(1328px, calc(100% - 28px));
    }

    .nav {
        grid-template-columns: 166px minmax(0, 1fr);
        gap: 24px;
    }

    .nav .brand img {
        width: 160px;
    }

    .nav .nav-panel {
        gap: 19px;
    }

    .nav-primary {
        gap: 17px;
    }

    .nav-primary > a {
        font-size: 13.6px;
    }

    .nav-actions {
        padding-left: 17px;
        gap: 7px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 12px;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 117px;
    }

    .nav-action-main {
        font-size: 12px;
    }
}


/* --------------------------------------------------------------------------
   À 1260 px et moins : menu compact avant toute compression disgracieuse.
   -------------------------------------------------------------------------- */

@media (max-width: 1260px) {
    .header {
        height: 78px;
    }

    .header > .wrap.nav {
        width: min(1180px, calc(100% - 30px));
    }

    .nav {
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .nav .brand img {
        width: 165px;
    }

    .menu {
        display: grid;
        width: 44px;
        height: 44px;
        padding: 0;
        place-items: center;
        border: 1px solid #d1dfcd;
        border-radius: 13px;
        background: #f2f7ef;
        color: #173a25;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
    }

    .nav .nav-panel {
        position: absolute;
        top: 86px;
        right: 15px;
        left: auto;
        display: none;
        width: min(430px, calc(100vw - 30px));
        max-height: calc(100vh - 102px);
        padding: 18px;
        overflow-y: auto;
        gap: 14px;
        border: 1px solid #d7e3d3;
        border-radius: 20px;
        background:
            radial-gradient(circle at 95% 5%, rgba(106, 189, 69, .11), transparent 28%),
            rgba(252, 253, 251, .99);
        box-shadow: 0 24px 54px rgba(23, 58, 37, .18);
        backdrop-filter: blur(16px);
    }

    .nav .nav-panel.open {
        display: grid;
    }

    .nav-primary,
    .nav-actions {
        display: flex;
        width: 100%;
        min-height: 0;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 7px;
    }

    .nav-primary > a {
        min-height: 45px;
        padding: 11px 14px;
        justify-content: flex-start;
        border-radius: 11px;
        font-size: 15px;
    }

    .nav-primary > a::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        width: 4px;
        height: 0;
        transform: translateY(-50%);
        transition: height .18s ease;
    }

    .nav-primary > a:hover,
    .nav-primary > a.active {
        transform: none;
        background: #edf5e9;
    }

    .nav-primary > a:hover::after,
    .nav-primary > a.active::after {
        right: auto;
        left: 0;
        height: 24px;
    }

    .nav-actions {
        padding: 14px 0 0;
        border-top: 1px solid #dfe9dc;
        border-left: 0;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        width: 100%;
        min-height: 48px;
        padding: 12px 15px;
        font-size: 14px;
        white-space: normal;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 0;
    }

    .nav-action-main {
        font-size: 14px;
    }

    .nav-action-stack small {
        font-size: 11px;
    }
}

@media (max-width: 520px) {
    .header > .wrap.nav {
        width: calc(100% - 24px);
    }

    .nav .brand img {
        width: 150px;
    }

    .nav .nav-panel {
        right: 10px;
        width: calc(100vw - 20px);
        padding: 16px;
    }
}


/* ==========================================================================
   v4.2.2-Beta — Ajustements fins du menu
   ========================================================================== */


/* --------------------------------------------------------------------------
   Bureau — Centre d'assistance vraiment à l'extrême droite
   -------------------------------------------------------------------------- */

@media (min-width: 1261px) {
    .nav .nav-panel {
        flex: 1 1 auto;
    }

    .nav-actions {
        margin-left: auto;
    }

    .nav .nav-actions .support-nav {
        margin-left: 6px;
    }
}


/* --------------------------------------------------------------------------
   Analyse CNESST — équilibre visuel entre les deux lignes
   -------------------------------------------------------------------------- */

.nav-action-stack {
    min-width: 104px;
}

.nav-action-stack small {
    width: 100%;
    font-size: 12.4px;
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: .12em;
    text-align: center;
    opacity: .94;
}


/* --------------------------------------------------------------------------
   iPhone / mobile — panneau de menu recentré
   -------------------------------------------------------------------------- */

@media (max-width: 1260px) {
    .nav .nav-panel {
        right: auto;
        left: 50%;
        width: min(430px, calc(100vw - 30px));
        transform: translateX(-50%);
    }

    .nav-primary > a {
        justify-content: center;
        text-align: center;
    }

    .nav-primary > a::after {
        top: auto;
        right: 50%;
        bottom: 3px;
        left: 50%;
        width: auto;
        height: 3px;
        transform: none;
    }

    .nav-primary > a:hover::after,
    .nav-primary > a.active::after {
        right: 30%;
        left: 30%;
        height: 3px;
    }

    .nav-actions {
        align-items: center;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        justify-content: center;
        text-align: center;
    }

    .nav .nav-actions .support-nav {
        margin-left: 0;
    }
}

@media (max-width: 520px) {
    .nav .nav-panel {
        right: auto;
        left: 50%;
        width: calc(100vw - 24px);
        transform: translateX(-50%);
    }

    .nav-action-stack {
        min-width: 118px;
    }

    .nav-action-stack small {
        font-size: 13px;
        letter-spacing: .14em;
    }
}


/* ==========================================================================
   v4.2.3-Beta — Correction réelle du centrage iPhone
   ========================================================================== */

/*
 * Le vieux site.css applique encore à `.nav nav` :
 *
 *   justify-content: flex-end;
 *   margin-left: 28px;
 *   flex: 1;
 *
 * Sur ordinateur ces anciennes règles sont neutralisées par la nouvelle
 * navigation. Sur iPhone, le nav devient une grille et `justify-content:
 * flex-end` repoussait alors les COLONNES de la grille vers la droite.
 *
 * Le panneau était donc centré, mais tout son contenu était placé à droite.
 * On réinitialise ici explicitement ces anciennes propriétés.
 */


/* --------------------------------------------------------------------------
   Ordre des trois accès rapides sur ordinateur
   -------------------------------------------------------------------------- */

@media (min-width: 1261px) {
    .nav .nav-actions .analysis-nav {
        order: 1;
    }

    .nav .nav-actions .client {
        order: 2;
    }

    .nav .nav-actions .support-nav {
        order: 3;
        margin-left: 6px;
    }
}


/* --------------------------------------------------------------------------
   Mobile / iPhone — panneau ET contenu réellement centrés
   -------------------------------------------------------------------------- */

@media (max-width: 1260px) {
    .nav .nav-panel {
        /* Neutralise les anciens styles de `.nav nav` */
        flex: none;
        margin-left: 0;
        right: auto;
        left: 50%;
        width: min(400px, calc(100vw - 24px));
        justify-content: stretch;
        justify-items: stretch;
        align-items: stretch;
        transform: translateX(-50%);
    }

    .nav-primary,
    .nav-actions {
        width: min(100%, 340px);
        max-width: 340px;
        margin-right: auto;
        margin-left: auto;
        justify-self: center;
        align-items: stretch;
    }

    .nav-primary > a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        justify-content: center;
        text-align: center;
    }

    /* Même ordre logique sur téléphone : Analyse, Espace, Assistance. */
    .nav .nav-actions .analysis-nav {
        order: 1;
    }

    .nav .nav-actions .client {
        order: 2;
    }

    .nav .nav-actions .support-nav {
        order: 3;
    }
}

@media (max-width: 520px) {
    .nav .nav-panel {
        left: 50%;
        width: calc(100vw - 20px);
        margin-left: 0;
        transform: translateX(-50%);
    }

    .nav-primary,
    .nav-actions {
        width: min(100%, 324px);
        max-width: 324px;
    }
}


/* ==========================================================================
   v4.2.4-Beta — Menu resserré pour écrans de portable 13 po
   ========================================================================== */

/*
 * On garde le menu sur une seule ligne, mais on ramène les extrémités vers
 * l'intérieur et on réduit légèrement les espacements sur les portables.
 */

@media (min-width: 1261px) {
    .header > .wrap.nav {
        width: min(1420px, calc(100% - 52px));
    }

    .nav {
        grid-template-columns: 168px minmax(0, 1fr);
        gap: 26px;
    }

    .nav .brand img {
        width: 162px;
    }

    .nav .nav-panel {
        gap: 18px;
    }

    .nav-primary {
        gap: clamp(15px, 1.45vw, 24px);
    }

    .nav-primary > a {
        font-size: 14px;
    }

    .nav-actions {
        padding-left: 17px;
        gap: 7px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 12.25px;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 120px;
    }

    .nav-action-stack {
        min-width: 96px;
    }

    .nav-action-main {
        font-size: 12.25px;
    }

    .nav-action-stack small {
        font-size: 11.8px;
        letter-spacing: .10em;
    }
}

@media (max-width: 1365px) and (min-width: 1261px) {
    .header > .wrap.nav {
        width: calc(100% - 34px);
    }

    .nav {
        grid-template-columns: 154px minmax(0, 1fr);
        gap: 20px;
    }

    .nav .brand img {
        width: 150px;
    }

    .nav .nav-panel {
        gap: 14px;
    }

    .nav-primary {
        gap: 14px;
    }

    .nav-primary > a {
        font-size: 13.15px;
    }

    .nav-actions {
        padding-left: 13px;
        gap: 6px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        min-height: 42px;
        padding-right: 10px;
        padding-left: 10px;
        font-size: 11.65px;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 112px;
    }

    .nav-action-stack {
        min-width: 88px;
    }

    .nav-action-main {
        font-size: 11.65px;
    }

    .nav-action-stack small {
        font-size: 11.2px;
        letter-spacing: .08em;
    }

    .nav .nav-actions .support-nav {
        margin-left: 3px;
    }
}

@media (max-width: 1295px) and (min-width: 1261px) {
    .header > .wrap.nav {
        width: calc(100% - 24px);
    }

    .nav {
        grid-template-columns: 146px minmax(0, 1fr);
        gap: 16px;
    }

    .nav .brand img {
        width: 142px;
    }

    .nav-primary {
        gap: 11px;
    }

    .nav-primary > a {
        font-size: 12.65px;
    }

    .nav-actions {
        padding-left: 10px;
        gap: 5px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 11.2px;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 106px;
    }

    .nav-action-main {
        font-size: 11.2px;
    }

    .nav-action-stack small {
        font-size: 10.8px;
    }
}


/* ==========================================================================
   v4.2.5-Beta — Navigation encore plus compacte
   ========================================================================== */

/*
 * Ajustement demandé :
 * - réduire davantage les espaces entre les liens et les boutons;
 * - conserver un espace plus généreux entre le logo et « Accueil »;
 * - cet espace logo → navigation est environ deux fois supérieur
 *   à l'espacement utilisé entre les éléments du menu.
 */

@media (min-width: 1261px) {
    .header > .wrap.nav {
        width: min(1380px, calc(100% - 44px));
    }

    .nav {
        grid-template-columns: 154px minmax(0, 1fr);
        gap: 24px;
    }

    .nav .brand img {
        width: 150px;
    }

    .nav .nav-panel {
        gap: 10px;
    }

    .nav-primary {
        gap: 11px;
    }

    .nav-primary > a {
        font-size: 13.45px;
    }

    .nav-actions {
        padding-left: 11px;
        gap: 5px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        min-height: 41px;
        padding-right: 9px;
        padding-left: 9px;
        font-size: 11.55px;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 108px;
    }

    .nav-action-stack {
        min-width: 86px;
    }

    .nav-action-main {
        font-size: 11.55px;
    }

    .nav-action-stack small {
        font-size: 11px;
        letter-spacing: .075em;
    }

    .nav .nav-actions .support-nav {
        margin-left: 2px;
    }
}


/* Portable 13 po / écrans intermédiaires */
@media (max-width: 1365px) and (min-width: 1261px) {
    .header > .wrap.nav {
        width: calc(100% - 28px);
    }

    .nav {
        grid-template-columns: 148px minmax(0, 1fr);
        gap: 22px;
    }

    .nav .brand img {
        width: 144px;
    }

    .nav .nav-panel {
        gap: 9px;
    }

    .nav-primary {
        gap: 10px;
    }

    .nav-primary > a {
        font-size: 12.9px;
    }

    .nav-actions {
        padding-left: 10px;
        gap: 4px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 11.15px;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 103px;
    }

    .nav-action-stack {
        min-width: 82px;
    }

    .nav-action-main {
        font-size: 11.15px;
    }

    .nav-action-stack small {
        font-size: 10.7px;
        letter-spacing: .065em;
    }
}


/* Très près du point de bascule */
@media (max-width: 1295px) and (min-width: 1261px) {
    .header > .wrap.nav {
        width: calc(100% - 20px);
    }

    .nav {
        grid-template-columns: 142px minmax(0, 1fr);
        gap: 20px;
    }

    .nav .brand img {
        width: 138px;
    }

    .nav .nav-panel {
        gap: 8px;
    }

    .nav-primary {
        gap: 9px;
    }

    .nav-primary > a {
        font-size: 12.45px;
    }

    .nav-actions {
        padding-left: 9px;
        gap: 4px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        padding-right: 7px;
        padding-left: 7px;
        font-size: 10.9px;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 100px;
    }

    .nav-action-main {
        font-size: 10.9px;
    }

    .nav-action-stack small {
        font-size: 10.5px;
    }
}


/* ==========================================================================
   v4.2.6-Beta — Menu desktop réellement compact
   ========================================================================== */

/*
 * Cette correction remplace la logique précédente où `.nav-panel` occupait
 * tout l'espace disponible. Le logo, les liens et les boutons forment
 * maintenant un seul ensemble compact centré dans l'en-tête.
 *
 * L'espace logo → Accueil reste volontairement plus grand que les espaces
 * entre les liens et les boutons.
 */

@media (min-width: 1261px) {

    .header > .wrap.nav {
        width: min(1320px, calc(100% - 36px));
    }

    .nav {
        display: grid;
        grid-template-columns: 150px auto;
        column-gap: 24px;
        justify-content: center;
        align-items: center;
    }

    .nav .brand {
        width: 150px;
    }

    .nav .brand img {
        width: 148px;
        max-width: 148px;
    }

    .nav .nav-panel {
        display: flex;
        width: auto;
        min-width: 0;
        flex: 0 0 auto;
        margin: 0;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
    }

    .nav-primary {
        display: flex;
        flex: 0 0 auto;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
    }

    .nav-primary > a {
        min-height: 42px;
        padding: 10px 0;
        font-size: 13.2px;
    }

    .nav-actions {
        display: flex;
        flex: 0 0 auto;
        margin-left: 0;
        padding-left: 12px;
        gap: 5px;
        align-items: center;
        justify-content: flex-start;
        border-left: 1px solid #dfe8dc;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        min-height: 40px;
        margin-left: 0;
        padding: 8px 10px;
        font-size: 11.4px;
        border-radius: 11px;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 106px;
    }

    .nav-action-stack {
        min-width: 84px;
    }

    .nav-action-main {
        font-size: 11.4px;
    }

    .nav-action-stack small {
        font-size: 10.9px;
        letter-spacing: .07em;
    }

    .nav .nav-actions .support-nav {
        order: 3;
        margin-left: 0;
    }
}


/* Portable étroit : même structure compacte, avec quelques pixels de moins. */
@media (max-width: 1365px) and (min-width: 1261px) {

    .header > .wrap.nav {
        width: calc(100% - 24px);
    }

    .nav {
        grid-template-columns: 142px auto;
        column-gap: 20px;
    }

    .nav .brand {
        width: 142px;
    }

    .nav .brand img {
        width: 140px;
        max-width: 140px;
    }

    .nav .nav-panel {
        gap: 8px;
    }

    .nav-primary {
        gap: 8px;
    }

    .nav-primary > a {
        font-size: 12.55px;
    }

    .nav-actions {
        padding-left: 10px;
        gap: 4px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 10.95px;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 101px;
    }

    .nav-action-stack {
        min-width: 80px;
    }

    .nav-action-main {
        font-size: 10.95px;
    }

    .nav-action-stack small {
        font-size: 10.5px;
    }
}


/* ==========================================================================
   v4.2.7-Beta — Espacement symétrique des trois zones du menu
   ========================================================================== */

/*
 * Même distance entre :
 *   Logo → Accueil
 *   Nous joindre → Espace membre
 *
 * Aucun autre élément du site n'est modifié.
 */

@media (min-width: 1261px) {
    .nav {
        column-gap: 28px;
    }

    .nav .nav-panel {
        gap: 0;
    }

    .nav-actions {
        margin-left: 0;
        padding-left: 28px;
    }
}

/* Portable 13 po : même principe, légèrement resserré. */
@media (max-width: 1365px) and (min-width: 1261px) {
    .nav {
        column-gap: 24px;
    }

    .nav .nav-panel {
        gap: 0;
    }

    .nav-actions {
        margin-left: 0;
        padding-left: 24px;
    }
}


/* ==========================================================================
   v4.2.8-Beta — Correction visuelle du menu desktop
   ========================================================================== */

/*
 * La capture v4.2.7 montre que le groupe de navigation est devenu trop petit :
 * logo, liens et boutons sont tous réduits et concentrés au centre du header.
 *
 * Cette correction touche uniquement le menu desktop :
 * - logo plus présent;
 * - liens plus lisibles;
 * - boutons à une taille normale;
 * - trois zones clairement séparées;
 * - même espace entre Logo → Accueil et Nous joindre → Espace membre.
 *
 * Le comportement mobile/iPhone de la v4.2.7 est conservé tel quel.
 */

@media (min-width: 1261px) {
    .header {
        height: 92px;
    }

    .header > .wrap.nav {
        width: min(1380px, calc(100% - 40px));
    }

    .nav {
        display: grid;
        grid-template-columns: 176px auto auto;
        column-gap: 30px;
        justify-content: center;
        align-items: center;
    }

    .nav .brand {
        width: 176px;
    }

    .nav .brand img {
        width: 174px;
        max-width: 174px;
    }

    .nav .nav-panel {
        display: contents;
        width: auto;
        margin: 0;
    }

    .nav-primary {
        display: flex;
        flex: 0 0 auto;
        gap: 18px;
        align-items: center;
        justify-content: flex-start;
    }

    .nav-primary > a {
        min-height: 44px;
        padding: 10px 0;
        font-size: 14.4px;
        font-weight: 850;
    }

    .nav-actions {
        display: flex;
        flex: 0 0 auto;
        margin: 0;
        padding: 0;
        gap: 7px;
        align-items: center;
        justify-content: flex-start;
        border: 0;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        min-height: 44px;
        margin: 0;
        padding: 9px 13px;
        border-radius: 12px;
        font-size: 12.5px;
        line-height: 1.08;
    }

    .nav .nav-actions .client {
        min-width: 105px;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 118px;
    }

    .nav .nav-actions .support-nav {
        min-width: 132px;
        order: 3;
    }

    .nav-action-stack {
        min-width: 92px;
    }

    .nav-action-main {
        font-size: 12.5px;
    }

    .nav-action-stack small {
        font-size: 11.8px;
        letter-spacing: .07em;
    }
}


/* Portable 13 po : même structure, légèrement resserrée mais lisible. */
@media (max-width: 1365px) and (min-width: 1261px) {
    .header > .wrap.nav {
        width: calc(100% - 28px);
    }

    .nav {
        grid-template-columns: 164px auto auto;
        column-gap: 24px;
    }

    .nav .brand {
        width: 164px;
    }

    .nav .brand img {
        width: 162px;
        max-width: 162px;
    }

    .nav-primary {
        gap: 14px;
    }

    .nav-primary > a {
        font-size: 13.7px;
    }

    .nav-actions {
        gap: 6px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 11.9px;
    }

    .nav .nav-actions .client {
        min-width: 98px;
    }

    .nav .nav-actions .analysis-nav {
        min-width: 112px;
    }

    .nav .nav-actions .support-nav {
        min-width: 124px;
    }

    .nav-action-stack {
        min-width: 88px;
    }

    .nav-action-main {
        font-size: 11.9px;
    }

    .nav-action-stack small {
        font-size: 11.3px;
    }
}

/* ==========================================================================
   v4.2.9-Beta — Finition du menu desktop
   ========================================================================== */

/*
 * Ajustement strictement limité à la navigation sur ordinateur :
 * - un peu plus d'air de façon parfaitement symétrique entre
 *   Logo → Accueil et Nous joindre → Espace membre;
 * - les trois accès rapides ont exactement la même largeur et la même hauteur;
 * - le bouton Analyse CNESST est rééquilibré pour mieux ressortir;
 * - le logo est légèrement agrandi.
 */

@media (min-width: 1261px) {
    .nav {
        grid-template-columns: 184px auto auto;
        column-gap: 36px;
    }

    .nav .brand {
        width: 184px;
    }

    .nav .brand img {
        width: 182px;
        max-width: 182px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        width: 142px;
        min-width: 142px;
        max-width: 142px;
        min-height: 46px;
        height: 46px;
        padding: 7px 10px;
        box-sizing: border-box;
        justify-content: center;
        text-align: center;
    }

    .nav .nav-actions .analysis-nav {
        display: flex;
        align-items: center;
        background:
            linear-gradient(145deg, #78ca57 0%, #58b63c 100%);
    }

    .nav-action-stack {
        display: flex;
        width: 100%;
        min-width: 0;
        flex-direction: column;
        gap: 2px;
        align-items: center;
        justify-content: center;
    }

    .nav-action-main {
        width: 100%;
        font-size: 12.4px;
        line-height: 1.02;
        font-weight: 950;
        text-align: center;
        white-space: nowrap;
    }

    .nav-action-stack small {
        width: 100%;
        font-size: 11.7px;
        line-height: 1;
        font-weight: 950;
        letter-spacing: .045em;
        text-align: center;
        white-space: nowrap;
        opacity: .95;
    }
}

/* Portable 13 po : même symétrie et mêmes rectangles, légèrement resserrés. */
@media (max-width: 1365px) and (min-width: 1261px) {
    .nav {
        grid-template-columns: 170px auto auto;
        column-gap: 29px;
    }

    .nav .brand {
        width: 170px;
    }

    .nav .brand img {
        width: 168px;
        max-width: 168px;
    }

    .nav-actions > a,
    .nav .nav-actions .client,
    .nav .nav-actions .analysis-nav,
    .nav .nav-actions .support-nav {
        width: 132px;
        min-width: 132px;
        max-width: 132px;
        min-height: 44px;
        height: 44px;
        padding-right: 8px;
        padding-left: 8px;
    }

    .nav-action-main {
        font-size: 11.7px;
    }

    .nav-action-stack small {
        font-size: 11.1px;
        letter-spacing: .035em;
    }
}


/* ==========================================================================
   v4.2.14-Beta — Centre d'assistance : quatre chemins + membres actifs
   ========================================================================== */

/* Quatre cartes en 2 × 2 sur ordinateur pour une lecture plus naturelle. */
.assistance-triage-page .assistance-triage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
}

.assistance-triage-page .assistance-triage-card {
    min-height: 365px;
}

/* Quatrième carte : sobre et clairement orientée vers Nous joindre. */
.assistance-triage-card--other {
    border-color: #c5d4c1;
    background:
        radial-gradient(circle at 96% 4%, rgba(23, 58, 37, .08), transparent 31%),
        linear-gradient(145deg, #ffffff 0%, #eef4ec 100%);
}

.assistance-triage-card--other::after {
    background: linear-gradient(90deg, #173a25, #43892b, #6abd45);
}

.assistance-triage-card--other .assistance-triage-number {
    background: #173a25;
    color: #ffffff;
}

.assistance-triage-card--other .assistance-triage-action {
    background: #173a25;
    color: #ffffff;
}

/* Note d'orientation pour les visiteurs qui ne sont pas membres actifs. */
.assistance-member-routing-note {
    display: grid;
    max-width: 980px;
    margin: 30px auto 0;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    padding: 20px 23px;
    align-items: center;
    border: 1px solid #c8d9c3;
    border-radius: 18px;
    background:
        radial-gradient(circle at 96% 8%, rgba(106, 189, 69, .10), transparent 28%),
        #ffffff;
    color: #46584c;
    box-shadow: 0 10px 28px rgba(25, 59, 36, .05);
}

.assistance-member-routing-note strong {
    color: #173a25;
    white-space: nowrap;
}

.assistance-member-routing-note span {
    font-size: 15px;
    line-height: 1.55;
}

.assistance-member-routing-note a {
    display: inline-flex;
    min-height: 42px;
    padding: 10px 14px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #173a25;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .assistance-triage-page .assistance-triage-grid {
        grid-template-columns: 1fr;
    }

    .assistance-triage-page .assistance-triage-card {
        min-height: auto;
    }

    .assistance-member-routing-note {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .assistance-member-routing-note strong {
        white-space: normal;
    }

    .assistance-member-routing-note a {
        justify-self: center;
    }
}


/* ==========================================================================
   v4.2.15-Beta — Centre d'assistance : lecture horizontale et orientation
   ========================================================================== */


/* --------------------------------------------------------------------------
   En-tête de la section — plus large et plus respirant
   -------------------------------------------------------------------------- */

.assistance-triage-page .assistance-triage-head {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

.assistance-triage-page .assistance-triage-head h2 {
    max-width: none;
    white-space: nowrap;
}

.assistance-triage-page .assistance-triage-head .assistance-triage-intro-text {
    max-width: 1040px;
    margin-right: auto;
    margin-left: auto;
    font-size: 17.5px;
    line-height: 1.72;
}


/* --------------------------------------------------------------------------
   Les quatre choix deviennent une liste de grands rectangles horizontaux
   -------------------------------------------------------------------------- */

.assistance-triage-page .assistance-triage-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1100px;
    margin: 42px auto 0;
    gap: 14px;
}

.assistance-triage-page .assistance-triage-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) auto;
    min-height: 0;
    padding: 24px 26px;
    gap: 24px;
    align-items: center;
    border-radius: 20px;
}

.assistance-triage-page .assistance-triage-card::after {
    inset: 0 auto 0 0;
    width: 5px;
    height: auto;
}

.assistance-triage-page .assistance-triage-number {
    width: 58px;
    height: 58px;
    margin: 0;
    border-radius: 17px;
    align-self: center;
}

.assistance-triage-page .assistance-triage-type {
    display: block;
    width: auto;
    margin: 0 0 6px;
    text-align: left;
}

.assistance-triage-page .assistance-triage-card-title {
    margin: 0 0 7px;
    font-size: 22px;
    line-height: 1.25;
    text-align: left;
}

.assistance-triage-page .assistance-triage-card > p {
    max-width: 760px;
    margin: 0;
    font-size: 15.7px;
    line-height: 1.62;
    text-align: justify;
}

.assistance-triage-page .assistance-triage-action {
    min-width: 150px;
    margin: 0;
    align-self: center;
    justify-self: end;
}

.assistance-triage-page .assistance-triage-card--infra .assistance-triage-type,
.assistance-triage-page .assistance-triage-card--infra .assistance-triage-card-title,
.assistance-triage-page .assistance-triage-card--infra > p {
    text-align: left;
}


/* --------------------------------------------------------------------------
   Non-membre + danger immédiat — deux panneaux assumés et cohérents
   -------------------------------------------------------------------------- */

.assistance-routing-panels {
    display: grid;
    max-width: 1100px;
    margin: 30px auto 0;
    grid-template-columns: 1.08fr .92fr;
    gap: 16px;
}

.assistance-routing-panel {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    min-height: 210px;
    padding: 28px;
    align-items: start;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(24, 59, 36, .08);
}

.assistance-routing-panel::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -92px;
    width: 180px;
    height: 180px;
    border: 28px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    pointer-events: none;
}

.assistance-routing-panel--member {
    border: 1px solid #285238;
    background:
        radial-gradient(circle at 94% 5%, rgba(148, 222, 115, .18), transparent 30%),
        linear-gradient(145deg, #14341f 0%, #1d472c 100%);
    color: #ffffff;
}

.assistance-routing-panel--danger {
    border: 1px solid #dec5c7;
    border-left: 5px solid #b72f37;
    background:
        radial-gradient(circle at 94% 7%, rgba(183, 47, 55, .08), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #f8f3f3 100%);
    color: #27372d;
}

.assistance-routing-symbol {
    position: relative;
    z-index: 1;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    font-size: 23px;
    font-weight: 950;
}

.assistance-routing-panel--member .assistance-routing-symbol {
    background: #6abd45;
    color: #102b1b;
}

.assistance-routing-panel--danger .assistance-routing-symbol {
    background: #b72f37;
    color: #ffffff;
}

.assistance-routing-panel > div {
    position: relative;
    z-index: 1;
}

.assistance-routing-label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.assistance-routing-panel--member .assistance-routing-label {
    color: #b9ef9f;
}

.assistance-routing-panel--danger .assistance-routing-label {
    color: #a52d35;
}

.assistance-routing-panel h3 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.22;
}

.assistance-routing-panel--member h3 {
    color: #ffffff;
}

.assistance-routing-panel--danger h3 {
    color: #4b2024;
}

.assistance-routing-panel p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.66;
}

.assistance-routing-panel--member p {
    color: #e4eee6;
}

.assistance-routing-panel--danger p {
    color: #5d5556;
}

.assistance-routing-button {
    position: relative;
    z-index: 1;
    grid-column: 2;
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    margin-top: 18px;
    padding: 10px 15px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 11px;
    background: #ffffff;
    color: #173a25;
    font-size: 13.5px;
    font-weight: 900;
    text-decoration: none;
}

.assistance-routing-button:hover {
    background: #6abd45;
    color: #102b1b;
}

@media (max-width: 980px) {
    .assistance-triage-page .assistance-triage-head h2 {
        white-space: normal;
    }

    .assistance-triage-page .assistance-triage-card {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .assistance-triage-page .assistance-triage-action {
        grid-column: 2;
        justify-self: start;
        margin-top: 10px;
    }

    .assistance-routing-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .assistance-triage-page .assistance-triage-card {
        grid-template-columns: 1fr;
        padding: 24px 22px;
        text-align: center;
    }

    .assistance-triage-page .assistance-triage-number {
        margin-right: auto;
        margin-left: auto;
    }

    .assistance-triage-page .assistance-triage-type,
    .assistance-triage-page .assistance-triage-card-title,
    .assistance-triage-page .assistance-triage-card > p,
    .assistance-triage-page .assistance-triage-card--infra .assistance-triage-type,
    .assistance-triage-page .assistance-triage-card--infra .assistance-triage-card-title,
    .assistance-triage-page .assistance-triage-card--infra > p {
        text-align: center;
    }

    .assistance-triage-page .assistance-triage-action {
        grid-column: 1;
        justify-self: center;
    }

    .assistance-routing-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .assistance-routing-symbol {
        margin: 0 auto;
    }

    .assistance-routing-button {
        grid-column: 1;
        justify-self: center;
    }
}


/* ==========================================================================
   v4.2.17-Beta — Centre d'assistance : correction de structure
   ========================================================================== */

/*
 * Quatre VRAIS rectangles horizontaux, un sous l'autre :
 * numéro | contenu regroupé | action.
 * Cette section corrige la grille mal structurée de la version précédente.
 */

.assistance-triage-page .assistance-triage-section {
    padding-top: 70px;
    padding-bottom: 78px;
}

.assistance-triage-page .assistance-triage-head {
    max-width: 1200px;
    margin: 0 auto 38px;
    text-align: center;
}

.assistance-triage-page .assistance-triage-head h2 {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    white-space: nowrap;
    font-size: clamp(38px, 4.2vw, 52px);
}

.assistance-triage-page .assistance-triage-head .eyebrow {
    margin-top: 10px;
}

.assistance-triage-page .assistance-triage-head .assistance-triage-intro-text {
    max-width: 1080px;
    margin: 16px auto 0;
    font-size: 17.5px;
    line-height: 1.72;
    text-align: justify;
    text-align-last: center;
}


/* --------------------------------------------------------------------------
   4 choix — rectangles horizontaux
   -------------------------------------------------------------------------- */

.assistance-triage-page .assistance-triage-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: min(1180px, 100%);
    max-width: none;
    margin: 0 auto;
    gap: 14px;
}

.assistance-triage-page .assistance-triage-card {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 170px;
    min-height: 154px;
    padding: 24px 26px;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #c7d8c2;
    border-radius: 22px;
    background:
        radial-gradient(circle at 98% 4%, rgba(106, 189, 69, .10), transparent 25%),
        linear-gradient(145deg, #ffffff 0%, #f4f8f2 100%);
    box-shadow: 0 13px 34px rgba(25, 59, 36, .065);
    text-decoration: none;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.assistance-triage-page .assistance-triage-card::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    height: auto;
    background: linear-gradient(180deg, #43892b, #6abd45);
}

.assistance-triage-page .assistance-triage-card:hover {
    transform: translateY(-2px);
    border-color: #9cc791;
    box-shadow: 0 18px 42px rgba(25, 59, 36, .105);
}

.assistance-triage-page .assistance-triage-number {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0;
    place-items: center;
    align-self: center;
    border-radius: 17px;
    background: #173a25;
    color: #bdf1a5;
    font-size: 14px;
    font-weight: 950;
}

.assistance-triage-page .assistance-triage-card-content {
    min-width: 0;
}

.assistance-triage-page .assistance-triage-type {
    display: block;
    width: auto;
    margin: 0 0 5px;
    color: #43892b;
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: .08em;
    text-align: left;
    text-transform: uppercase;
}

.assistance-triage-page .assistance-triage-card-title {
    margin: 0 0 7px;
    color: #173a25;
    font-size: 22px;
    line-height: 1.22;
    text-align: left;
}

.assistance-triage-page .assistance-triage-card-content p {
    max-width: 800px;
    margin: 0;
    color: #536159;
    font-size: 15.6px;
    line-height: 1.62;
    text-align: justify;
}

.assistance-triage-page .assistance-triage-action {
    display: inline-flex;
    width: 160px;
    min-width: 160px;
    min-height: 48px;
    margin: 0;
    padding: 11px 14px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 9px;
    border-radius: 999px;
    background: #e8f3e3;
    color: #2f7422;
    font-size: 13px;
    font-weight: 950;
    text-align: center;
}

.assistance-triage-page .assistance-triage-action b {
    font-size: 17px;
}


/* Infrastructure : carte forte au milieu de la séquence */
.assistance-triage-page .assistance-triage-card--infra {
    border-color: #285238;
    background:
        radial-gradient(circle at 97% 4%, rgba(151, 226, 118, .17), transparent 27%),
        linear-gradient(145deg, #15351f 0%, #1d472d 100%);
}

.assistance-triage-page .assistance-triage-card--infra::after {
    background: linear-gradient(180deg, #9be17a, #6abd45);
}

.assistance-triage-page .assistance-triage-card--infra .assistance-triage-number {
    background: #6abd45;
    color: #102b1b;
}

.assistance-triage-page .assistance-triage-card--infra .assistance-triage-type {
    color: #b9ef9f;
}

.assistance-triage-page .assistance-triage-card--infra .assistance-triage-card-title {
    color: #ffffff;
}

.assistance-triage-page .assistance-triage-card--infra .assistance-triage-card-content p {
    color: #e3eee5;
}

.assistance-triage-page .assistance-triage-card--infra .assistance-triage-action {
    background: rgba(255, 255, 255, .11);
    color: #d4f5c4;
}


/* Autres demandes : distingue le chemin vers Nous joindre */
.assistance-triage-page .assistance-triage-card--other {
    border-color: #b9ceb3;
    background:
        radial-gradient(circle at 98% 4%, rgba(23, 58, 37, .07), transparent 25%),
        linear-gradient(145deg, #fbfdf9 0%, #edf4ea 100%);
}

.assistance-triage-page .assistance-triage-card--other::after {
    background: linear-gradient(180deg, #173a25, #43892b);
}

.assistance-triage-page .assistance-triage-card--other .assistance-triage-action {
    background: #173a25;
    color: #ffffff;
}


/* --------------------------------------------------------------------------
   Orientation sous les choix — intégrée au même rythme visuel
   -------------------------------------------------------------------------- */

.assistance-triage-page .assistance-routing-panels {
    display: grid;
    width: min(1180px, 100%);
    max-width: none;
    margin: 24px auto 0;
    grid-template-columns: 1.15fr .85fr;
    gap: 14px;
}

.assistance-triage-page .assistance-routing-panel {
    min-height: 190px;
}

.assistance-triage-page .assistance-routing-panel--member {
    box-shadow: 0 16px 38px rgba(18, 49, 29, .12);
}

.assistance-triage-page .assistance-routing-panel--danger {
    box-shadow: 0 14px 34px rgba(87, 41, 44, .07);
}


/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
    .assistance-triage-page .assistance-triage-head h2 {
        white-space: normal;
    }

    .assistance-triage-page .assistance-triage-head .assistance-triage-intro-text {
        text-align-last: left;
    }

    .assistance-triage-page .assistance-triage-card {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .assistance-triage-page .assistance-triage-action {
        grid-column: 2;
        justify-self: start;
        margin-top: 7px;
    }

    .assistance-triage-page .assistance-routing-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .assistance-triage-page .assistance-triage-section {
        padding-top: 52px;
        padding-bottom: 58px;
    }

    .assistance-triage-page .assistance-triage-card {
        grid-template-columns: 1fr;
        padding: 24px 22px;
        gap: 14px;
        text-align: center;
    }

    .assistance-triage-page .assistance-triage-number {
        margin: 0 auto;
    }

    .assistance-triage-page .assistance-triage-type,
    .assistance-triage-page .assistance-triage-card-title,
    .assistance-triage-page .assistance-triage-card-content p,
    .assistance-triage-page .assistance-triage-card--infra .assistance-triage-type,
    .assistance-triage-page .assistance-triage-card--infra .assistance-triage-card-title,
    .assistance-triage-page .assistance-triage-card--infra .assistance-triage-card-content p {
        text-align: center;
    }

    .assistance-triage-page .assistance-triage-action {
        grid-column: 1;
        justify-self: center;
        margin-top: 3px;
    }
}


/* ==========================================================================
   v4.2.19-Beta — Ajustements ciblés du Centre d'assistance
   ========================================================================== */

/* Vraie justification du paragraphe d'introduction.
   La règle text-align-last:center des versions précédentes empêchait
   visuellement le résultat demandé. */
.assistance-triage-page .assistance-triage-head .assistance-triage-intro-text {
    margin-top: 24px;
    text-align: justify !important;
    text-align-last: left !important;
}

/* Même vert MPPME pour les boutons d'action A-01 à A-04. */
.assistance-triage-page .assistance-triage-card .assistance-triage-action,
.assistance-triage-page .assistance-triage-card--infra .assistance-triage-action,
.assistance-triage-page .assistance-triage-card--other .assistance-triage-action {
    background: #6abd45;
    color: #102b1b;
}

.assistance-triage-page .assistance-triage-card:hover .assistance-triage-action {
    background: #5ab83e;
    color: #102b1b;
}

/* v4.4.1-Beta — le nouveau libellé du Centre d'assistance conserve le rectangle existant. */
@media (min-width: 1261px) {
    .nav .nav-actions .support-nav .nav-action-label {
        display: block;
        font-size: 10.2px;
        line-height: 1.02;
        text-align: center;
        white-space: normal;
    }
}


/* ==========================================================================
   v4.4.4-Beta — Espace membre : retour au fond pâle
   ========================================================================== */

.member-space-page {
    background: #edf3ea;
}

.member-space-page .client-intro {
    background:
        radial-gradient(circle at 92% 10%, rgba(106,189,69,.06), transparent 27%),
        #f2f6f0;
}

.member-space-page .client-services-section {
    background:
        radial-gradient(circle at 8% 8%, rgba(106,189,69,.065), transparent 28%),
        #e8efe5;
}

.member-space-page .member-support-section {
    background:
        radial-gradient(circle at 8% 10%, rgba(106, 189, 69, .09), transparent 28%),
        linear-gradient(180deg, #eef4eb 0%, #e6ede3 100%);
}

/* Le hero conserve volontairement le wallpaper MPPME. */
.member-space-page .client-hero {
    background:
        linear-gradient(90deg, rgba(8,32,20,.92), rgba(8,32,20,.64)),
        url('../img/wallpaper.jpg') center / cover no-repeat;
}


/* ==========================================================================
   v4.4.5-Beta — Espace membre : rythme vertical des sections
   ========================================================================== */

.member-space-page .client-services-section {
    padding-bottom: 42px;
}

.member-space-page .member-support-section {
    padding-top: 42px;
    padding-bottom: 92px;
}


/* ========================================================================== 
   v4.4.6-Beta — Nos services et Espace membre
   ========================================================================== */

.services-intro-section .split > div.services-intro-green-card {
    min-height:210px;
    border:1px solid #3f8c2d;
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.13), transparent 30%),
        linear-gradient(145deg,#5cab3d 0%,#438f2f 58%,#317123 100%);
    box-shadow:0 18px 44px rgba(53,120,37,.19);
}
.services-intro-section .split > div.services-intro-green-card::after { background:rgba(255,255,255,.10); }
.services-intro-section .split > div.services-intro-green-card .eyebrow { color:#fff !important; text-shadow:0 1px 0 rgba(0,0,0,.08); }

.services-page .service-long .services-cnesst-green-card {
    border:1px solid #3f8c2d !important;
    background:
        radial-gradient(circle at 91% 8%, rgba(255,255,255,.12), transparent 28%),
        linear-gradient(145deg,#5caf3d 0%,#438f2e 60%,#347624 100%) !important;
    box-shadow:0 20px 48px rgba(53,120,37,.22) !important;
}

/* Le vide Formulaires / Formation -> Ressources correspond maintenant au vide Ressources -> footer. */
.member-space-page .client-services-section { padding-bottom:46px !important; }
.member-space-page .member-support-section { padding-top:46px !important; padding-bottom:92px !important; }


/* ==========================================================================
   v4.4.7-Beta — Langage visuel des cartes MPPME
   Inspiré des deux cartes vertes de Nos Services.
   ========================================================================== */

/* Accents forts : mêmes verts / profondeur que Nos Services. */
.analysis-page .cnesst-callout,
.member-space-page .member-security-card,
.home-services-section .home-service-cards article:nth-child(7) {
    border: 1px solid #3f8c2d !important;
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,.13), transparent 30%),
        linear-gradient(145deg,#5cab3d 0%,#438f2f 58%,#317123 100%) !important;
    box-shadow: 0 20px 48px rgba(53,120,37,.21) !important;
}

/* Analyse CNESST : conserver une excellente lisibilité sur le vert vif. */
.analysis-page .cnesst-callout h2,
.analysis-page .cnesst-callout p,
.analysis-page .cnesst-callout strong {
    color: #ffffff !important;
}

.analysis-page .cnesst-callout strong {
    text-decoration-color: rgba(255,255,255,.55);
}

/* Espace membre : adapter l'icône et les textes au nouvel accent vert. */
.member-space-page .member-security-card .member-security-label {
    color: #f0f9ec;
}

.member-space-page .member-security-card h3,
.member-space-page .member-security-card p {
    color: #ffffff;
}

.member-space-page .member-security-card .member-security-icon {
    border: 1px solid rgba(255,255,255,.55);
    background: #173a25;
    color: #ffffff;
}

/* Accueil : 7e service = vrai accent MPPME plutôt qu'un vert presque noir. */
.home-services-section .home-service-cards article:nth-child(7) h3,
.home-services-section .home-service-cards article:nth-child(7) p {
    color: #ffffff;
}

.home-services-section .home-service-cards article:nth-child(7) .info-button {
    border: 1px solid rgba(255,255,255,.70);
    background: #173a25;
    color: #ffffff;
}

.home-services-section .home-service-cards article:nth-child(7) .info-button:hover {
    background: #ffffff;
    color: #173a25;
}

/* Cartes blanches assorties : même famille visuelle sans surcharger de vert. */
.about-purpose-section .feature,
.about-values-section .value-card,
.analysis-choice-section .analysis-choice-card,
.member-space-page .client-resource-card {
    border-color: #b5cbae !important;
    background:
        radial-gradient(circle at 96% 6%, rgba(106,189,69,.055), transparent 28%),
        linear-gradient(150deg,#ffffff 0%,#f7faf5 100%) !important;
    box-shadow:
        0 14px 36px rgba(26,60,37,.075),
        inset 0 0 0 1px rgba(255,255,255,.75);
}


/* ==========================================================================
   v4.4.10-Beta — FAQ / Base de connaissances : cartes vertes MPPME
   ========================================================================== */

/*
 * Même famille visuelle que la carte « Outils technologiques et services
 * aux membres » de l'accueil : vert profond, lumière verte discrète et
 * contraste élevé. On réduit ainsi les grandes surfaces blanches.
 */
.faq-pro-list details,
.kb-topic details {
    position: relative;
    margin-bottom: 13px;
    padding: 20px 22px;
    overflow: hidden;
    border: 1px solid #315c3d !important;
    border-radius: 16px;
    background:
        radial-gradient(circle at 94% 8%, rgba(151, 224, 118, .13), transparent 29%),
        linear-gradient(145deg, #173a25 0%, #214a30 100%) !important;
    box-shadow: 0 10px 28px rgba(18, 52, 30, .09);
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.faq-pro-list details:hover,
.kb-topic details:hover {
    transform: translateY(-1px);
    border-color: #5a9850 !important;
    box-shadow: 0 14px 32px rgba(18, 52, 30, .13);
}

.faq-pro-list details[open],
.kb-topic details[open] {
    border-color: #6abd45 !important;
    background:
        radial-gradient(circle at 94% 8%, rgba(169, 232, 137, .17), transparent 31%),
        linear-gradient(145deg, #1a4029 0%, #285638 100%) !important;
}

/* Le titre de chaque question est volontairement le vert lumineux MPPME. */
.faq-pro-list summary,
.kb-topic summary {
    color: #9ce57c !important;
    font-weight: 900;
    line-height: 1.4;
}

.faq-pro-list summary::marker,
.kb-topic summary::marker {
    color: #9ce57c;
}

.faq-pro-list details p,
.kb-topic details p {
    margin-top: 14px;
    color: #edf6e9 !important;
    font-size: 16px;
    line-height: 1.72;
    text-align: justify;
}

.faq-pro-list details a,
.kb-topic details a,
.faq-pro-list details strong,
.kb-topic details strong {
    color: #c7f1b4 !important;
}

/*
 * Le bloc de prise en charge était décalé complètement vers la droite par
 * l'ancien calcul calc(100% - 298px). Il est maintenant centré sous la base.
 */
.kb-articles-section .kb-help-panel--attached {
    width: min(960px, calc(100% - 40px)) !important;
    margin: 24px auto 0 !important;
    padding: 30px 32px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
}

.kb-articles-section .kb-help-panel--attached > div {
    min-width: 0;
}

.kb-articles-section .kb-help-panel--attached .eyebrow,
.kb-articles-section .kb-help-panel--attached h2 {
    text-align: left;
}

.kb-articles-section .kb-help-panel--attached p {
    max-width: 700px;
    text-align: justify;
}

@media (max-width: 760px) {
    .kb-articles-section .kb-help-panel--attached {
        width: calc(100% - 28px) !important;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .kb-articles-section .kb-help-panel--attached .eyebrow,
    .kb-articles-section .kb-help-panel--attached h2,
    .kb-articles-section .kb-help-panel--attached p {
        text-align: center;
    }

    .kb-articles-section .kb-help-panel--attached .btn {
        width: 100%;
    }
}


/* ============================================================
   Font Awesome Pro 5.13.0 — intégration locale SVG/JS
   Icônes seulement; aucune modification du contenu éditorial.
   ============================================================ */
.menu svg,
.back-to-top svg,
.contact-confirmation-check svg,
.client-service-icon svg,
.member-security-icon svg,
.client-resource-arrow svg,
.support-resource-arrow svg,
.assistance-v443-knowledge-action svg,
.contact-v443-knowledge-action svg,
.assistance-triage-action svg,
.assistance-routing-button svg,
.client-card-action svg,
.btn svg,
a svg {
    width: 0.95em;
    height: 0.95em;
    vertical-align: -0.08em;
}

.menu svg,
.back-to-top svg {
    width: 1em;
    height: 1em;
}

.client-card-action svg,
.client-resource-arrow svg,
.support-resource-arrow svg,
.assistance-v443-knowledge-action svg,
.contact-v443-knowledge-action svg,
.assistance-triage-action svg,
.assistance-routing-button svg,
.btn svg,
a svg {
    margin-left: 0.3em;
}

a > svg:first-child,
.btn > svg:first-child {
    margin-left: 0;
    margin-right: 0.3em;
}

.contact-confirmation-check svg,
.client-service-icon svg,
.member-security-icon svg {
    margin: 0;
}


/* ============================================================
   v4.4.17 — Analyse CNESST sans frais
   ============================================================ */
.analysis-form-page{background:#f7faf6}
.analysis-form-hero{position:relative;overflow:hidden}
.analysis-form-hero:after{content:"";position:absolute;right:-120px;bottom:-180px;width:480px;height:480px;border-radius:50%;background:rgba(106,189,69,.10);pointer-events:none}
.analysis-form-hero .wrap{position:relative;z-index:1}
.analysis-hero-pills{display:flex;flex-wrap:wrap;gap:9px;margin-top:24px}
.analysis-hero-pills span{display:inline-flex;align-items:center;gap:7px;padding:8px 12px;border:1px solid rgba(106,189,69,.28);border-radius:999px;background:rgba(255,255,255,.08);font-size:12px;font-weight:800}
.analysis-hero-pills svg{color:#7bd654}
.analysis-form-intro-section{background:#fff}
.analysis-form-intro{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);gap:48px;align-items:start}
.analysis-form-intro h2{color:#173a25;font-size:34px;margin:8px 0 16px}
.analysis-secure-cloud-note{display:grid;grid-template-columns:52px 1fr;gap:14px;align-items:start;margin-top:22px;padding:18px;border:1px solid #bcdcb3;border-radius:16px;background:linear-gradient(135deg,#f0f9ed,#fff)}
.analysis-secure-cloud-note>svg{width:30px;height:30px;color:#368d31;margin:4px auto}
.analysis-secure-cloud-note strong,.analysis-secure-cloud-note span{display:block}.analysis-secure-cloud-note strong{color:#173a25}.analysis-secure-cloud-note span{margin-top:5px;color:#58675d;font-size:13px;line-height:1.6}
.analysis-process-mini{display:grid;gap:10px}
.analysis-process-mini article{display:grid;grid-template-columns:48px 1fr;gap:15px;padding:17px 18px;border:1px solid #dae6d7;border-radius:14px;background:#f7faf6}
.analysis-process-mini article>b{display:grid;place-items:center;width:40px;height:40px;border-radius:12px;background:#173a25;color:#72d14e;font-size:12px}
.analysis-process-mini strong,.analysis-process-mini span{display:block}.analysis-process-mini strong{color:#173a25;font-size:15px}.analysis-process-mini span{margin-top:3px;color:#647168;font-size:12px;line-height:1.55}
.analysis-questionnaire-section{padding-top:70px}
.analysis-form-heading{display:grid;grid-template-columns:1fr minmax(300px,.65fr);gap:30px;align-items:end;margin-bottom:28px}
.analysis-form-heading h2{font-size:38px;color:#173a25;margin:7px 0 0}.analysis-form-heading p{color:#69756d;line-height:1.65}
.analysis-error-summary{margin:0 0 22px;padding:18px 20px;border:1px solid #e0a9a9;border-left:5px solid #b73a3a;border-radius:12px;background:#fff4f4;color:#772626}
.analysis-error-summary strong{display:flex;align-items:center;gap:8px}.analysis-error-summary ul{margin:10px 0 0;padding-left:22px}
.analysis-questionnaire{display:grid;gap:22px}
.analysis-form-section{display:grid;grid-template-columns:66px minmax(220px,.44fr) minmax(0,1fr);gap:24px;padding:30px;border:1px solid #d8e4d5;border-radius:20px;background:#fff;box-shadow:0 14px 38px rgba(23,58,37,.055)}
.analysis-section-number{display:grid;place-items:center;align-self:start;width:54px;height:54px;border-radius:16px;background:#173a25;color:#75d354;font-size:13px;font-weight:900;letter-spacing:.06em;box-shadow:0 8px 20px rgba(23,58,37,.18)}
.analysis-section-number svg{width:22px;height:22px}
.analysis-section-title{padding-top:4px}.analysis-section-title>span{font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:#469d35}.analysis-section-title h3{margin:7px 0 9px;color:#173a25;font-size:24px;line-height:1.15}.analysis-section-title p{margin:0;color:#68756d;font-size:13px;line-height:1.65}
.analysis-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.analysis-field{display:grid;gap:7px}.analysis-field.full,.analysis-choice-block.full,.analysis-consent.full,.analysis-cloud-reminder.full,.analysis-submit-row.full{grid-column:1/-1}
.analysis-field>span,.analysis-conditional-field>span{font-size:11px;font-weight:900;letter-spacing:.02em;color:#35473a}.analysis-field b,.analysis-consent b{color:#2d9130}
.analysis-field input,.analysis-field textarea,.analysis-choice-block input,.analysis-choice-block textarea{width:100%;box-sizing:border-box;border:1px solid #cbd8c8;border-radius:11px;background:#fbfdfb;color:#173a25;padding:12px 13px;font:600 14px/1.4 Nunito,Arial,sans-serif;outline:none;transition:border-color .18s,box-shadow .18s,background .18s}
.analysis-field input:focus,.analysis-field textarea:focus,.analysis-choice-block input:focus,.analysis-choice-block textarea:focus{border-color:#6abd45;background:#fff;box-shadow:0 0 0 4px rgba(106,189,69,.12)}
.analysis-field.has-error input,.analysis-consent.has-error{border-color:#c04b4b;background:#fff6f6}
.analysis-choice-block{margin:0;padding:17px 18px 18px;border:1px solid #d8e4d5;border-radius:14px;background:#f8fbf7}
.analysis-choice-block legend{padding:0 8px 0 0;font-size:13px;font-weight:900;color:#173a25}
.analysis-radio-row{display:flex;gap:10px;margin-top:8px}
.analysis-radio-row label{cursor:pointer}.analysis-radio-row input{position:absolute;opacity:0;pointer-events:none}
.analysis-radio-row span{display:inline-flex;min-width:62px;justify-content:center;padding:8px 14px;border:1px solid #bdcdb9;border-radius:999px;background:#fff;color:#506057;font-size:12px;font-weight:900;transition:.18s}
.analysis-radio-row input:checked+span{border-color:#3c9c36;background:#e8f6e4;color:#28782b;box-shadow:0 0 0 3px rgba(106,189,69,.10)}
.analysis-conditional-field{display:grid;gap:7px;margin-top:14px;padding-top:14px;border-top:1px dashed #cedbcb}.analysis-conditional-field[hidden]{display:none!important}
.analysis-consent{display:flex;gap:12px;align-items:flex-start;padding:16px 18px;border:1px solid #d3dfd0;border-radius:13px;background:#f8fbf7;color:#4f5e54;font-size:12px;line-height:1.65}.analysis-consent input{width:18px;height:18px;margin-top:2px;accent-color:#55aa3b;flex:0 0 auto}.analysis-consent a{font-weight:900;color:#287c2b}
.analysis-cloud-reminder{display:grid;grid-template-columns:42px 1fr;gap:12px;padding:16px 18px;border-radius:13px;background:#eaf6e6;border:1px solid #b9dab0}.analysis-cloud-reminder svg{width:24px;height:24px;color:#348f31;margin-top:2px}.analysis-cloud-reminder strong,.analysis-cloud-reminder span{display:block}.analysis-cloud-reminder strong{color:#173a25}.analysis-cloud-reminder span{margin-top:3px;color:#526159;font-size:12px;line-height:1.6}
.analysis-submit-row{display:flex;align-items:center;justify-content:space-between;gap:18px;padding-top:5px}.analysis-submit-row>div{display:flex;align-items:center;gap:8px;color:#6b776f;font-size:11px}.analysis-submit-row>div svg{color:#469d35}.analysis-submit{min-height:48px;padding-inline:22px}
.analysis-honeypot{position:absolute!important;left:-99999px!important;width:1px!important;height:1px!important;opacity:0!important}
@media(max-width:1000px){.analysis-form-intro{grid-template-columns:1fr}.analysis-form-heading{grid-template-columns:1fr}.analysis-form-section{grid-template-columns:58px 1fr}.analysis-fields{grid-column:1/-1}.analysis-section-title{grid-column:2}}
@media(max-width:720px){.analysis-form-section{grid-template-columns:1fr;padding:22px 18px}.analysis-section-number{width:46px;height:46px}.analysis-section-title{grid-column:1}.analysis-fields{grid-template-columns:1fr}.analysis-form-heading h2{font-size:31px}.analysis-form-intro h2{font-size:29px}.analysis-submit-row{align-items:stretch;flex-direction:column}.analysis-submit{width:100%}.analysis-radio-row{flex-wrap:wrap}}


/* ============================================================
   v4.4.19 — Analyse CNESST : lisibilité et présence visuelle
   ============================================================ */
.analysis-questionnaire-section{
    background:
        radial-gradient(circle at 8% 4%,rgba(106,189,69,.10),transparent 28%),
        radial-gradient(circle at 94% 26%,rgba(23,58,37,.06),transparent 25%),
        #eef5eb;
}
.analysis-form-heading{
    padding:24px 26px;
    border:1px solid #d3e1cf;
    border-radius:18px;
    background:linear-gradient(135deg,#ffffff 0%,#f4faf1 100%);
    box-shadow:0 10px 28px rgba(23,58,37,.05);
}
.analysis-form-heading p{font-size:14px;color:#536259}
.analysis-form-section{
    border-color:#cbdcc6;
    background:linear-gradient(145deg,#ffffff 0%,#fbfdf9 62%,#f2f8ef 100%);
    box-shadow:0 16px 40px rgba(23,58,37,.075);
}
.analysis-form-section:nth-of-type(even){
    background:linear-gradient(145deg,#f7fbf5 0%,#ffffff 52%,#eef7eb 100%);
}
.analysis-section-title{
    padding:14px 16px;
    border-left:4px solid #6abd45;
    border-radius:0 12px 12px 0;
    background:rgba(106,189,69,.075);
}
.analysis-section-title>span{font-size:11px}
.analysis-section-title h3{font-size:26px}
.analysis-section-title p{font-size:14px;color:#56665c}
.analysis-fields{gap:18px}
.analysis-field,
.analysis-choice-block{
    position:relative;
}
.analysis-field{
    padding:14px;
    border:1px solid #d9e5d5;
    border-radius:14px;
    background:rgba(255,255,255,.82);
}
.analysis-field>span,
.analysis-conditional-field>span{
    font-size:13px;
    line-height:1.35;
    color:#263a2c;
}
.analysis-field input,
.analysis-field textarea,
.analysis-field select,
.analysis-choice-block input,
.analysis-choice-block textarea,
.analysis-choice-block select{
    min-height:46px;
    border-color:#bdceb8;
    background:#fff;
    color:#173a25;
    padding:12px 13px;
    font-size:15px;
    font-weight:650;
}
.analysis-field textarea,
.analysis-choice-block textarea{min-height:116px;resize:vertical}
.analysis-field select{
    width:100%;
    box-sizing:border-box;
    border:1px solid #bdceb8;
    border-radius:11px;
    outline:none;
}
.analysis-field input:focus,
.analysis-field textarea:focus,
.analysis-field select:focus,
.analysis-choice-block input:focus,
.analysis-choice-block textarea:focus,
.analysis-choice-block select:focus{
    border-color:#58aa3e;
    box-shadow:0 0 0 4px rgba(106,189,69,.14);
}
.analysis-field-help{
    display:block;
    color:#65736a;
    font-size:12px;
    line-height:1.55;
    font-weight:650;
}
.analysis-choice-block{
    padding:20px;
    border-color:#cdddc9;
    background:linear-gradient(135deg,#f4f9f1,#ffffff);
}
.analysis-choice-block legend{
    font-size:14px;
    line-height:1.45;
    color:#173a25;
}
.analysis-radio-row span{
    min-width:76px;
    padding:10px 17px;
    font-size:13px;
}
.analysis-address-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    padding:18px;
    border:1px solid #bfd5b8;
    border-radius:16px;
    background:linear-gradient(135deg,#edf7e9 0%,#f9fcf7 100%);
}
.analysis-address-grid:before{
    content:"Adresse d’affaires";
    grid-column:1/-1;
    color:#2e8430;
    font-size:12px;
    line-height:1;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:2px;
}
.analysis-address-grid .analysis-field{
    background:#fff;
    border-color:#d2e0ce;
}
.analysis-form-section--final{
    background:linear-gradient(135deg,#f2f9ef,#ffffff);
}
.analysis-consent{font-size:13px}
.analysis-cloud-reminder span{font-size:13px}
.analysis-submit-row>div{font-size:12px}
@media(max-width:720px){
    .analysis-form-heading{padding:20px}
    .analysis-section-title h3{font-size:23px}
    .analysis-field{padding:12px}
    .analysis-address-grid{grid-template-columns:1fr;padding:14px}
}


/* ============================================================
   v4.4.20 — Analyse CNESST : confort visuel renforcé
   ============================================================ */
.analysis-intro,
.analysis-questionnaire-section{
    background:
      radial-gradient(circle at 10% 8%,rgba(106,189,69,.15),transparent 34%),
      radial-gradient(circle at 90% 38%,rgba(23,58,37,.10),transparent 30%),
      linear-gradient(180deg,#e7f0e3 0%,#f1f5ec 48%,#e5eee1 100%) !important;
}
.analysis-intro-grid{gap:34px}
.analysis-intro-copy>p,
.analysis-process-mini article span,
.analysis-secure-cloud-note span{
    font-size:15px !important;
    line-height:1.72 !important;
}
.analysis-process-mini article{
    background:rgba(255,255,255,.72) !important;
    border:1px solid #c8d9c3 !important;
    box-shadow:0 10px 24px rgba(23,58,37,.06);
}
.analysis-process-mini article strong{font-size:15px !important}
.analysis-form-heading{
    padding:30px 32px !important;
    background:linear-gradient(135deg,#dcebd6 0%,#f5f9f2 100%) !important;
    border:1px solid #bcd1b5 !important;
    box-shadow:0 16px 36px rgba(23,58,37,.09) !important;
}
.analysis-form-heading h2{
    font-size:34px !important;
    line-height:1.1 !important;
}
.analysis-form-heading p{
    max-width:700px;
    font-size:16px !important;
    line-height:1.65 !important;
    color:#435448 !important;
}
.analysis-form-section{
    padding:30px !important;
    border:1px solid #b8cdb2 !important;
    background:linear-gradient(145deg,#edf5e9 0%,#f9fbf7 52%,#e5f0e0 100%) !important;
    box-shadow:0 18px 44px rgba(23,58,37,.10) !important;
}
.analysis-form-section:nth-of-type(even){
    background:linear-gradient(145deg,#e5f0df 0%,#f8fbf6 52%,#dcebd6 100%) !important;
}
.analysis-section-title{
    padding:18px 20px !important;
    background:rgba(255,255,255,.58) !important;
    border-left:5px solid #58a83d !important;
}
.analysis-section-title>span{font-size:13px !important}
.analysis-section-title h3{font-size:28px !important}
.analysis-section-title p{
    font-size:15px !important;
    line-height:1.65 !important;
    color:#4d5d52 !important;
}
.analysis-fields{gap:20px !important}
.analysis-field{
    padding:17px !important;
    border:1px solid #c3d5bd !important;
    background:rgba(255,255,255,.76) !important;
    box-shadow:0 5px 14px rgba(23,58,37,.035);
}
.analysis-field>span,
.analysis-conditional-field>span{
    font-size:15px !important;
    line-height:1.45 !important;
    margin-bottom:9px !important;
}
.analysis-field input,
.analysis-field textarea,
.analysis-field select,
.analysis-choice-block input,
.analysis-choice-block textarea,
.analysis-choice-block select{
    min-height:50px !important;
    font-size:16px !important;
    padding:13px 14px !important;
}
.analysis-field textarea,
.analysis-choice-block textarea{min-height:132px !important}
.analysis-field-help{
    font-size:14px !important;
    line-height:1.55 !important;
    margin-top:8px !important;
}
.analysis-field--neq{
    width:min(100%,340px) !important;
    max-width:340px !important;
}
.analysis-field--neq input{
    width:100% !important;
    max-width:300px !important;
}
.analysis-address-grid{
    grid-template-columns:150px minmax(220px,.75fr) minmax(280px,1.45fr) !important;
    gap:18px !important;
    padding:24px !important;
    border:1px solid #afc8a7 !important;
    background:linear-gradient(135deg,#dcebd6 0%,#edf5e9 100%) !important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
}
.analysis-address-grid:before{
    font-size:14px !important;
    margin-bottom:4px !important;
}
.analysis-address-grid .analysis-field{padding:15px !important}
.analysis-address-grid .analysis-field.full{grid-column:3 / -1 !important}
.analysis-address-grid .analysis-field:nth-of-type(4){grid-column:1 / span 2}
.analysis-address-grid .analysis-field:nth-of-type(5){grid-column:3}
.analysis-address-grid .analysis-field:nth-of-type(6){grid-column:1 / span 2}
.analysis-address-grid .analysis-field:nth-of-type(7){grid-column:3}
.analysis-choice-block{
    padding:24px !important;
    background:linear-gradient(135deg,#dfeeda,#f7faf5) !important;
    border:1px solid #b8cdb2 !important;
}
.analysis-choice-block legend{
    font-size:16px !important;
    line-height:1.5 !important;
}
.analysis-radio-row span{
    min-width:88px !important;
    padding:12px 20px !important;
    font-size:15px !important;
}
.analysis-consent,
.analysis-cloud-reminder span,
.analysis-submit-row>div{
    font-size:14px !important;
    line-height:1.6 !important;
}
@media(max-width:900px){
    .analysis-address-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important}
    .analysis-address-grid .analysis-field.full,
    .analysis-address-grid .analysis-field:nth-of-type(4),
    .analysis-address-grid .analysis-field:nth-of-type(5),
    .analysis-address-grid .analysis-field:nth-of-type(6),
    .analysis-address-grid .analysis-field:nth-of-type(7){grid-column:auto !important}
    .analysis-address-grid .analysis-field:nth-of-type(3){grid-column:1/-1 !important}
}
@media(max-width:620px){
    .analysis-form-heading{padding:24px 20px !important}
    .analysis-form-heading h2{font-size:29px !important}
    .analysis-form-section{padding:20px 16px !important}
    .analysis-section-title h3{font-size:24px !important}
    .analysis-address-grid{grid-template-columns:1fr !important;padding:16px !important}
    .analysis-address-grid .analysis-field,
    .analysis-address-grid .analysis-field.full,
    .analysis-address-grid .analysis-field:nth-of-type(n){grid-column:1/-1 !important}
    .analysis-field--neq{max-width:100% !important}
    .analysis-field--neq input{max-width:100% !important}
}


/* ============================================================
   v4.4.21 — Analyse CNESST : correction adresse + lisibilité
   ============================================================ */
.analysis-form-heading--centered{
    display:block !important;
    text-align:center !important;
    max-width:920px;
    margin-left:auto;
    margin-right:auto;
    padding:34px 38px !important;
    background:
      radial-gradient(circle at 50% -20%,rgba(106,189,69,.22),transparent 45%),
      linear-gradient(135deg,#dbead5 0%,#f4f8f1 100%) !important;
}
.analysis-form-heading--centered .analysis-heading-mark{
    width:54px;
    height:54px;
    margin:0 auto 14px;
    display:grid;
    place-items:center;
    border-radius:16px;
    color:#fff;
    background:linear-gradient(145deg,#173a25,#2d7139);
    box-shadow:0 10px 24px rgba(23,58,37,.18);
}
.analysis-form-heading--centered .analysis-heading-mark svg{
    width:23px;
    height:23px;
}
.analysis-form-heading--centered h2{
    margin:0 !important;
    color:#173a25 !important;
    font-size:38px !important;
    letter-spacing:-.025em;
}
.analysis-form-heading--centered h2:after{
    content:"";
    display:block;
    width:74px;
    height:4px;
    border-radius:999px;
    margin:15px auto 16px;
    background:linear-gradient(90deg,#3d9937,#7bd557);
}
.analysis-form-heading--centered p{
    max-width:650px !important;
    margin:0 auto !important;
    text-align:center !important;
    font-size:16px !important;
}

/* The address lives inside the right-hand form column: keep it stable there. */
.analysis-address-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:16px !important;
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
}
.analysis-address-grid .analysis-field,
.analysis-address-grid .analysis-field:nth-of-type(n){
    grid-column:auto !important;
    width:auto !important;
    max-width:none !important;
    min-width:0 !important;
}
.analysis-address-grid .analysis-field:nth-of-type(3){
    grid-column:1/-1 !important;
}
.analysis-address-grid .analysis-field input,
.analysis-address-grid .analysis-field select{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
}
.analysis-field--neq{
    width:min(100%,310px) !important;
    max-width:310px !important;
    min-height:0 !important;
}
.analysis-field--neq input{
    max-width:270px !important;
}

/* Final consent / submission area */
.analysis-consent{
    font-size:16px !important;
    line-height:1.62 !important;
    padding:20px 22px !important;
}
.analysis-consent input{
    width:21px !important;
    height:21px !important;
}
.analysis-submit-row>div{
    font-size:15px !important;
    line-height:1.55 !important;
    max-width:58%;
}
.analysis-submit{
    font-size:16px !important;
    font-weight:900 !important;
    min-height:52px !important;
    padding:14px 22px !important;
}
@media(max-width:720px){
    .analysis-form-heading--centered{padding:28px 20px !important}
    .analysis-form-heading--centered h2{font-size:31px !important}
    .analysis-address-grid{grid-template-columns:1fr !important}
    .analysis-address-grid .analysis-field:nth-of-type(n){grid-column:1/-1 !important}
    .analysis-submit-row>div{max-width:none}
}
