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

:root {
    --green-darkest: #06110d;
    --green-dark: #0b241d;
    --green-medium: #12352a;
    --green-main: #1f7a4c;
    --green-bright: #26a269;
    --green-soft: #9cc3ad;

    --gold: #f2c500;
    --gold-soft: #ffe27a;

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

    --grey-text: #5f6964;
    --grey-light: #f3f6f4;
    --border-light: #dce5e0;
}


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

    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(31, 122, 76, 0.25);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #f6f5ef 0%,
            #ffffff 55%,
            #eef5f1 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(242, 197, 0, 0.3);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #092119 0%,
            #11402f 100%
        );

    color: var(--white);
}

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

    color: var(--gold);

    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(242, 197, 0, 0.14);

    border-color:
        rgba(242, 197, 0, 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(242, 197, 0, 0.13),
            transparent
        );

    transform:
        translateX(-130%);

    transition:
        transform 0.65s ease;
}

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

    border-color:
        rgba(31, 122, 76, 0.46);

    background: #f7fbf8;

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

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

.mega-menu-card.active {
    border-color:
        rgba(242, 197, 0, 0.55);

    background:
        linear-gradient(
            120deg,
            #fffcef,
            #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: #ba9500;
}

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

.industrial-hero {
    position: relative;

    min-height: 670px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #05100c 0%,
            #092219 27%,
            #123f2f 55%,
            #0b261d 78%,
            #06110d 100%
        );

    color: var(--white);
}

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

    position: absolute;

    top: -310px;
    left: 34%;

    width: 760px;
    height: 760px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 197, 0, 0.13) 0%,
            rgba(31, 122, 76, 0.08) 48%,
            transparent 72%
        );

    pointer-events: none;
}

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

    position: absolute;

    right: -180px;
    bottom: -300px;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(31, 122, 76, 0.16),
            transparent 70%
        );

    pointer-events: none;
}

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

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

    max-width: 780px;
}

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

.industrial-hero h1 {
    max-width: 820px;

    margin:
        0 0 28px;

    color: var(--gold);

    font-size:
        clamp(
            3.25rem,
            5vw,
            5.55rem
        );

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

    letter-spacing: -3.5px;
}

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

    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 3D INDUSTRIEL
========================================= */

.industrial-visual {
    position: relative;

    width: 100%;
    height: 525px;

    display: flex;

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

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

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.008)
        );

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

    overflow: hidden;
}

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

    position: absolute;

    left: 50%;
    top: 50%;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 197, 0, 0.11) 0%,
            rgba(31, 122, 76, 0.08) 45%,
            transparent 72%
        );

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

.technical-grid {
    position: absolute;

    inset: 0;

    opacity: 0.18;

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

    background-size:
        42px 42px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 22%,
            black 78%,
            transparent
        );
}

#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: 26px;

    z-index: 5;

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

.visual-information {
    position: absolute;
    z-index: 6;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        10px 13px;

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

    border-radius: 8px;

    background:
        rgba(5, 20, 15, 0.54);

    backdrop-filter:
        blur(8px);
}

.visual-information span {
    color: var(--gold);

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

.visual-information p {
    margin: 0;

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

    font-size: 0.7rem;
}

.visual-information-top {
    top: 25px;
    right: 25px;
}

.visual-information-bottom {
    left: 25px;
    bottom: 25px;
}


/* =========================================
   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(255, 255, 255, 0.48),
            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: #fffdf3;

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


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

.industrial-introduction {
    padding:
        95px 0;

    background: var(--grey-light);
}

.industrial-introduction-container {
    width:
        min(
            1300px,
            90%
        );

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        minmax(320px, 0.9fr)
        minmax(400px, 1.1fr);

    gap: 100px;

    align-items: start;
}

.introduction-title h2 {
    margin: 0;

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

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

    letter-spacing: -2px;
}

.introduction-text {
    padding-top: 24px;
}

.introduction-text p {
    margin:
        0 0 22px;

    color: var(--grey-text);

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


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

    gap: 30px;

    align-items: start;

    margin-bottom: 68px;
}

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

    color: var(--gold);

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


/* =========================================
   CARTES DES ENJEUX
========================================= */

.needs-grid {
    display: grid;

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

    gap: 18px;

    padding-left: 105px;
}

.need-card {
    position: relative;

    min-height: 265px;

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

.need-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

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

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform 0.4s ease;
}

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

    border-color:
        rgba(242, 197, 0, 0.38);

    background:
        linear-gradient(
            145deg,
            #09251b,
            #0d3929
        );

    color: var(--white);

    box-shadow:
        0 22px 50px
        rgba(6, 17, 13, 0.17);
}

.need-card:hover::before {
    transform:
        scaleX(1);
}

.need-index {
    display: block;

    margin-bottom: 48px;

    color: var(--gold);

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

    letter-spacing: 2px;
}

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

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

.need-card p {
    margin: 0;

    color: var(--grey-text);

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

    transition:
        color 0.35s ease;
}

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


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

.industrial-services {
    background:
        linear-gradient(
            90deg,
            #06110d 0%,
            #0b241d 30%,
            #12352a 62%,
            #071711 100%
        );

    color: var(--white);
}

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

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        minmax(300px, 0.72fr)
        minmax(0, 1.28fr);

    gap: 100px;

    padding:
        115px 0;
}

.services-heading {
    position: sticky;

    top: 120px;

    align-self: start;
}

.services-heading h2 {
    margin:
        0 0 25px;

    color: var(--gold);

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

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

    letter-spacing: -2px;
}

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

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

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

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

.service-row {
    display: grid;

    grid-template-columns:
        52px 1fr 35px;

    align-items: start;

    gap: 25px;

    padding:
        31px 0;

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

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

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

    background:
        linear-gradient(
            90deg,
            rgba(242, 197, 0, 0.07),
            transparent
        );
}

.service-number {
    color: var(--gold);

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

    letter-spacing: 2px;
}

.service-content h3 {
    margin:
        0 0 12px;

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

.service-content p {
    max-width: 660px;

    margin: 0;

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

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

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

    font-size: 1.1rem;

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

.service-row:hover
.service-icon {
    color: var(--gold);

    transform:
        translate(
            4px,
            -4px
        );
}


/* =========================================
   PROCESSUS
========================================= */

.industrial-process {
    padding:
        115px 0;

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

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

    margin:
        0 auto;
}

.process-heading {
    max-width: 820px;

    margin-bottom: 85px;
}

.process-heading h2 {
    margin: 0;

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

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

    letter-spacing: -2px;
}

.process-line {
    position: relative;

    display: grid;

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

    gap: 22px;
}

.process-line::before {
    content: "";

    position: absolute;

    top: 43px;
    left: 4%;

    width: 92%;
    height: 2px;

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

.process-step {
    position: relative;
    z-index: 2;
}

.process-number {
    display: block;

    margin-bottom: 17px;

    color: var(--green-main);

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

    letter-spacing: 2px;
}

.process-point {
    width: 17px;
    height: 17px;

    margin-bottom: 28px;

    border:
        4px solid
        var(--white);

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 2px
        var(--green-main);
}

.process-step h3 {
    margin:
        0 0 13px;

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

.process-step p {
    margin: 0;

    color: var(--grey-text);

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


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

.deliverables-section {
    border-top:
        1px solid
        #e3e8e5;
}

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

    margin-left: auto;

    display: grid;

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

    gap: 14px;
}

.deliverable-card {
    position: relative;

    padding:
        24px 24px 24px 54px;

    overflow: hidden;

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

    border-radius: 7px;

    background: #f8faf9;

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

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

.deliverable-card::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 25px;

    width: 10px;
    height: 10px;

    border-radius: 2px;

    background: var(--gold);

    transform:
        translateY(-50%)
        rotate(45deg);
}

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

    border-color:
        rgba(31, 122, 76, 0.5);

    background: var(--white);
}


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

.results-section {
    background:
        linear-gradient(
            90deg,
            #06110d 0%,
            #0b241d 28%,
            #12352a 55%,
            #0b241d 78%,
            #06110d 100%
        );

    color: var(--white);
}

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

    margin:
        0 auto;

    display: grid;

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

    gap: 100px;

    padding:
        115px 0;
}

.results-title h2 {
    margin: 0;

    color: var(--gold);

    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(--gold);

    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(11, 36, 29, 0.18);
}

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

    box-shadow:
        0 20px 42px
        rgba(11, 36, 29, 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(--gold);

    transform:
        translateX(4px);
}

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

    background: #e9e9e9;
    color: #1a1a1a;

    font-size: 0.88rem;
}


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

@media (max-width: 1180px) {

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

        gap: 30px;
    }

    .industrial-hero h1 {
        font-size: 4.2rem;
    }

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

    .process-line {
        grid-template-columns:
            repeat(3, 1fr);

        gap:
            55px 30px;
    }

    .process-line::before {
        display: none;
    }

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

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

        gap: 35px;
    }
}


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

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

        grid-template-columns:
            1fr;

        padding:
            55px 0 40px;
    }

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

    .industrial-visual {
        height: 420px;
    }

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

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

    .services-heading {
        position: static;
    }
}


@media (max-width: 620px) {

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

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

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

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

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

        letter-spacing: -2.2px;
    }

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

    .industrial-visual {
        height: 340px;
    }

    .visual-information {
        display: none;
    }

    .industrial-introduction,
    .industrial-process,
    .industrial-services-container,
    .results-container,
    .content-section {
        padding-top: 85px;
        padding-bottom: 85px;
    }

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

        gap: 14px;

        margin-bottom: 48px;
    }

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

    .process-line {
        grid-template-columns:
            1fr;
    }

    .process-step {
        padding-left: 35px;
    }

    .process-point {
        position: absolute;

        top: 25px;
        left: 0;
    }

    .service-row {
        grid-template-columns:
            42px 1fr;
    }

    .service-icon {
        display: none; 
    }

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

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

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

}


@media (max-width: 980px) {

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

        gap: 42px;
    }

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

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

        margin:
            0 auto;
    }

    .industrial-introduction-container,
    .industrial-services-container,
    .results-container {
        grid-template-columns:
            1fr;

        gap: 44px;
    }

    .services-heading {
        position: static;
    }

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

        padding-left: 0;
    }

    .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,
                #09241b 0%,
                #061711 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(--gold);

        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(242, 197, 0, 0.48);

        background:
            rgba(242, 197, 0, 0.08);
    }

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

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

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

        min-height: auto;

        padding:
            62px 0 48px;
    }

    .breadcrumb {
        margin-bottom: 34px;

        flex-wrap: wrap;
    }

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

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

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

    .industrial-visual {
        height: 410px;
    }

    .industrial-introduction {
        padding:
            78px 0;
    }

    .industrial-introduction-container {
        width: 90%;

        gap: 30px;
    }

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

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

        gap: 12px;

        margin-bottom: 44px;
    }

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

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

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

    .service-row {
        grid-template-columns:
            44px 1fr 24px;

        gap: 18px;
    }

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

        gap:
            45px 24px;
    }

    .process-line::before {
        display: none;
    }

    .deliverables-grid {
        grid-template-columns:
            1fr;
    }

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

    .industrial-hero-grid,
    .industrial-introduction-container,
    .content-section,
    .industrial-process-container,
    .industrial-services-container,
    .results-container,
    .footer-container {
        width: 90%;
    }

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

    .industrial-visual {
        height: 330px;
    }

    .visual-information {
        display: none;
    }

    .introduction-title h2,
    .section-heading h2,
    .services-heading h2,
    .process-heading h2,
    .results-title h2,
    .final-cta h2 {
        letter-spacing: -1.5px;
    }

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

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

        padding:
            26px 0;
    }

    .service-icon {
        display: none;
    }

    .service-content h3 {
        font-size: 1.18rem;
    }

    .process-line {
        grid-template-columns:
            1fr;
    }

    .process-step {
        position: relative;

        padding-left: 34px;
    }

    .process-point {
        position: absolute;

        top: 25px;
        left: 0;
    }

    .deliverable-card {
        padding:
            21px 18px 21px 48px;

        font-size: 0.92rem;
    }

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

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

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

}


@media (max-width: 420px) {

    .industrial-hero-grid {
        width: 92%;
    }

    .industrial-visual {
        height: 290px;
    }

    .content-section,
    .industrial-process-container,
    .industrial-services-container,
    .results-container,
    .footer-container {
        width: 92%;
    }

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

}

