:root {
    --green-black: #05130d;
    --green-dark: #092b1d;
    --green-deep: #0b3b28;
    --green-main: #168653;
    --green-medium: #2b9b66;
    --green-bright: #45ae78;
    --green-soft: #83c9a2;
    --green-pale: #e9f5ee;
    --mint: #b7e4cb;
    --white: #ffffff;
    --off-white: #f8faf8;
    --black: #101713;
    --grey-text: #606a64;
    --grey-light: #eef4f0;
    --border-light: #d6e3db;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--black);
    font-family: "Montserrat", Arial, sans-serif;
}

a {
    color: inherit;
}

button {
    font-family: "Montserrat", Arial, sans-serif;
}


/* =========================================
   BANNIÈRE DE DÉMONSTRATION
========================================= */

.demo-banner {
    position: relative;
    z-index: 3000;

    width: 100%;
    min-height: 39px;

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

    padding: 10px 15px;

    background: #f2c500;
    color: #111111;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;

    text-align: center;
}


/* =========================================
   EN-TÊTE
========================================= */

.site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background:
        linear-gradient(
            90deg,
            #06110d 0%,
            #0b241d 25%,
            #12352a 50%,
            #0b241d 75%,
            #06110d 100%
        );
}

.main-navbar {
    width: 100%;
    height: 88px;

    display: grid;

    grid-template-columns: 220px 1fr 260px;

    align-items: center;

    padding: 0 55px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.site-logo {
    color: var(--white);

    text-decoration: none;

    font-size: 2rem;
    font-weight: 700;

    letter-spacing: 0.3px;
}

.main-navigation {
    height: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    align-items: center;
}

.main-navigation > a {
    justify-self: center;

    color: var(--white);

    text-decoration: none;

    font-size: 1rem;
    font-weight: 500;

    transition:
        color 0.3s ease;
}

.main-navigation > a:hover {
    color: var(--mint);
}

.navbar-actions {
    display: flex;

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

    gap: 24px;

    color: var(--white);
}

.icon-button {
    width: 34px;
    height: 34px;

    display: flex;

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

    padding: 5px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.icon-button svg,
.language-selector svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: var(--white);
    stroke-width: 1.7;
}

.language-selector {
    display: flex;

    align-items: center;

    gap: 11px;

    font-size: 1rem;
    font-weight: 500;

    cursor: pointer;
}

.language-arrow {
    font-size: 0.75rem;
}


/* =========================================
   MÉGA-MENU
========================================= */

.nav-item-expertises {
    position: relative;
    z-index: 2200;

    width: max-content;
    height: 100%;

    justify-self: center;

    display: flex;

    align-items: center;
    justify-content: center;
}

.nav-link-expertises {
    position: relative;

    height: 100%;

    display: flex;

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

    padding: 0 5px;

    color: var(--white);

    text-decoration: none;

    font-size: 1rem;
    font-weight: 500;
}

.nav-link-expertises::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 17px;

    width: 0;
    height: 2px;

    background: var(--green-soft);

    transform:
        translateX(-50%);

    transition:
        width 0.3s ease;
}

.nav-item-expertises:hover
.nav-link-expertises::after,

.nav-item-expertises:focus-within
.nav-link-expertises::after {
    width: 100%;
}

.nav-item-expertises::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;
    height: 18px;

    background: transparent;
}

.expertises-mega-menu {
    position: fixed;

    top: 88px;
    left: 50%;

    width:
        min(
            1360px,
            calc(100vw - 60px)
        );

    display: grid;

    grid-template-columns: 0.8fr 1.9fr;

    gap: 30px;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid
        rgba(22, 134, 83, 0.25);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #f6faf7 0%,
            #ffffff 58%,
            #edf7f1 100%
        );

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.28);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(-12px)
        scale(0.985);

    transform-origin:
        top center;

    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        transform 0.38s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.nav-item-expertises:hover .expertises-mega-menu,
.nav-item-expertises:focus-within .expertises-mega-menu,
.nav-link-expertises:hover
+ .expertises-mega-menu,

.expertises-mega-menu:hover,

.nav-item-expertises.menu-open
.expertises-mega-menu {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0)
        scale(1);
}

.mega-menu-introduction {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 32px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            var(--green-dark),
            var(--green-main)
        );

    color: var(--white);
}

.mega-menu-eyebrow {
    margin: 0 0 17px;

    color: var(--mint);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 2.3px;
}

.mega-menu-introduction h2 {
    margin: 0 0 18px;

    font-size: 1.52rem;
    font-weight: 600;
    line-height: 1.35;
}

.mega-menu-introduction > p:not(.mega-menu-eyebrow) {
    margin: 0 0 26px;

    color:
        rgba(255, 255, 255, 0.74);

    font-size: 0.87rem;
    line-height: 1.7;
}

.mega-menu-main-link {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 14px 17px;

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.08);

    color: var(--white);

    text-decoration: none;

    font-size: 0.85rem;
    font-weight: 600;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.mega-menu-main-link:hover {
    background:
        rgba(131, 201, 162, 0.16);

    border-color:
        rgba(183, 228, 203, 0.6);
}

.mega-menu-links {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 12px;
}

.mega-menu-card {
    position: relative;

    min-height: 94px;

    display: grid;

    grid-template-columns:
        38px 1fr 25px;

    align-items: center;

    gap: 14px;

    padding: 17px;

    overflow: hidden;

    border:
        1px solid
        var(--border-light);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.96);

    color: var(--black);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.mega-menu-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(131, 201, 162, 0.16),
            transparent
        );

    transform:
        translateX(-130%);

    transition:
        transform 0.65s ease;
}

.mega-menu-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(22, 134, 83, 0.45);

    background: #f7fbf8;

    box-shadow:
        0 14px 30px
        rgba(9, 43, 29, 0.12);
}

.mega-menu-card:hover::before {
    transform:
        translateX(130%);
}

.mega-menu-card.active {
    border-color:
        rgba(22, 134, 83, 0.75);

    background:
        linear-gradient(
            120deg,
            #eaf7f0,
            #ffffff
        );
}

.mega-menu-number,
.mega-menu-card-text,
.mega-menu-arrow {
    position: relative;
    z-index: 2;
}

.mega-menu-number {
    color: var(--green-main);

    font-size: 0.78rem;
    font-weight: 800;
}

.mega-menu-card-text {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 6px;
}

.mega-menu-card-text strong {
    font-size: 0.89rem;
    font-weight: 650;
    line-height: 1.35;
}

.mega-menu-card-text small {
    color: #68736d;

    font-size: 0.69rem;
    line-height: 1.45;
}

.mega-menu-arrow {
    color: var(--green-main);

    font-size: 1.08rem;

    transition:
        transform 0.3s ease;
}

.mega-menu-card:hover
.mega-menu-arrow {
    transform:
        translateX(5px);
}


/* =========================================
   HERO BLANC
========================================= */

.safety-hero {
    position: relative;

    min-height: 680px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #ffffff 0%,
            #ffffff 53%,
            #f1f8f4 76%,
            #e8f5ee 100%
        );

    color: var(--black);
}

.safety-hero-decoration {
    position: absolute;

    top: -250px;
    right: -100px;

    width: 680px;
    height: 680px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(69, 174, 120, 0.16) 0%,
            rgba(131, 201, 162, 0.08) 45%,
            transparent 70%
        );

    pointer-events: none;
}

.safety-hero-container {
    position: relative;
    z-index: 2;

    width:
        min(
            1400px,
            92%
        );

    min-height: 680px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(400px, 0.92fr);

    align-items: center;

    gap: 55px;

    padding:
        65px 0 75px;
}

.safety-hero-text {
    position: relative;
    z-index: 4;

    max-width: 820px;
}

.breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 45px;

    color: #758078;

    font-size: 0.85rem;
}

.breadcrumb a {
    color: #758078;

    text-decoration: none;

    transition:
        color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--green-main);
}

.hero-eyebrow {
    margin: 0 0 17px;

    color: var(--green-main);

    font-size: 0.82rem;
    font-weight: 800;

    letter-spacing: 2.3px;
}

.safety-hero h1 {
    max-width: 860px;

    margin: 0 0 28px;

    color: var(--green-dark);

    font-size:
        clamp(
            3.1rem,
            4.8vw,
            5.2rem
        );

    font-weight: 700;
    line-height: 0.99;

    letter-spacing: -3.5px;
}

.safety-hero h1 span {
    color: var(--green-bright);
}

.hero-introduction {
    max-width: 710px;

    margin: 0 0 20px;

    color: var(--black);

    font-size: 1.17rem;
    font-weight: 500;
    line-height: 1.7;
}

.hero-description {
    max-width: 710px;

    margin: 0 0 35px;

    color: var(--grey-text);

    font-size: 0.98rem;
    line-height: 1.8;
}


/* =========================================
   VISUEL HERO
========================================= */

.safety-visual {
    position: relative;

    width: 100%;
    height: 530px;

    overflow: hidden;

    border:
        1px solid
        rgba(22, 134, 83, 0.2);

    border-radius:
        90px 24px 90px 24px;

    background:
        linear-gradient(
            145deg,
            #f8fbf9,
            #ffffff 55%,
            #e7f5ed
        );

    box-shadow:
        0 25px 60px
        rgba(9, 43, 29, 0.12);
}

.safety-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border:
        1px solid
        rgba(22, 134, 83, 0.17);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}

.safety-orbit-one {
    width: 180px;
    height: 180px;
}

.safety-orbit-two {
    width: 320px;
    height: 320px;
}

.safety-orbit-three {
    width: 470px;
    height: 470px;
}

.safety-shield {
    position: absolute;

    left: 50%;
    top: 50%;

    z-index: 1;

    width: 245px;
    height: 285px;

    display: flex;

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

    border:
        1px solid
        rgba(22, 134, 83, 0.16);

    background:
        linear-gradient(
            145deg,
            rgba(22, 134, 83, 0.08),
            rgba(131, 201, 162, 0.03)
        );

    clip-path:
        polygon(
            50% 0%,
            92% 16%,
            88% 67%,
            50% 100%,
            12% 67%,
            8% 16%
        );

    transform:
        translate(-50%, -50%);
}

.shield-inner {
    width: 135px;
    height: 155px;

    display: flex;

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

    background:
        linear-gradient(
            145deg,
            var(--green-main),
            var(--green-deep)
        );

    clip-path:
        polygon(
            50% 0%,
            92% 16%,
            88% 67%,
            50% 100%,
            12% 67%,
            8% 16%
        );

    opacity: 0.15;
}

.shield-check {
    color: var(--white);

    font-size: 3rem;
    font-weight: 700;
}

#scene-3d {
    position: absolute;

    inset: 0;

    z-index: 4;

    width: 100%;
    height: 100%;

    pointer-events: none;
}

#scene-3d canvas {
    display: block;

    width: 100%;
    height: 100%;
}

.loading-3d {
    position: absolute;

    left: 50%;
    bottom: 25px;

    z-index: 8;

    transform:
        translateX(-50%);

    padding:
        9px 15px;

    border:
        1px solid
        rgba(22, 134, 83, 0.16);

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.86);

    color: var(--green-dark);

    font-size: 0.72rem;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.loading-3d.hidden {
    opacity: 0;
    visibility: hidden;
}

.safety-label {
    position: absolute;
    z-index: 7;

    min-width: 135px;

    padding:
        14px 16px;

    border:
        1px solid
        rgba(22, 134, 83, 0.19);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.9);

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 12px 30px
        rgba(9, 43, 29, 0.1);
}

.safety-label span {
    display: block;

    margin-bottom: 7px;

    color: var(--green-main);

    font-size: 0.6rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.safety-label strong {
    color: var(--green-dark);

    font-size: 0.82rem;
    font-weight: 700;
}

.safety-label-one {
    top: 30px;
    left: 28px;
}

.safety-label-two {
    top: 130px;
    right: 25px;
}

.safety-label-two span {
    color: var(--green-bright);
}

.safety-label-three {
    left: 35px;
    bottom: 32px;
}


/* =========================================
   BOUTONS
========================================= */

.primary-button,
.secondary-button {
    position: relative;

    display: inline-flex;

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

    gap: 18px;

    overflow: hidden;

    border-radius: 6px;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.primary-button {
    padding:
        16px 26px;

    border:
        1px solid
        var(--green-main);

    background: var(--green-main);
    color: var(--white);

    box-shadow:
        0 15px 35px
        rgba(22, 134, 83, 0.21);
}

.primary-button::before,
.secondary-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -130%;

    width: 65%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent
        );

    transform:
        skewX(-22deg);

    transition:
        left 0.7s ease;
}

.primary-button span,
.secondary-button span {
    position: relative;
    z-index: 2;
}

.primary-button:hover,
.secondary-button:hover {
    transform:
        translateY(-4px);
}

.primary-button:hover {
    background: var(--green-bright);

    border-color: var(--green-bright);

    box-shadow:
        0 20px 45px
        rgba(69, 174, 120, 0.25);
}

.primary-button:hover::before,
.secondary-button:hover::before {
    left: 145%;
}

.button-arrow {
    font-size: 1.2rem;

    transition:
        transform 0.3s ease;
}

.primary-button:hover
.button-arrow {
    transform:
        translateX(6px);
}


/* =========================================
   INTRODUCTION
========================================= */

.safety-introduction {
    padding:
        105px 0;

    background:
        linear-gradient(
            105deg,
            var(--green-black),
            var(--green-deep),
            var(--green-main)
        );

    color: var(--white);
}

.safety-introduction-container {
    width:
        min(
            1350px,
            92%
        );

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        minmax(340px, 0.85fr)
        minmax(450px, 1.15fr);

    gap: 100px;
}

.section-label-light {
    color: var(--mint);
}

.safety-introduction-heading h2 {
    margin: 0;

    color: var(--white);

    font-size:
        clamp(
            2.3rem,
            3.8vw,
            4rem
        );

    font-weight: 600;
    line-height: 1.09;

    letter-spacing: -2px;
}

.safety-introduction-content > p {
    margin:
        0 0 22px;

    color:
        rgba(255, 255, 255, 0.74);

    font-size: 1.02rem;
    line-height: 1.85;
}

.safety-principles {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 34px;
}

.safety-principles article {
    padding: 22px;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius:
        5px 22px 5px 22px;

    background:
        rgba(255, 255, 255, 0.05);
}

.safety-principles span {
    display: block;

    margin-bottom: 32px;

    color: var(--green-soft);

    font-size: 0.76rem;
    font-weight: 800;
}

.safety-principles h3 {
    margin:
        0 0 11px;

    font-size: 1.02rem;
}

.safety-principles p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.81rem;
    line-height: 1.65;
}


/* =========================================
   SECTIONS GÉNÉRALES
========================================= */

.content-section {
    width:
        min(
            1400px,
            92%
        );

    margin:
        0 auto;

    padding:
        115px 0;
}

.section-heading {
    display: grid;

    grid-template-columns:
        75px
        minmax(0, 850px);

    gap: 30px;

    align-items: start;

    margin-bottom: 68px;
}

.section-number {
    margin:
        6px 0 0;

    color: var(--green-bright);

    font-size: 1rem;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-label {
    margin:
        0 0 12px;

    color: var(--green-main);

    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 2.2px;
}

.section-label-mint {
    color: var(--green-soft);
}

.section-heading h2 {
    margin: 0;

    font-size:
        clamp(
            2.3rem,
            4vw,
            4.2rem
        );

    font-weight: 600;
    line-height: 1.08;

    letter-spacing: -2px;
}


/* =========================================
   ENJEUX
========================================= */

.safety-needs-section {
    background: var(--white);
}

.safety-needs-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 18px;

    padding-left: 105px;
}

.safety-need-card {
    position: relative;

    min-height: 290px;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid
        var(--border-light);

    border-radius:
        24px 6px 24px 6px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f9fcfa
        );

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.safety-need-card::after {
    content: "";

    position: absolute;

    right: -55px;
    bottom: -55px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background:
        rgba(69, 174, 120, 0.09);

    transition:
        transform 0.4s ease;
}

.safety-need-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(22, 134, 83, 0.46);

    background:
        linear-gradient(
            145deg,
            var(--green-deep),
            var(--green-main)
        );

    color: var(--white);

    box-shadow:
        0 22px 50px
        rgba(9, 43, 29, 0.17);
}

.safety-need-card:hover::after {
    transform:
        scale(2.3);
}

.safety-need-number {
    position: relative;
    z-index: 2;

    display: block;

    color: var(--green-main);

    font-size: 0.79rem;
    font-weight: 800;
}

.safety-need-icon {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    display: flex;

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

    margin:
        33px 0 25px;

    border-radius: 50%;

    background: var(--green-pale);
    color: var(--green-main);

    font-size: 1.2rem;
    font-weight: 700;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.safety-need-card:hover
.safety-need-icon {
    background:
        rgba(255, 255, 255, 0.14);

    color: var(--white);
}

.safety-need-card h3 {
    position: relative;
    z-index: 2;

    margin:
        0 0 15px;

    font-size: 1.18rem;
    line-height: 1.35;
}

.safety-need-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--grey-text);

    font-size: 0.9rem;
    line-height: 1.72;

    transition:
        color 0.35s ease;
}

.safety-need-card:hover p {
    color:
        rgba(255, 255, 255, 0.75);
}


/* =========================================
   DOMAINES D’INTERVENTION
========================================= */

.safety-domains {
    background:
        linear-gradient(
            100deg,
            var(--green-black),
            var(--green-deep),
            var(--green-medium)
        );

    color: var(--white);
}

.safety-domains-container {
    width:
        min(
            1400px,
            92%
        );

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        minmax(320px, 0.78fr)
        minmax(0, 1.22fr);

    gap: 100px;

    padding:
        115px 0;
}

.safety-domains-heading {
    position: sticky;

    top: 120px;

    align-self: start;
}

.safety-domains-heading h2 {
    margin:
        0 0 24px;

    font-size:
        clamp(
            2.4rem,
            4vw,
            4.2rem
        );

    font-weight: 600;
    line-height: 1.08;

    letter-spacing: -2px;
}

.safety-domains-heading > p:last-child {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.7);

    line-height: 1.8;
}

.safety-domains-list {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.15);
}

.safety-domain {
    display: grid;

    grid-template-columns:
        55px minmax(0, 1fr);

    gap: 22px;

    padding:
        31px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.15);

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.safety-domain:hover {
    padding-left: 15px;

    background:
        linear-gradient(
            90deg,
            rgba(131, 201, 162, 0.12),
            transparent
        );
}

.safety-domain-number {
    color: var(--mint);

    font-size: 0.8rem;
    font-weight: 800;
}

.safety-domain h3 {
    margin:
        0 0 12px;

    font-size: 1.22rem;
}

.safety-domain p {
    max-width: 680px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.7);

    font-size: 0.93rem;
    line-height: 1.75;
}


/* =========================================
   MASE ET SSE
========================================= */

.safety-standards {
    padding:
        115px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #eff8f3
        );
}

.safety-standards-container {
    width:
        min(
            1400px,
            92%
        );

    margin:
        0 auto;
}

.safety-standards-heading {
    max-width: 920px;

    margin-bottom: 70px;
}

.safety-standards-heading h2 {
    margin: 0;

    color: var(--green-dark);

    font-size:
        clamp(
            2.4rem,
            4vw,
            4.2rem
        );

    font-weight: 600;
    line-height: 1.08;

    letter-spacing: -2px;
}

.safety-standards-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.standard-card {
    position: relative;

    min-height: 430px;

    padding:
        42px;

    overflow: hidden;

    border-radius: 18px;
}

.standard-card::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: -100px;

    width: 260px;
    height: 260px;

    border:
        1px solid
        currentColor;

    border-radius: 50%;

    opacity: 0.12;
}

.standard-card-primary {
    background:
        linear-gradient(
            145deg,
            var(--green-deep),
            var(--green-main)
        );

    color: var(--white);
}

.standard-card-secondary {
    border:
        1px solid
        rgba(22, 134, 83, 0.25);

    background: var(--white);
    color: var(--green-dark);
}

.standard-card-label {
    display: inline-flex;

    margin-bottom: 65px;

    padding:
        8px 13px;

    border:
        1px solid
        currentColor;

    border-radius: 30px;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 2px;
}

.standard-card h3 {
    position: relative;
    z-index: 2;

    margin:
        0 0 18px;

    font-size:
        clamp(
            1.8rem,
            2.6vw,
            2.7rem
        );

    line-height: 1.15;
}

.standard-card p {
    position: relative;
    z-index: 2;

    max-width: 570px;

    margin:
        0 0 28px;

    line-height: 1.75;
}

.standard-card-primary p,
.standard-card-primary li {
    color:
        rgba(255, 255, 255, 0.75);
}

.standard-card-secondary p,
.standard-card-secondary li {
    color: var(--grey-text);
}

.standard-card ul {
    position: relative;
    z-index: 2;

    margin: 0;

    padding-left: 20px;
}

.standard-card li {
    margin-bottom: 10px;

    line-height: 1.55;
}


/* =========================================
   MÉTHODE
========================================= */

.safety-method {
    padding:
        115px 0;

    background:
        linear-gradient(
            105deg,
            var(--green-black),
            var(--green-deep)
        );

    color: var(--white);
}

.safety-method-container {
    width:
        min(
            1400px,
            92%
        );

    margin:
        0 auto;
}

.safety-method-heading {
    max-width: 850px;

    margin-bottom: 75px;
}

.safety-method-heading h2 {
    margin: 0;

    font-size:
        clamp(
            2.4rem,
            4vw,
            4.2rem
        );

    font-weight: 600;
    line-height: 1.08;

    letter-spacing: -2px;
}

.safety-method-timeline {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.safety-method-step {
    min-height: 245px;

    padding:
        28px;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius:
        6px 28px 6px 28px;

    background:
        rgba(255, 255, 255, 0.045);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.safety-method-step:hover {
    transform:
        translateY(-6px);

    background:
        rgba(131, 201, 162, 0.1);

    border-color:
        rgba(183, 228, 203, 0.45);
}

.safety-method-number {
    width: 48px;
    height: 48px;

    display: flex;

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

    margin-bottom: 43px;

    border-radius: 50%;

    background: var(--green-soft);
    color: var(--green-dark);

    font-size: 0.76rem;
    font-weight: 800;
}

.safety-method-step:nth-child(even)
.safety-method-number {
    background: var(--green-bright);
    color: var(--white);
}

.safety-method-step h3 {
    margin:
        0 0 13px;

    font-size: 1.16rem;
}

.safety-method-step p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.69);

    font-size: 0.9rem;
    line-height: 1.7;
}


/* =========================================
   LIVRABLES
========================================= */

.safety-deliverables {
    padding:
        115px 0;

    background: var(--white);
}

.safety-deliverables-container {
    width:
        min(
            1400px,
            92%
        );

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        minmax(340px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 100px;
}

.safety-deliverables-heading h2 {
    margin:
        0 0 24px;

    color: var(--green-dark);

    font-size:
        clamp(
            2.4rem,
            4vw,
            4.2rem
        );

    font-weight: 600;
    line-height: 1.08;

    letter-spacing: -2px;
}

.safety-deliverables-heading > p:last-child {
    margin: 0;

    color: var(--grey-text);

    line-height: 1.8;
}

.safety-deliverables-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}

.safety-deliverable {
    display: grid;

    grid-template-columns:
        44px 1fr;

    align-items: center;

    min-height: 88px;

    padding:
        20px 22px;

    border:
        1px solid
        var(--border-light);

    border-radius:
        17px 5px 17px 5px;

    background:
        linear-gradient(
            130deg,
            #ffffff,
            #f4faf6
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.safety-deliverable:hover {
    transform:
        translateX(5px);

    border-color:
        rgba(22, 134, 83, 0.5);

    box-shadow:
        0 13px 30px
        rgba(9, 43, 29, 0.08);
}

.safety-deliverable span {
    color: var(--green-main);

    font-size: 0.75rem;
    font-weight: 800;
}

.safety-deliverable p {
    margin: 0;

    color: var(--green-dark);

    font-size: 0.92rem;
    font-weight: 600;
}


/* =========================================
   RÉSULTATS
========================================= */

.safety-results {
    padding:
        115px 0;

    background:
        linear-gradient(
            105deg,
            #0a3524,
            #126f48,
            #258f60
        );

    color: var(--white);
}

.safety-results-container {
    width:
        min(
            1400px,
            92%
        );

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        minmax(340px, 0.78fr)
        minmax(0, 1.22fr);

    gap: 100px;
}

.safety-results-heading h2 {
    margin: 0;

    font-size:
        clamp(
            2.4rem,
            4vw,
            4.2rem
        );

    font-weight: 600;
    line-height: 1.08;

    letter-spacing: -2px;
}

.safety-results-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}

.safety-results-grid article {
    min-height: 195px;

    padding: 25px;

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius:
        6px 22px 6px 22px;

    background:
        rgba(255, 255, 255, 0.05);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.safety-results-grid article:hover {
    transform:
        translateY(-5px);

    background:
        rgba(183, 228, 203, 0.11);

    border-color:
        rgba(183, 228, 203, 0.5);
}

.safety-results-grid span {
    display: block;

    margin-bottom: 32px;

    color: var(--mint);

    font-size: 0.77rem;
    font-weight: 800;
}

.safety-results-grid h3 {
    margin:
        0 0 12px;

    font-size: 1.09rem;
}

.safety-results-grid p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.71);

    font-size: 0.88rem;
    line-height: 1.67;
}


/* =========================================
   APPEL À L’ACTION
========================================= */

.final-cta {
    padding:
        115px 30px;

    background:
        linear-gradient(
            120deg,
            #ffffff,
            #e8f6ee
        );

    text-align: center;
}

.final-cta-content {
    max-width: 950px;

    margin:
        0 auto;
}

.final-cta-content > p {
    margin:
        0 0 18px;

    color: var(--green-main);

    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 2.2px;
}

.final-cta h2 {
    margin:
        0 0 38px;

    color: var(--green-dark);

    font-size:
        clamp(
            2.4rem,
            4.5vw,
            4.75rem
        );

    font-weight: 600;
    line-height: 1.08;

    letter-spacing: -2.6px;
}

.secondary-button {
    padding:
        17px 29px;

    background: var(--green-dark);
    color: var(--white);

    box-shadow:
        0 14px 32px
        rgba(9, 43, 29, 0.2);
}

.secondary-button:hover {
    background: var(--green-bright);

    box-shadow:
        0 20px 42px
        rgba(69, 174, 120, 0.26);
}


/* =========================================
   FOOTER
========================================= */

.footer-section {
    padding-top: 75px;

    background:
        linear-gradient(
            90deg,
            #06110d 0%,
            #0b241d 25%,
            #12352a 50%,
            #0b241d 75%,
            #06110d 100%
        );

    color: var(--white);
}

.footer-container {
    width:
        min(
            1400px,
            92%
        );

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        1.15fr 1fr 1.2fr 0.9fr;

    gap: 70px;

    padding-bottom: 60px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 16px;

    font-size: 3rem;
    font-weight: 700;
}

.footer-identity p {
    margin:
        0 0 32px;
}

.footer-identity address {
    font-style: normal;
    line-height: 1.65;
}

.footer-column h3 {
    margin:
        0 0 27px;

    font-size: 1.08rem;
    font-weight: 600;
}

.footer-column a {
    margin-bottom: 9px;

    color:
        rgba(255, 255, 255, 0.73);

    text-decoration: none;

    font-size: 0.89rem;
    line-height: 1.55;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column a:hover {
    color: var(--mint);

    transform:
        translateX(4px);
}

.footer-bottom {
    padding:
        12px 18px;

    background: #e9e9e9;
    color: #1a1a1a;

    font-size: 0.88rem;
}


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

@media (max-width: 1180px) {

    .safety-hero-container {
        grid-template-columns:
            1fr 430px;

        gap: 30px;
    }

    .safety-hero h1 {
        font-size: 4rem;
    }

    .safety-needs-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .safety-domains-container,
    .safety-deliverables-container,
    .safety-results-container {
        gap: 60px;
    }

    .footer-container {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 980px) {

    .expertises-mega-menu {
        width:
            calc(100vw - 32px);

        max-height:
            calc(100vh - 105px);

        grid-template-columns:
            1fr;

        overflow-y: auto;
    }

    .mega-menu-links {
        grid-template-columns:
            1fr;
    }

    .safety-introduction-container {
        grid-template-columns:
            1fr;

        gap: 40px;
    }
}


@media (max-width: 850px) {

    .main-navbar {
        height: auto;
        min-height: 78px;

        grid-template-columns:
            1fr auto;

        padding:
            18px 24px;
    }

    .main-navigation {
        display: none;
    }

    .expertises-mega-menu {
        display: none;
    }

    .safety-hero-container {
        min-height: auto;

        grid-template-columns:
            1fr;

        padding:
            55px 0 40px;
    }

    .safety-hero-text {
        max-width: 100%;
    }

    .safety-visual {
        height: 430px;
    }

    .safety-needs-grid {
        padding-left: 0;
    }

    .safety-domains-container,
    .safety-deliverables-container,
    .safety-results-container {
        grid-template-columns:
            1fr;
    }

    .safety-domains-heading {
        position: static;
    }

    .safety-method-timeline {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 620px) {

    .main-navbar {
        padding:
            16px 18px;
    }

    .site-logo {
        font-size: 1.65rem;
    }

    .language-selector span:not(.language-arrow) {
        display: none;
    }

    .safety-hero-container,
    .content-section,
    .safety-introduction-container,
    .safety-domains-container,
    .safety-standards-container,
    .safety-method-container,
    .safety-deliverables-container,
    .safety-results-container,
    .footer-container {
        width: 90%;
    }

    .safety-hero h1 {
        font-size:
            clamp(
                2.7rem,
                11.5vw,
                4rem
            );

        letter-spacing: -2px;
    }

    .hero-introduction {
        font-size: 1.05rem;
    }

    .safety-visual {
        height: 340px;

        border-radius:
            50px 18px 50px 18px;
    }

    .safety-orbit-three {
        width: 330px;
        height: 330px;
    }

    .safety-orbit-two {
        width: 240px;
        height: 240px;
    }

    .safety-orbit-one {
        width: 150px;
        height: 150px;
    }

    .safety-label {
        display: none;
    }

    .safety-introduction,
    .safety-domains-container,
    .safety-standards,
    .safety-method,
    .safety-deliverables,
    .safety-results,
    .content-section {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .section-heading {
        grid-template-columns:
            1fr;

        gap: 14px;

        margin-bottom: 48px;
    }

    .safety-principles,
    .safety-needs-grid,
    .safety-standards-grid,
    .safety-method-timeline,
    .safety-deliverables-grid,
    .safety-results-grid,
    .footer-container {
        grid-template-columns:
            1fr;
    }

    .standard-card {
        min-height: auto;

        padding: 30px;
    }

    .standard-card-label {
        margin-bottom: 45px;
    }

    .final-cta {
        padding:
            90px 22px;
    }
}


/* =========================================
   INTERACTION PRÉCISE DU MÉGA-MENU
========================================= */

.nav-item-expertises::after {
    display: none;
}

.nav-link-expertises {
    z-index: 2;
}

.nav-link-expertises:focus-visible {
    outline:
        2px solid
        var(--green-soft);

    outline-offset: 5px;

    border-radius: 4px;
}

.nav-item-expertises.menu-open
.nav-link-expertises::after {
    width: 100%;
}


/* =========================================
   BOUTON DE NAVIGATION MOBILE
========================================= */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    padding: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.06);

    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 21px;
    height: 2px;

    border-radius: 20px;

    background: var(--white);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.mobile-nav-open
.mobile-menu-toggle span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.mobile-nav-open
.mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-open
.mobile-menu-toggle span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================
   RESPONSIVE GLOBAL RENFORCÉ
========================================= */

img,
video,
svg,
canvas {
    max-width: 100%;
}


@media (max-width: 1180px) {

    .main-navbar {
        grid-template-columns:
            180px 1fr 210px;

        padding:
            0 32px;
    }

    .expertises-mega-menu {
        width:
            min(
                1120px,
                calc(100vw - 34px)
            );
    }

    .safety-hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.82fr);
    }

}


@media (max-width: 980px) {

    .safety-hero-container {
        grid-template-columns:
            1fr;

        gap: 42px;
    }

    .safety-hero-text {
        max-width: 850px;
    }

    .safety-visual {
        width: 100%;
        max-width: 760px;

        margin:
            0 auto;
    }

    .safety-introduction-container,
    .safety-domains-container,
    .safety-deliverables-container,
    .safety-results-container {
        grid-template-columns:
            1fr;

        gap: 44px;
    }

    .safety-domains-heading {
        position: static;
    }

    .safety-needs-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        padding-left: 0;
    }

    .safety-method-timeline {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .footer-container {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


@media (max-width: 850px) {

    body.mobile-nav-open {
        overflow: hidden;
    }

    .site-header {
        position: sticky;

        top: 0;

        z-index: 4000;
    }

    .main-navbar {
        position: relative;

        min-height: 70px;
        height: auto;

        grid-template-columns:
            1fr auto auto;

        gap: 12px;

        padding:
            12px 18px;
    }

    .site-logo {
        grid-column: 1;

        font-size: 1.65rem;
    }

    .mobile-menu-toggle {
        grid-column: 2;

        display: flex;
    }

    .navbar-actions {
        grid-column: 3;

        gap: 12px;
    }

    .language-selector span:not(.language-arrow) {
        display: none;
    }

    .main-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        z-index: 4200;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        max-height: 0;

        padding:
            0 18px;

        overflow-y: auto;

        background:
            linear-gradient(
                180deg,
                #0b3b28 0%,
                #05130d 100%
            );

        border-top:
            1px solid
            rgba(255, 255, 255, 0.12);

        box-shadow:
            0 24px 50px
            rgba(0, 0, 0, 0.38);

        opacity: 0;
        visibility: hidden;

        transform:
            translateY(-8px);

        transition:
            max-height 0.45s ease,
            padding 0.3s ease,
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .mobile-nav-open
    .main-navigation {
        max-height:
            calc(
                100svh -
                70px
            );

        padding:
            16px 18px 24px;

        opacity: 1;
        visibility: visible;

        transform:
            translateY(0);
    }

    .main-navigation > a,
    .nav-link-expertises {
        width: 100%;
        min-height: 54px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        padding:
            14px 4px;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.11);

        color: var(--white);

        font-size: 0.95rem;

        text-align: left;
    }

    .nav-item-expertises {
        width: 100%;
        height: auto;

        display: block;
    }

    .nav-item-expertises::after {
        display: none;
    }

    .nav-link-expertises::after {
        content: "+";

        position: static;

        width: auto;
        height: auto;

        background: transparent;

        color: var(--green-soft);

        font-size: 1.35rem;
        line-height: 1;

        transform: none;
    }

    .nav-item-expertises.menu-open
    .nav-link-expertises::after {
        content: "−";

        width: auto;
    }

    .expertises-mega-menu {
        position: static;

        width: 100%;
        min-height: 0;
        max-height: 0;

        display: grid;

        grid-template-columns:
            1fr;

        gap: 12px;

        padding: 0;

        overflow: hidden;

        border: 0;
        border-radius: 0;

        background: transparent;

        box-shadow: none;

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        transform: none;

        transition:
            max-height 0.5s ease,
            padding 0.3s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .nav-link-expertises:hover
    + .expertises-mega-menu,

    .expertises-mega-menu:hover {
        max-height: 0;

        padding: 0;

        opacity: 0;
        visibility: hidden;

        pointer-events: none;
    }

    .nav-item-expertises.menu-open
    .expertises-mega-menu {
        max-height: 1120px;

        padding:
            14px 0 8px;

        opacity: 1;
        visibility: visible;

        pointer-events: auto;
    }

    .mega-menu-introduction {
        display: none;
    }

    .mega-menu-links {
        grid-template-columns:
            1fr;

        gap: 9px;
    }

    .mega-menu-card {
        min-height: 76px;

        grid-template-columns:
            34px 1fr 20px;

        gap: 10px;

        padding:
            13px 14px;

        border-color:
            rgba(255, 255, 255, 0.14);

        background:
            rgba(255, 255, 255, 0.07);

        color: var(--white);
    }

    .mega-menu-card.active {
        border-color:
            rgba(131, 201, 162, 0.56);

        background:
            rgba(131, 201, 162, 0.1);
    }

    .mega-menu-card-text strong {
        color: var(--white);

        font-size: 0.84rem;
    }

    .mega-menu-card-text small {
        color:
            rgba(255, 255, 255, 0.64);

        font-size: 0.68rem;
    }

    .mega-menu-number,
    .mega-menu-arrow {
        color: var(--green-soft);
    }

    .safety-hero {
        min-height: auto;
    }

    .safety-hero-container {
        width: 90%;

        min-height: auto;

        padding:
            62px 0 48px;
    }

    .breadcrumb {
        margin-bottom: 34px;

        flex-wrap: wrap;
    }

    .safety-hero h1 {
        font-size:
            clamp(
                2.8rem,
                10vw,
                4.2rem
            );

        line-height: 1.02;
        letter-spacing: -2.1px;
    }

    .hero-introduction {
        font-size: 1.05rem;
    }

    .safety-visual {
        height: 410px;

        border-radius:
            52px 18px 52px 18px;
    }

    .safety-introduction {
        padding:
            84px 0;
    }

    .safety-introduction-container {
        width: 90%;
    }

    .content-section,
    .safety-domains-container,
    .safety-standards,
    .safety-method,
    .safety-deliverables,
    .safety-results {
        padding-top: 84px;
        padding-bottom: 84px;
    }

    .section-heading {
        grid-template-columns:
            1fr;

        gap: 12px;

        margin-bottom: 44px;
    }

    .safety-needs-grid {
        grid-template-columns:
            1fr;
    }

    .safety-need-card {
        min-height: 245px;
    }

    .safety-domains-container,
    .safety-standards-container,
    .safety-method-container,
    .safety-deliverables-container,
    .safety-results-container {
        width: 90%;
    }

    .safety-standards-grid {
        grid-template-columns:
            1fr;
    }

    .safety-method-timeline,
    .safety-deliverables-grid,
    .safety-results-grid {
        grid-template-columns:
            1fr;
    }

    .final-cta {
        padding:
            84px 20px;
    }

    .footer-container {
        width: 90%;

        grid-template-columns:
            1fr;

        gap: 40px;
    }

}


@media (max-width: 620px) {

    .demo-banner {
        padding:
            9px 12px;

        font-size: 0.78rem;
    }

    .main-navbar {
        padding:
            10px 12px;
    }

    .site-logo {
        font-size: 1.35rem;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .navbar-actions {
        gap: 7px;
    }

    .language-arrow {
        display: none;
    }

    .safety-hero-container,
    .safety-introduction-container,
    .content-section,
    .safety-domains-container,
    .safety-standards-container,
    .safety-method-container,
    .safety-deliverables-container,
    .safety-results-container,
    .footer-container {
        width: 90%;
    }

    .safety-hero h1 {
        font-size:
            clamp(
                2.35rem,
                11vw,
                3.35rem
            );

        letter-spacing: -1.7px;
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 340px;
    }

    .safety-visual {
        height: 330px;

        border-radius:
            34px 14px 34px 14px;
    }

    .safety-label {
        display: none;
    }

    .safety-orbit-two {
        width: 250px;
        height: 250px;
    }

    .safety-orbit-three {
        width: 320px;
        height: 320px;
    }

    .safety-shield {
        width: 190px;
        height: 220px;
    }

    .safety-principles {
        grid-template-columns:
            1fr;
    }

    .safety-need-card {
        padding:
            25px 22px;
    }

    .safety-domain {
        grid-template-columns:
            42px minmax(0, 1fr);

        gap: 14px;
    }

    .standard-card {
        min-height: auto;

        padding:
            30px 24px;
    }

    .standard-card-label {
        margin-bottom: 38px;
    }

    .safety-method-step {
        min-height: 220px;

        padding:
            24px 22px;
    }

    .safety-deliverable {
        grid-template-columns:
            38px 1fr;

        padding:
            18px 20px;
    }

    .safety-results-grid article {
        min-height: 175px;
    }

    .final-cta {
        padding:
            76px 16px;
    }

    .footer-logo {
        font-size: 2.35rem;
    }

}


@media (max-width: 420px) {

    .safety-hero-container,
    .safety-introduction-container,
    .content-section,
    .safety-domains-container,
    .safety-standards-container,
    .safety-method-container,
    .safety-deliverables-container,
    .safety-results-container,
    .footer-container {
        width: 92%;
    }

    .safety-visual {
        height: 285px;
    }

    .mega-menu-card {
        grid-template-columns:
            30px 1fr 18px;

        padding:
            12px 10px;
    }

    .mega-menu-card-text strong {
        font-size: 0.79rem;
    }

    .mega-menu-card-text small {
        font-size: 0.64rem;
    }

}

