/* =========================================
   VARIABLES
========================================= */

:root {
    --green-deepest: #07120e;
    --green-dark: #10251e;
    --green-deep: #1f4c3b;
    --green-medium: #56645e;
    --green-main: #3b7d64;
    --green-bright: #6f8f82;
    --green-soft: #a9cfbf;

    --olive: #c58d55;
    --olive-soft: #efd0ab;

    --white: #ffffff;
    --black: #101714;

    --grey-text: #5f6964;
    --grey-light: #f4f7f5;
    --border-light: #dbe5df;
}


/* =========================================
   RÉINITIALISATION
========================================= */

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

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

.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(--olive);

    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(33, 132, 86, 0.27);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #f4f7f5 0%,
            #ffffff 55%,
            #edf4ef 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:
        1px solid
        rgba(169, 198, 108, 0.3);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #082118 0%,
            #394640 100%
        );

    color: var(--white);
}

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

    color: var(--olive);

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

    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(169, 198, 108, 0.14);

    border-color:
        rgba(169, 198, 108, 0.55);
}

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

    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(33, 132, 86, 0.12),
            transparent
        );

    transform:
        translateX(-130%);

    transition:
        transform 0.65s ease;
}

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

    border-color:
        rgba(33, 132, 86, 0.46);

    background: #f5faf7;

    box-shadow:
        0 14px 30px
        rgba(10, 58, 37, 0.12);
}

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

.mega-menu-card.active {
    border-color:
        rgba(169, 198, 108, 0.7);

    background:
        linear-gradient(
            120deg,
            #f8fce9,
            #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.active
.mega-menu-number {
    color: #77963e;
}

.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
========================================= */

.management-hero {
    position: relative;

    min-height: 670px;

    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            #07120e 0%,
            #10251e 27%,
            #394640 55%,
            #56645e 77%,
            #06110d 100%
        );

    color: var(--white);
}

.management-hero::before {
    content: "";

    position: absolute;

    top: -310px;
    left: 31%;

    width: 780px;
    height: 780px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(169, 198, 108, 0.14) 0%,
            rgba(33, 132, 86, 0.08) 47%,
            transparent 72%
        );

    pointer-events: none;
}

.management-hero::after {
    content: "";

    position: absolute;

    right: -230px;
    bottom: -300px;

    width: 680px;
    height: 680px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(43, 155, 99, 0.15),
            transparent 70%
        );

    pointer-events: none;
}

.management-hero-grid {
    position: relative;
    z-index: 2;

    width:
        min(
            1400px,
            92%
        );

    min-height: 670px;

    margin:
        0 auto;

    display: grid;

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

    align-items: center;

    gap: 55px;

    padding:
        65px 0 75px;
}

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

    max-width: 790px;
}

.breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 45px;

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

    font-size: 0.85rem;
}

.breadcrumb a {
    color:
        rgba(255, 255, 255, 0.67);

    text-decoration: none;

    transition:
        color 0.3s ease;
}

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

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

    color: var(--green-soft);

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

    letter-spacing: 2.3px;
}

.management-hero h1 {
    max-width: 850px;

    margin:
        0 0 28px;

    color: var(--olive-soft);

    font-size:
        clamp(
            3.2rem,
            5vw,
            5.45rem
        );

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

    letter-spacing: -3.5px;
}

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

    margin:
        0 0 20px;

    color: var(--white);

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

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

    margin:
        0 0 35px;

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

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


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

.management-visual {
    position: relative;

    width: 100%;
    height: 525px;

    display: flex;

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

    overflow: hidden;

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

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.01)
        );

    box-shadow:
        inset 0 0 70px
        rgba(255, 255, 255, 0.025);
}

.management-visual::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(169, 198, 108, 0.11),
            rgba(33, 132, 86, 0.08) 45%,
            transparent 72%
        );

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

.management-grid-background {
    position: absolute;

    inset: 0;

    opacity: 0.15;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.09) 1px,
            transparent 1px
        );

    background-size:
        44px 44px;
}

.budget-line {
    position: absolute;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--olive),
            var(--green-bright),
            transparent
        );

    opacity: 0.42;
}

.budget-line-one {
    top: 88px;
    left: 35px;

    width: 65%;

    transform:
        rotate(-8deg);
}

.budget-line-two {
    right: 35px;
    bottom: 95px;

    width: 62%;

    transform:
        rotate(7deg);
}

#scene-3d {
    position: absolute;

    inset: 0;

    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: 6;

    transform:
        translateX(-50%);

    padding:
        9px 15px;

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

    border-radius: 30px;

    background:
        rgba(0, 0, 0, 0.27);

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

    font-size: 0.72rem;

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

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

.management-data {
    position: absolute;
    z-index: 7;

    min-width: 126px;

    padding:
        12px 14px;

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

    border-radius: 9px;

    background:
        rgba(6, 31, 20, 0.61);

    backdrop-filter:
        blur(9px);

    box-shadow:
        0 12px 28px
        rgba(0, 0, 0, 0.18);
}

.management-data span {
    display: block;

    margin-bottom: 6px;

    color: var(--green-soft);

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

    letter-spacing: 1.5px;
}

.management-data strong {
    color: var(--white);

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

.data-budget {
    top: 25px;
    left: 25px;
}

.data-realised {
    top: 120px;
    right: 23px;
}

.data-gap {
    left: 31px;
    bottom: 30px;
}


/* =========================================
   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(--white);

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

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.18);
}

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

    position: absolute;

    top: 0;
    left: -130%;

    width: 65%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(169, 198, 108, 0.52),
            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: #f9fdea;

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.26);
}

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


/* =========================================
   PRÉSENTATION
========================================= */

.management-overview {
    padding:
        100px 0;

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

.management-overview-container {
    width:
        min(
            1300px,
            90%
        );

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        minmax(330px, 0.9fr)
        minmax(420px, 1.1fr);

    gap: 100px;
}

.overview-title h2 {
    margin: 0;

    font-size:
        clamp(
            2.2rem,
            3.6vw,
            3.8rem
        );

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

    letter-spacing: -2px;
}

.overview-content {
    padding-top: 22px;
}

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

    color: var(--grey-text);

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

.overview-summary {
    display: grid;

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

    gap: 10px;

    margin-top: 35px;
}

.overview-summary div {
    padding:
        18px 12px;

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

    border-radius: 8px;

    background: var(--white);

    text-align: center;
}

.overview-summary span {
    display: block;

    margin-bottom: 7px;

    color: var(--green-main);

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

.overview-summary p {
    margin: 0;

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


/* =========================================
   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, 830px);

    gap: 30px;

    align-items: start;

    margin-bottom: 68px;
}

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

    color: var(--olive);

    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-light {
    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
========================================= */

.management-needs-grid {
    display: grid;

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

    gap: 18px;

    padding-left: 105px;
}

.management-need-card {
    position: relative;

    min-height: 270px;

    padding: 30px;

    overflow: hidden;

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

    border-radius: 8px;

    background: var(--white);

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

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

    border-color:
        rgba(169, 198, 108, 0.5);

    background:
        linear-gradient(
            145deg,
            #10251e,
            #394640
        );

    color: var(--white);

    box-shadow:
        0 22px 50px
        rgba(10, 58, 37, 0.17);
}

.need-index {
    display: block;

    margin-bottom: 24px;

    color: var(--olive);

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

    letter-spacing: 2px;
}

.need-line {
    width: 55px;
    height: 2px;

    margin-bottom: 42px;

    background:
        linear-gradient(
            90deg,
            var(--green-main),
            var(--olive)
        );

    transition:
        width 0.35s ease;
}

.management-need-card:hover
.need-line {
    width: 100%;
}

.management-need-card h3 {
    margin:
        0 0 15px;

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

.management-need-card p {
    margin: 0;

    color: var(--grey-text);

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

    transition:
        color 0.35s ease;
}

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


/* =========================================
   PRESTATIONS
========================================= */

.management-services {
    background:
        linear-gradient(
            100deg,
            #06110d 0%,
            #10251e 31%,
            #394640 64%,
            #1f2d28 100%
        );

    color: var(--white);
}

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

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        minmax(300px, 0.7fr)
        minmax(0, 1.3fr);

    gap: 100px;

    padding:
        115px 0;
}

.management-services-title {
    position: sticky;

    top: 120px;

    align-self: start;
}

.management-services-title h2 {
    margin:
        0 0 24px;

    color: var(--olive-soft);

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

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

    letter-spacing: -2px;
}

.management-services-title > p:last-child {
    margin: 0;

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

    line-height: 1.8;
}

.management-services-list {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.14);
}

.management-service {
    display: grid;

    grid-template-columns:
        minmax(250px, 0.82fr)
        minmax(300px, 1.18fr)
        30px;

    align-items: start;

    gap: 35px;

    padding:
        31px 0;

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

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

.management-service:hover {
    padding-left: 15px;

    background:
        linear-gradient(
            90deg,
            rgba(169, 198, 108, 0.07),
            transparent
        );
}

.service-left {
    display: grid;

    grid-template-columns:
        42px 1fr;

    gap: 18px;
}

.service-left span {
    color: var(--olive);

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

.service-left h3 {
    margin: 0;

    font-size: 1.22rem;
    line-height: 1.4;
}

.management-service > p {
    margin: 0;

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

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

.service-arrow {
    color: var(--green-soft);

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

.management-service:hover
.service-arrow {
    color: var(--olive);

    transform:
        translateX(5px);
}


/* =========================================
   CYCLE DE GESTION
========================================= */

.management-cycle {
    padding:
        115px 0;

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

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

    margin:
        0 auto;
}

.cycle-heading {
    max-width: 850px;

    margin-bottom: 75px;
}

.cycle-heading h2 {
    margin: 0;

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

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

    letter-spacing: -2px;
}

.cycle-grid {
    display: grid;

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

    gap: 16px;
}

.cycle-step {
    min-height: 225px;

    padding: 28px;

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

    border-radius: 8px;

    background: var(--white);

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

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

    border-color:
        rgba(33, 132, 86, 0.46);

    box-shadow:
        0 18px 40px
        rgba(10, 58, 37, 0.1);
}

.cycle-step-large {
    grid-column:
        span 2;

    background:
        linear-gradient(
            145deg,
            #10251e,
            #394640
        );

    color: var(--white);
}

.cycle-step-wide {
    grid-column:
        span 2;
}

.cycle-step span {
    display: block;

    margin-bottom: 45px;

    color: var(--olive);

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

    letter-spacing: 2px;
}

.cycle-step h3 {
    margin:
        0 0 14px;

    font-size: 1.24rem;
}

.cycle-step p {
    margin: 0;

    color: var(--grey-text);

    font-size: 0.91rem;
    line-height: 1.72;
}

.cycle-step-large p {
    color:
        rgba(255, 255, 255, 0.72);
}


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

.deliverables-grid {
    max-width: 1120px;

    margin-left: auto;

    display: grid;

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

    gap: 14px;
}

.deliverable-card {
    display: grid;

    grid-template-columns:
        45px 1fr;

    align-items: center;

    min-height: 86px;

    padding:
        20px 24px;

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

    border-radius: 8px;

    background: #f8faf9;

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

.deliverable-card:hover {
    transform:
        translateX(6px);

    border-color:
        rgba(33, 132, 86, 0.46);

    background: var(--white);
}

.deliverable-card span {
    color: var(--olive);

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

.deliverable-card p {
    margin: 0;

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


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

.management-results {
    background:
        linear-gradient(
            100deg,
            #06110d 0%,
            #10251e 31%,
            #394640 64%,
            #1f2d28 100%
        );

    color: var(--white);
}

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

.results-title h2 {
    margin: 0;

    color: var(--olive-soft);

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

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

    letter-spacing: -2px;
}

.results-grid {
    display: grid;

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

    gap:
        0 48px;
}

.result-item {
    display: grid;

    grid-template-columns:
        42px 1fr;

    gap: 17px;

    padding:
        25px 0;

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

.result-item span {
    color: var(--olive);

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

.result-item p {
    margin: 0;

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

    font-size: 0.97rem;
    line-height: 1.6;
}


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

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

    background: var(--white);

    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;

    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(10, 58, 37, 0.19);
}

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

    box-shadow:
        0 20px 42px
        rgba(10, 58, 37, 0.28);
}


/* =========================================
   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(--olive);

    transform:
        translateX(4px);
}

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

    background: #e9e9e9;
    color: #1a1a1a;

    font-size: 0.88rem;
}


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

@media (max-width: 1180px) {

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

        gap: 30px;
    }

    .management-hero h1 {
        font-size: 4.15rem;
    }

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

    .management-services-container,
    .management-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;
    }

    .management-overview-container {
        grid-template-columns:
            1fr;

        gap: 35px;
    }

    .management-service {
        grid-template-columns:
            1fr;

        gap: 15px;
    }

    .service-arrow {
        display: none;
    }
}


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

    .management-hero-grid {
        min-height: auto;

        grid-template-columns:
            1fr;

        padding:
            55px 0 40px;
    }

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

    .management-visual {
        height: 420px;
    }

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

    .management-services-container,
    .management-results-container {
        grid-template-columns:
            1fr;
    }

    .management-services-title {
        position: static;
    }

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

    .cycle-step-large,
    .cycle-step-wide {
        grid-column:
            span 1;
    }
}


@media (max-width: 620px) {

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

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

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

    .management-hero-grid,
    .content-section,
    .management-cycle-container,
    .management-services-container,
    .management-results-container,
    .footer-container {
        width: 90%;
    }

    .management-hero h1 {
        font-size:
            clamp(
                2.9rem,
                12vw,
                4.2rem
            );

        letter-spacing: -2.2px;
    }

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

    .management-visual {
        height: 340px;
    }

    .management-data {
        display: none;
    }

    .management-overview,
    .management-cycle,
    .management-services-container,
    .management-results-container,
    .content-section {
        padding-top: 85px;
        padding-bottom: 85px;
    }

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

        gap: 14px;

        margin-bottom: 48px;
    }

    .overview-summary,
    .management-needs-grid,
    .cycle-grid,
    .deliverables-grid,
    .results-grid,
    .footer-container {
        grid-template-columns:
            1fr;
    }

    .service-left {
        grid-template-columns:
            38px 1fr;
    }

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

/* =========================================
   AJUSTEMENTS THÉMATIQUES
   AUDIT, QUALITÉ ET PERFORMANCE
========================================= */

.management-hero {
    background:
        linear-gradient(
            108deg,
            #07120e 0%,
            #10251e 28%,
            #394640 58%,
            #56645e 78%,
            #2b3632 100%
        );
}

.management-hero h1,
.management-services-title h2,
.results-title h2 {
    color: #efd0ab;
}

.management-data {
    background:
        rgba(15, 34, 28, 0.72);
}

.management-data span,
.section-label-light {
    color: #a9cfbf;
}

.need-index,
.service-left span,
.cycle-step span,
.deliverable-card span,
.result-item span {
    color: #c58d55;
}

.management-need-card:hover,
.cycle-step-large {
    background:
        linear-gradient(
            145deg,
            #10251e,
            #394640
        );
}

.management-services,
.management-results {
    background:
        linear-gradient(
            105deg,
            #07120e 0%,
            #10251e 32%,
            #394640 68%,
            #1f2d28 100%
        );
}

.primary-button {
    border-color: #efd0ab;
    background: #efd0ab;
    color: #10251e;
}

.primary-button:hover {
    background: #ffffff;
}

.secondary-button {
    background: #10251e;
}

.secondary-button:hover {
    background: #3b7d64;
}

.mega-menu-card.active {
    border-color:
        rgba(197, 141, 85, 0.85);

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


/* =========================================
   THÈME FINAL
   BLANC DOMINANT, VERT ET ORANGE
========================================= */

:root {
    --green-deepest: #071a12;
    --green-dark: #0d3525;
    --green-deep: #14563b;
    --green-medium: #247a55;
    --green-main: #2f8f63;
    --green-bright: #52ad7b;
    --green-soft: #b9ddca;

    --olive: #e8842f;
    --olive-soft: #ffd5ae;

    --white: #ffffff;
    --black: #132019;

    --grey-text: #5e6963;
    --grey-light: #f5f8f6;
    --border-light: #dce7e1;
}


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

.site-header {
    background:
        linear-gradient(
            90deg,
            #071a12 0%,
            #0d3525 48%,
            #14563b 72%,
            #071a12 100%
        );
}

.main-navigation > a:hover,
.footer-column a:hover {
    color: #ffb46d;
}

.nav-link-expertises::after {
    background: #e8842f;
}


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

.expertises-mega-menu {
    border-color:
        rgba(47, 143, 99, 0.22);

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

    box-shadow:
        0 26px 70px
        rgba(13, 53, 37, 0.18);
}

.mega-menu-introduction {
    border-color:
        rgba(232, 132, 47, 0.32);

    background:
        linear-gradient(
            145deg,
            #0d3525,
            #247a55
        );
}

.mega-menu-eyebrow {
    color: #ffd5ae;
}

.mega-menu-card.active {
    border-color:
        rgba(232, 132, 47, 0.8);

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

.mega-menu-card.active
.mega-menu-number {
    color: #e8842f;
}


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

.management-hero {
    background:
        linear-gradient(
            115deg,
            #ffffff 0%,
            #ffffff 57%,
            #f3f9f6 78%,
            #eef7f2 100%
        );

    color: var(--black);
}

.management-hero::before {
    background:
        radial-gradient(
            circle,
            rgba(47, 143, 99, 0.16) 0%,
            rgba(47, 143, 99, 0.06) 46%,
            transparent 72%
        );
}

.management-hero::after {
    background:
        radial-gradient(
            circle,
            rgba(232, 132, 47, 0.14),
            transparent 70%
        );
}

.breadcrumb,
.breadcrumb a {
    color: #7b877f;
}

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

.hero-eyebrow {
    color: var(--green-main);
}

.management-hero h1 {
    color: var(--green-dark);
}

.hero-introduction {
    color: var(--black);
}

.hero-description {
    color: var(--grey-text);
}

.primary-button {
    border-color: var(--olive);

    background: var(--olive);
    color: #ffffff;

    box-shadow:
        0 15px 34px
        rgba(232, 132, 47, 0.22);
}

.primary-button:hover {
    border-color: var(--green-main);

    background: var(--green-main);
    color: #ffffff;

    box-shadow:
        0 20px 42px
        rgba(47, 143, 99, 0.24);
}


/* =========================================
   VISUEL 3D SUR FOND CLAIR
========================================= */

.management-visual {
    border-color:
        rgba(47, 143, 99, 0.2);

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f9fcfa 55%,
            #edf7f1 100%
        );

    box-shadow:
        0 24px 55px
        rgba(13, 53, 37, 0.12);
}

.management-visual::before {
    background:
        radial-gradient(
            circle,
            rgba(47, 143, 99, 0.13),
            rgba(232, 132, 47, 0.055) 47%,
            transparent 72%
        );
}

.management-grid-background {
    opacity: 0.2;

    background-image:
        linear-gradient(
            rgba(47, 143, 99, 0.11) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(47, 143, 99, 0.11) 1px,
            transparent 1px
        );
}

.budget-line {
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--olive),
            var(--green-main),
            transparent
        );

    opacity: 0.55;
}

.management-data {
    border-color:
        rgba(47, 143, 99, 0.18);

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

    box-shadow:
        0 12px 28px
        rgba(13, 53, 37, 0.1);
}

.management-data span {
    color: var(--olive);
}

.management-data strong {
    color: var(--green-dark);
}

.loading-3d {
    border-color:
        rgba(47, 143, 99, 0.18);

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

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


/* =========================================
   PRÉSENTATION
========================================= */

.management-overview {
    background:
        linear-gradient(
            120deg,
            #f7faf8,
            #ffffff
        );
}

.overview-title h2 {
    color: var(--green-dark);
}

.overview-summary div {
    border-color:
        rgba(47, 143, 99, 0.18);

    background: #ffffff;

    box-shadow:
        0 10px 24px
        rgba(13, 53, 37, 0.06);
}

.overview-summary span {
    color: var(--olive);
}


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

.management-needs {
    background: #ffffff;
}

.management-need-card {
    border-color:
        rgba(47, 143, 99, 0.18);

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

    box-shadow:
        0 12px 28px
        rgba(13, 53, 37, 0.05);
}

.management-need-card:hover {
    border-color:
        rgba(232, 132, 47, 0.55);

    background:
        linear-gradient(
            145deg,
            #0d3525,
            #247a55
        );

    box-shadow:
        0 24px 52px
        rgba(13, 53, 37, 0.18);
}

.need-index {
    color: var(--olive);
}

.need-line {
    background:
        linear-gradient(
            90deg,
            var(--olive),
            var(--green-main)
        );
}


/* =========================================
   PRESTATIONS CLAIRES
========================================= */

.management-services {
    background:
        linear-gradient(
            120deg,
            #f4f8f6 0%,
            #ffffff 52%,
            #fff8f1 100%
        );

    color: var(--black);
}

.management-services-title h2 {
    color: var(--green-dark);
}

.management-services-title > p:last-child {
    color: var(--grey-text);
}

.management-services-list {
    border-top-color:
        rgba(47, 143, 99, 0.19);
}

.management-service {
    border-bottom-color:
        rgba(47, 143, 99, 0.19);
}

.management-service:hover {
    background:
        linear-gradient(
            90deg,
            rgba(232, 132, 47, 0.08),
            rgba(47, 143, 99, 0.04),
            transparent
        );
}

.service-left span {
    color: var(--olive);
}

.service-left h3 {
    color: var(--green-dark);
}

.management-service > p {
    color: var(--grey-text);
}

.service-arrow {
    color: var(--green-main);
}

.management-service:hover
.service-arrow {
    color: var(--olive);
}


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

.management-cycle {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f5f9f7
        );
}

.cycle-heading h2 {
    color: var(--green-dark);
}

.cycle-step {
    border-color:
        rgba(47, 143, 99, 0.18);

    background: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(13, 53, 37, 0.05);
}

.cycle-step:hover {
    border-color:
        rgba(232, 132, 47, 0.48);

    box-shadow:
        0 18px 40px
        rgba(13, 53, 37, 0.1);
}

.cycle-step-large {
    background:
        linear-gradient(
            145deg,
            #0d3525,
            #247a55
        );

    color: #ffffff;
}

.cycle-step span {
    color: var(--olive);
}


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

.management-deliverables {
    background: #ffffff;
}

.deliverable-card {
    border-color:
        rgba(47, 143, 99, 0.18);

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

    box-shadow:
        0 9px 22px
        rgba(13, 53, 37, 0.045);
}

.deliverable-card:hover {
    border-color:
        rgba(232, 132, 47, 0.5);

    background: #ffffff;
}

.deliverable-card span {
    color: var(--olive);
}


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

.management-results {
    background:
        linear-gradient(
            115deg,
            #ffffff 0%,
            #f5faf7 58%,
            #fff5eb 100%
        );

    color: var(--black);
}

.results-title h2 {
    color: var(--green-dark);
}

.results-grid {
    border-top:
        1px solid
        rgba(47, 143, 99, 0.18);
}

.result-item {
    border-bottom-color:
        rgba(47, 143, 99, 0.18);
}

.result-item span {
    color: var(--olive);
}

.result-item p {
    color: var(--grey-text);
}


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

.final-cta {
    background:
        linear-gradient(
            120deg,
            #ffffff,
            #f4f9f6
        );
}

.final-cta-content > p {
    color: var(--olive);
}

.final-cta h2 {
    color: var(--green-dark);
}

.secondary-button {
    background: var(--green-dark);
    color: #ffffff;
}

.secondary-button:hover {
    background: var(--olive);
}


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

.footer-section {
    background:
        linear-gradient(
            90deg,
            #071a12 0%,
            #0d3525 45%,
            #14563b 70%,
            #071a12 100%
        );
}


/* =========================================
   RESPONSIVE DU THÈME CLAIR
========================================= */

@media (max-width: 850px) {

    .management-hero-grid {
        padding-top: 55px;
    }

    .management-visual {
        background:
            linear-gradient(
                145deg,
                #ffffff,
                #edf7f1
            );
    }
}


/* =========================================
   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(--olive);

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

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

}


@media (max-width: 980px) {

    .management-hero-grid {
        grid-template-columns:
            1fr;

        gap: 42px;
    }

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

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

        margin:
            0 auto;
    }

    .management-overview-container,
    .management-services-container,
    .management-results-container {
        grid-template-columns:
            1fr;

        gap: 44px;
    }

    .management-services-title {
        position: static;
    }

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

        padding-left: 0;
    }

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

    .cycle-step-large,
    .cycle-step-wide {
        grid-column:
            span 1;
    }

    .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,
                #0d3525 0%,
                #071a12 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(--olive);

        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(232, 132, 47, 0.56);

        background:
            rgba(232, 132, 47, 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(--olive);
    }

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

    .management-hero-grid {
        width: 90%;

        min-height: auto;

        padding:
            62px 0 48px;
    }

    .breadcrumb {
        margin-bottom: 34px;

        flex-wrap: wrap;
    }

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

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

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

    .management-visual {
        height: 410px;
    }

    .management-overview {
        padding:
            78px 0;
    }

    .management-overview-container {
        width: 90%;
    }

    .content-section,
    .management-services-container,
    .management-cycle,
    .management-results-container {
        padding-top: 84px;
        padding-bottom: 84px;
    }

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

        gap: 12px;

        margin-bottom: 44px;
    }

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

    .management-need-card {
        min-height: 230px;
    }

    .management-services-container,
    .management-cycle-container,
    .management-results-container {
        width: 90%;
    }

    .management-service {
        grid-template-columns:
            1fr;

        gap: 14px;
    }

    .service-arrow {
        display: none;
    }

    .cycle-grid,
    .deliverables-grid,
    .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;
    }

    .management-hero-grid,
    .management-overview-container,
    .content-section,
    .management-services-container,
    .management-cycle-container,
    .management-results-container,
    .footer-container {
        width: 90%;
    }

    .management-hero h1 {
        font-size:
            clamp(
                2.45rem,
                12vw,
                3.45rem
            );

        letter-spacing: -1.8px;
    }

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

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

    .management-visual {
        height: 330px;
    }

    .management-data {
        display: none;
    }

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

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

    .service-left {
        grid-template-columns:
            38px 1fr;
    }

    .cycle-step {
        min-height: 210px;

        padding:
            24px 22px;
    }

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

        padding:
            18px 20px;
    }

    .result-item {
        grid-template-columns:
            35px 1fr;
    }

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

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

}


@media (max-width: 420px) {

    .management-hero-grid,
    .management-overview-container,
    .content-section,
    .management-services-container,
    .management-cycle-container,
    .management-results-container,
    .footer-container {
        width: 92%;
    }

    .management-visual {
        height: 285px;
    }

    .overview-summary {
        grid-template-columns:
            1fr;
    }

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

}

