/* ==================================================
   RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* ==================================================
   VARIABLES
================================================== */

:root {

    /* BRAND */
    --black: #0B0B0C;
    --black-light: #17181A;

  --red: #C66A2B;
--red-dark: #9E4F1F;
--red-light: #FFF3EA;

    --white: #FFFFFF;

    /* GRAYS */
    --gray-50: #F7F7F8;
    --gray-100: #F1F2F4;
    --gray-200: #E4E5E8;
    --gray-500: #6B6E75;
    --gray-600: #555861;

    --border: #E7E7E9;

    --transition: 0.3s ease;
}


/* ==================================================
   CONTAINER
================================================== */

.container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}


/* ==================================================
   TOPBAR
================================================== */

.topbar {
    width: 100%;

    background: var(--black);

    color: var(--white);

    font-size: 13px;
}

.topbar-container {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* ==================================================
   TOPBAR CONTACT
================================================== */

.topbar-contact {
    display: flex;
    align-items: center;

    gap: 24px;
}

.topbar-contact a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #ffffff;

    transition: var(--transition);
}

.topbar-contact a:hover {
    color: #DFA7AF;
}

.topbar-contact i {
    color: var(--red);

    font-size: 16px;

    transition: var(--transition);
}

.topbar-contact a:hover i {
    color: #ffffff;
}


/* ==================================================
   TOPBAR SOCIAL
================================================== */

.topbar-social {
    display: flex;
    align-items: center;

    gap: 10px;
}

.topbar-social a {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    border-radius: 50%;

    transition: var(--transition);
}

.topbar-social a:hover {
    background: var(--red);

    color: #ffffff;

    transform: translateY(-2px);
}

.topbar-social i {
    font-size: 14px;
}


/* ==================================================
   HEADER
================================================== */

/* ==================================================
   HEADER FIXED
================================================== */

/* ==================================================
   HEADER FIXED
================================================== */

.header {
    width: 100%;

    background: var(--white);

    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;

    z-index: 1000;

    transition: box-shadow 0.3s ease;
}

.header .container {
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ==================================================
   LOGO
================================================== */

.logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo img {
    width: 220px;
    height: auto;

    object-fit: contain;
}


/* ==================================================
   NAVBAR
================================================== */

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;
}

.navbar a {
    position: relative;

    padding: 8px 0;

    color: var(--black);

    font-size: 15px;
    font-weight: 600;

    transition: var(--transition);
}

.navbar a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--red);

    transition: var(--transition);
}

.navbar a:hover {
    color: var(--red);
}

.navbar a:hover::after {
    width: 100%;
}


/* ==================================================
   HEADER BUTTON
================================================== */

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    background: var(--red);

    color: var(--white);

    border: 1px solid var(--red);

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}

.btn-header:hover {
    background: var(--red-dark);

    border-color: var(--red-dark);

    transform: translateY(-2px);
}


/* ==================================================
   MOBILE MENU
================================================== */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    background: var(--white);

    color: var(--black);

    font-size: 20px;

    cursor: pointer;

    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--red);

    color: var(--white);

    border-color: var(--red);
}


/* ==================================================
   HERO
================================================== */

/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: #ffffff;

    background-image:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.98) 32%,
            rgba(255, 255, 255, 0.80) 48%,
            rgba(255, 255, 255, 0.10) 72%,
            rgba(255, 255, 255, 0) 100%
        ),
        url("../assets/images/hero-logistique.png");

    background-position:
        center,
        center right;

    background-repeat:
        no-repeat,
        no-repeat;

    background-size:
        cover,
        cover;
}


/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 560px;

    display: flex;
    align-items: center;
}


/* ==================================================
   HERO TEXT
================================================== */

.hero-text {
    width: 55%;

    max-width: 780px;

    padding: 40px 0;

    /* Décaler légèrement le contenu vers la droite */
    margin-left: 45px;
}


/* ==================================================
   HERO LABEL
================================================== */

.hero-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;

    padding: 8px 15px;

    background: var(--red-light);

    color: var(--red);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* ==================================================
   HERO TITLE
================================================== */

.hero h1 {
    max-width: 760px;

    margin-bottom: 20px;

    color: var(--black);

    font-size: clamp(42px, 4.6vw, 68px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -2px;
}

.hero h1 span {
    display: block;

    color: var(--red);
}


/* ==================================================
   HERO DESCRIPTION
================================================== */

.hero p {
    max-width: 650px;

    margin-bottom: 28px;

    color: #555861;

    font-size: 16px;

    line-height: 1.65;
}


/* ==================================================
   HERO BUTTONS
================================================== */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 20px;
}


/* ==================================================
   BUTTONS
================================================== */

.btn-primary,
.btn-secondary {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 28px;

    font-size: 15px;

    font-weight: 700;

    transition: var(--transition);
}


/* ==================================================
   PRIMARY
================================================== */

.btn-primary {
    background: var(--red);

    color: var(--white);

    border: 1px solid var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);

    border-color: var(--red-dark);

    transform: translateY(-2px);
}


/* ==================================================
   SECONDARY
================================================== */

.btn-secondary {
    background: #ffffff;

    color: var(--red);

    border: 1px solid var(--red);
}

.btn-secondary:hover {
    background: var(--red);

    color: #ffffff;

    transform: translateY(-2px);
}

/* ==================================================
   NUMBERS
================================================== */

.numbers {
    padding: 35px 0 45px;
    background: #ffffff;
}


/* ==================================================
   NUMBERS GRID
================================================== */

.numbers-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


/* ==================================================
   NUMBER CARD
================================================== */

.number-card {
    padding: 28px 35px;

    border-right: 1px solid var(--border);
}

.number-card:last-child {
    border-right: none;
}


/* ==================================================
   NUMBER
================================================== */
/* ==================================================
   NUMBER
================================================== */

.number {
    display: flex;
    align-items: baseline;

    margin-bottom: 10px;

    color: var(--black);

    font-size: 52px;

    font-weight: 800;

    line-height: 1;
}


/* CHIFFRES EN MARRON / ORANGE */

.number .counter {
    color: var(--red) !important;
}


/* + ET % EN NOIR */

.number > span:not(.counter) {
    color: var(--black);
}

.number .counter {
    color: var(--red);
}

.number > span:first-child {
    color: var(--black);
}

.number > span:last-child {
    color: var(--black);
}


/* ==================================================
   TITLE
================================================== */

.number-card h3 {
    margin-bottom: 7px;

    color: var(--black);

    font-size: 17px;

    line-height: 1.3;
}


/* ==================================================
   DESCRIPTION
================================================== */

.number-card p {
    max-width: 260px;

    margin: 0;

    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.5;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .numbers {
        padding: 30px 0 40px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .number-card:nth-child(2) {
        border-right: none;
    }

    .number-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .numbers {
        padding: 25px 0 35px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .number-card {
        padding: 25px 20px;

        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .number-card:last-child {
        border-bottom: none;
    }

    .number {
        font-size: 45px;
    }

}
/* ==================================================
   ACTIVITIES
================================================== */

.activities {
    position: relative;

    padding: 100px 0;

    background: var(--gray-50);
}


/* ==================================================
   ACTIVITIES GRID
================================================== */

.activities-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* ==================================================
   ACTIVITY CARD
================================================== */

.activity-card {
    position: relative;

    overflow: hidden;

    padding: 38px 30px;

    background: var(--white);

    border: 1px solid var(--border);

    transition: var(--transition);
}

.activity-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: var(--red);

    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-7px);

    border-color: rgba(139, 30, 45, 0.25);

    box-shadow: 0 15px 40px rgba(80, 20, 30, 0.08);
}

.activity-card:hover::before {
    width: 100%;
}


/* ==================================================
   ACTIVITY ICON
================================================== */

.activity-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: var(--red);

    color: var(--white);

    font-size: 13px;
    font-weight: 800;

    transition: var(--transition);
}

.activity-card:hover .activity-icon {
    background: var(--red-dark);
}


/* ==================================================
   ACTIVITY TITLE
================================================== */

.activity-card h3 {
    margin-bottom: 15px;

    color: var(--black);

    font-size: 21px;

    line-height: 1.3;
}


/* ==================================================
   ACTIVITY DESCRIPTION
================================================== */

.activity-card p {
    margin-bottom: 22px;

    color: var(--gray-600);

    font-size: 15px;

    line-height: 1.7;
}


/* ==================================================
   ACTIVITY LINK
================================================== */

.activity-card a {
    display: inline-flex;
    align-items: center;

    color: var(--red);

    font-size: 14px;
    font-weight: 800;

    transition: var(--transition);
}

.activity-card a:hover {
    color: var(--red-dark);

    transform: translateX(4px);
}


/* ==================================================
   FOOTER
================================================== */

.footer {
    padding: 35px 0;

    background: var(--black);

    color: var(--white);

    text-align: center;
}

.footer p {
    color: #B8BBC2;

    font-size: 14px;
}


/* ==================================================
   FOCUS
================================================== */

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(139, 30, 45, 0.30);

    outline-offset: 3px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {

    .header .container {
        gap: 20px;
    }

    .logo img {
        width: 190px;
    }

    .navbar {
        gap: 20px;
    }

    .navbar a {
        font-size: 14px;
    }

    .btn-header {
        padding: 13px 18px;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: clamp(43px, 6vw, 65px);
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

    .container {
        width: 90%;
    }


    /* TOPBAR */

    .topbar-container {
        min-height: 38px;
    }

    .topbar-contact {
        gap: 15px;
    }

    .topbar-contact a {
        font-size: 11px;
    }

    .topbar-contact a span {
        display: none;
    }

    .topbar-contact i {
        font-size: 15px;
    }

    .topbar-social {
        gap: 5px;
    }

    .topbar-social a {
        width: 25px;
        height: 25px;
    }

    .topbar-social i {
        font-size: 13px;
    }


    /* HEADER */

    .header .container {
        min-height: 75px;
    }

    .logo img {
        width: 175px;
    }

    .navbar {
        display: none;

        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        padding: 25px;

        background: var(--white);

        border-top: 1px solid var(--border);

        border-bottom: 1px solid var(--border);

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        width: 100%;

        padding: 8px 0;

        font-size: 15px;
    }

    .navbar a::after {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }


    /* HERO */

    .hero {
        min-height: 600px;

        padding: 80px 0;
    }

    .hero::before {
        width: 300px;
        height: 300px;

        right: -150px;
        top: -100px;
    }

    .hero::after {
        width: 180px;
        height: 180px;

        right: -50px;
        bottom: -80px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-label {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 46px;

        line-height: 1.08;

        letter-spacing: -1.5px;
    }

    .hero p {
        font-size: 16px;

        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }


    /* SECTION */

    .activities {
        padding: 75px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .section-title p {
        font-size: 15px;
    }


    /* ACTIVITIES */

    .activities-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .activity-card {
        padding: 30px 25px;
    }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .container {
        width: 90%;
    }


    /* TOPBAR */

    .topbar-contact {
        gap: 10px;
    }

    .topbar-social {
        gap: 2px;
    }


    /* HEADER */

    .logo img {
        width: 155px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;

        font-size: 18px;
    }


    /* HERO */

    .hero {
        min-height: 560px;

        padding: 65px 0;
    }

    .hero h1 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .hero-label {
        padding: 7px 11px;

        font-size: 10px;
    }

    .hero p {
        font-size: 15px;
    }


    /* SECTION */

    .section-title h2 {
        font-size: 30px;
    }
}


/* ==================================================
   EXTRA SMALL MOBILE
================================================== */

@media (max-width: 360px) {

    .logo img {
        width: 140px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero {
        padding: 55px 0;
    }
}

@media (max-width: 768px) {

    .hero {
        min-height: 680px;
    }

    .hero-content {
        min-height: 680px;
    }

    .hero-text {
        width: 100%;
        margin-left: 0;
        padding-top: 55px;
    }

}

/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: #ffffff;

    background-image:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.98) 32%,
            rgba(255, 255, 255, 0.80) 48%,
            rgba(255, 255, 255, 0.10) 72%,
            rgba(255, 255, 255, 0) 100%
        ),
        url("../assets/images/hero-logistique.png");

    background-position:
        center,
        center right;

    background-repeat:
        no-repeat,
        no-repeat;

    background-size:
        cover,
        cover;
}


/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 500px;

    display: flex;
    align-items: center;
}

@media (max-width: 1100px) {

    .hero {
        min-height: 480px;
    }

    .hero-content {
        min-height: 480px;
    }

}

/* ==================================================
   ABOUT
================================================== */

.about {
    padding: 35px 0 45px;
    margin: 0;
    background: #ffffff;
}


/* ==================================================
   ABOUT CONTAINER
================================================== */

.about-container {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 60px;
}


/* ==================================================
   ABOUT IMAGE
================================================== */

.about-image {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: var(--gray-100);
}

.about-image img {
    width: 100%;
    height: 100%;

    min-height: 500px;

    object-fit: cover;
}


/* ==================================================
   ABOUT BADGE
================================================== */

.about-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;

    min-width: 145px;

    padding: 18px 20px;

    background: var(--red);

    color: var(--white);
}

.about-badge strong {
    font-size: 32px;
    line-height: 1;
}

.about-badge span {
    margin-top: 7px;

    font-size: 13px;
    font-weight: 600;
}


/* ==================================================
   ABOUT CONTENT
================================================== */

.about-content {
    max-width: 650px;
}


/* ==================================================
   ABOUT LABEL
================================================== */

.about-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--red);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* ==================================================
   ABOUT TITLE
================================================== */

.about-content h2 {
    margin-bottom: 22px;

    color: var(--black);

    font-size: 42px;

    line-height: 1.15;

    letter-spacing: -1px;
}

.about-content h2 span {
    color: var(--red);
}


/* ==================================================
   ABOUT TEXT
================================================== */

.about-content > p {
    margin-bottom: 18px;

    color: var(--gray-600);

    font-size: 16px;

    line-height: 1.75;
}

.about-content .about-intro {
    color: #3f4349;

    font-size: 17px;

    line-height: 1.75;
}


/* ==================================================
   ABOUT FEATURES
================================================== */

.about-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin: 25px 0;
}


/* ==================================================
   ABOUT FEATURE
================================================== */

.about-feature {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--red-light);

    color: var(--red);

    font-size: 16px;
}

.about-feature h3 {
    margin-bottom: 6px;

    color: var(--black);

    font-size: 15px;
}

.about-feature p {
    color: var(--gray-500);

    font-size: 13px;

    line-height: 1.5;
}


/* ==================================================
   ABOUT BUTTON
================================================== */

.about-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    background: var(--black);

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);
}

.about-button:hover {
    background: var(--red);

    transform: translateY(-2px);
}

.about-button i {
    font-size: 12px;

    transition: var(--transition);
}

.about-button:hover i {
    transform: translateX(4px);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .about {
        padding: 30px 0 40px;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image {
        min-height: 420px;
    }

    .about-image img {
        min-height: 420px;
    }

    .about-content {
        max-width: 100%;
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .about {
        padding: 25px 0 35px;
    }

    .about-container {
        gap: 30px;
    }

    .about-image {
        min-height: 330px;
    }

    .about-image img {
        min-height: 330px;
    }

    .about-badge {
        left: 15px;
        bottom: 15px;

        padding: 14px 16px;
    }

    .about-badge strong {
        font-size: 27px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;

        gap: 20px;
    }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .about {
        padding: 80px 0;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        min-height: 420px;
    }

    .about-image img {
        min-height: 420px;
    }

    .about-content {
        max-width: 100%;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .about {
        padding: 65px 0;
    }

    .about-container {
        gap: 35px;
    }

    .about-image {
        min-height: 330px;
    }

    .about-image img {
        min-height: 330px;
    }

    .about-badge {
        left: 15px;
        bottom: 15px;

        padding: 14px 16px;
    }

    .about-badge strong {
        font-size: 27px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;

        gap: 25px;
    }

}

/* ==================================================
   NUMBERS
================================================== */

.numbers {
    padding: 0;
    margin: 0;
    background: #ffffff;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin: 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.number-card {
    padding: 28px 35px;

    border-right: 1px solid var(--border);
}

.number-card:last-child {
    border-right: none;
}


/* ==================================================
   NUMBER
================================================== */

.number {
    display: flex;
    align-items: baseline;

    margin-bottom: 10px;

    font-size: 52px;
    font-weight: 800;
    line-height: 1;

    color: var(--black);
}

/* CHIFFRES EN MARRON */
.number .counter {
    color: var(--red) !important;
}

/* + ET % EN NOIR */
.number > span:not(.counter) {
    color: var(--black) !important;
}


/* ==================================================
   NUMBER TITLE
================================================== */

.number-card h3 {
    margin-bottom: 7px;

    color: var(--black);

    font-size: 17px;
    line-height: 1.3;
}


/* ==================================================
   NUMBER DESCRIPTION
================================================== */

.number-card p {
    max-width: 260px;

    margin: 0;

    color: var(--gray-500);

    font-size: 14px;
    line-height: 1.5;
}


/* ==================================================
   ABOUT
================================================== */

.about {
    padding: 32px 0 40px;
    margin: 0;

    background: #ffffff;
}

.about .container {
    margin: 0 auto;
}


/* ==================================================
   ABOUT CONTAINER
================================================== */

.about-container {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 60px;
}


/* ==================================================
   ABOUT IMAGE
================================================== */

.about-image {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: var(--gray-100);
}

.about-image img {
    width: 100%;
    height: 500px;

    object-fit: cover;
}


/* ==================================================
   ABOUT BADGE
================================================== */

.about-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;

    min-width: 145px;

    padding: 18px 20px;

    background: var(--red);

    color: var(--white);
}

.about-badge strong {
    font-size: 32px;
    line-height: 1;
}

.about-badge span {
    margin-top: 7px;

    font-size: 13px;
    font-weight: 600;
}


/* ==================================================
   ABOUT CONTENT
================================================== */

.about-content {
    max-width: 650px;
}


/* ==================================================
   ABOUT LABEL
================================================== */

.about-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--red);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* ==================================================
   ABOUT TITLE
================================================== */

.about-content h2 {
    margin-bottom: 22px;

    color: var(--black);

    font-size: 42px;
    line-height: 1.15;

    letter-spacing: -1px;
}

.about-content h2 span {
    color: var(--red);
}


/* ==================================================
   ABOUT TEXT
================================================== */

.about-content > p {
    margin-bottom: 18px;

    color: var(--gray-600);

    font-size: 16px;
    line-height: 1.75;
}

.about-content .about-intro {
    color: #3f4349;

    font-size: 17px;
    line-height: 1.75;
}


/* ==================================================
   ABOUT FEATURES
================================================== */

.about-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin: 25px 0;
}

.about-feature {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--red-light);

    color: var(--red);

    font-size: 16px;
}

.about-feature h3 {
    margin-bottom: 6px;

    color: var(--black);

    font-size: 15px;
}

.about-feature p {
    color: var(--gray-500);

    font-size: 13px;
    line-height: 1.5;
}


/* ==================================================
   ABOUT BUTTON
================================================== */

.about-button {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    background: var(--black);

    color: var(--white);

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}

.about-button:hover {
    background: var(--red);

    transform: translateY(-2px);
}

.about-button i {
    font-size: 12px;

    transition: var(--transition);
}

.about-button:hover i {
    transform: translateX(4px);
}

.about-button:hover i {
    transform: translateX(4px);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .number-card:nth-child(2) {
        border-right: none;
    }

    .number-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .about {
        padding: 30px 0 35px;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-image,
    .about-image img {
        min-height: 420px;
        height: 420px;
    }

    .about-content {
        max-width: 100%;
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .number-card {
        padding: 25px 20px;

        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .number-card:last-child {
        border-bottom: none;
    }

    .number {
        font-size: 45px;
    }

    .about {
        padding: 25px 0 30px;
    }

    .about-container {
        gap: 30px;
    }

    .about-image,
    .about-image img {
        min-height: 330px;
        height: 330px;
    }

    .about-badge {
        left: 15px;
        bottom: 15px;

        padding: 14px 16px;
    }

    .about-badge strong {
        font-size: 27px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;

        gap: 20px;
    }
}
/* ==================================================
   ACTIVITIES
================================================== */

.activities {
    padding: 70px 0 90px;

    background: #ffffff;
}


/* ==================================================
   ACTIVITIES HEADER
================================================== */

.activities-header {
    max-width: 950px;

    margin: 0 auto 45px;

    text-align: center;
}


.activities-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--red);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.activities-header h2 {
    margin: 0 0 18px;

    color: var(--black);

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.12;

    letter-spacing: -1.5px;

    font-weight: 800;
}


.activities-header h2 span {
    display: block;

    color: var(--red);
}


.activities-header p {
    max-width: 850px;

    margin: 0 auto;

    color: var(--gray-600);

    font-size: 16px;

    line-height: 1.7;
}


/* ==================================================
   ACTIVITIES GRID
================================================== */

.activities-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


/* ==================================================
   ACTIVITY CARD
================================================== */

.activity-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--border);

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}


.activity-card:hover {
    transform: translateY(-6px);

    border-color: rgba(198, 106, 43, 0.35);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}


/* ==================================================
   ACTIVITY IMAGE
================================================== */

.activity-image {
    position: relative;

    width: 100%;

    height: 155px;

    overflow: hidden;

    background: var(--gray-100);
}


.activity-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.activity-card:hover .activity-image img {
    transform: scale(1.05);
}


/* ==================================================
   ACTIVITY NUMBER
================================================== */

.activity-number {
    position: absolute;

    top: 12px;
    left: 15px;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--red);

    color: #ffffff;

    font-size: 20px;

    font-weight: 800;
}


/* ==================================================
   ACTIVITY CONTENT
================================================== */

.activity-content {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 20px 18px 24px;
}


/* ==================================================
   ACTIVITY ICON
================================================== */

.activity-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: var(--red);

    border: 1px solid var(--red);

    font-size: 19px;

    transition: all 0.3s ease;
}


.activity-card:hover .activity-icon {
    background: var(--red);

    color: #ffffff;
}


/* ==================================================
   ACTIVITY TITLE
================================================== */

.activity-content h3 {
    margin: 2px 0 8px;

    color: var(--black);

    font-size: 18px;

    line-height: 1.25;

    font-weight: 700;
}


/* ==================================================
   ACTIVITY DESCRIPTION
================================================== */

.activity-content p {
    margin: 0;

    color: var(--gray-600);

    font-size: 14px;

    line-height: 1.65;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .activities {
        padding: 60px 0 70px;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .activities {
        padding: 50px 0 60px;
    }


    .activities-header {
        margin-bottom: 30px;
    }


    .activities-header h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .activities-header p {
        font-size: 15px;
    }


    .activities-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .activity-image {
        height: 180px;
    }


    .activity-content {
        padding: 20px;

        gap: 16px;
    }


    .activity-content h3 {
        font-size: 17px;
    }


    .activity-content p {
        font-size: 14px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .activity-content {
        flex-direction: column;
    }

}


/* ==================================================
   SUPPRESSION ESPACE ENTRE ABOUT ET ACTIVITÉS
================================================== */

/* ABOUT : réduit l'espace en bas */
.about {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* ACTIVITÉS : réduit l'espace en haut */
.activities {
    padding-top: 20px !important;
    margin-top: 0 !important;
}

/* Supprime les marges éventuelles du container */
.about + .activities {
    margin-top: 0 !important;
}
.about {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.activities {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
/* ==================================================
   NOS ENGAGEMENTS
================================================== */

.commitments {
    padding: 85px 0 95px;

    background: #ffffff;
}


/* ==================================================
   HEADER
================================================== */

.commitments-header {
    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}

.commitments-header span {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--red);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.commitments-header h2 {
    margin-bottom: 15px;

    color: var(--black);

    font-size: clamp(35px, 4vw, 48px);

    line-height: 1.15;

    letter-spacing: -1px;
}

.commitments-header h2 strong {
    color: var(--red);

    font-weight: 800;
}

.commitments-header p {
    margin: 0;

    color: var(--gray-600);

    font-size: 16px;

    line-height: 1.7;
}


/* ==================================================
   LIST
================================================== */

.commitments-list {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
}


/* ==================================================
   ITEM
================================================== */

.commitment-item {
    position: relative;

    min-height: 250px;

    padding: 40px 30px;

    border-right: 1px solid var(--border);

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.commitment-item:last-child {
    border-right: none;
}


/* ==================================================
   HOVER
================================================== */

.commitment-item:hover {
    background: #fffaf6;

    transform: translateY(-4px);
}


/* ==================================================
   ICON
================================================== */

.commitment-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    background: var(--red-light);

    color: var(--red);

    font-size: 18px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.commitment-item:hover .commitment-icon {
    background: var(--red);

    color: #ffffff;

    transform: translateY(-5px);
}


/* ==================================================
   NUMBER
================================================== */

.commitment-number {
    display: block;

    margin-bottom: 7px;

    color: #b9b9b9;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: color 0.3s ease;
}

.commitment-item:hover .commitment-number {
    color: var(--red);
}


/* ==================================================
   TITLE
================================================== */

.commitment-text h3 {
    margin-bottom: 10px;

    color: var(--black);

    font-size: 20px;

    line-height: 1.3;
}


/* ==================================================
   DESCRIPTION
================================================== */

.commitment-text p {
    max-width: 240px;

    margin: 0;

    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.7;
}


/* ==================================================
   BOTTOM ANIMATION
================================================== */

.commitment-item::after {
    content: "";

    position: absolute;

    left: 30px;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--red);

    transition: width 0.4s ease;
}

.commitment-item:hover::after {
    width: 55px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .commitments {
        padding: 70px 0 80px;
    }

    .commitments-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitment-item:nth-child(2) {
        border-right: none;
    }

    .commitment-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .commitments {
        padding: 60px 0 70px;
    }

    .commitments-header {
        margin-bottom: 40px;
    }

    .commitments-header h2 {
        font-size: 32px;
    }

    .commitments-header p {
        font-size: 15px;
    }

    .commitments-list {
        grid-template-columns: 1fr;
    }

    .commitment-item {
        min-height: auto;

        padding: 30px 22px;

        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .commitment-item:last-child {
        border-bottom: none;
    }

    .commitment-item:nth-child(2) {
        border-right: none;
    }

    .commitment-text p {
        max-width: 100%;
    }

    .commitment-item::after {
        left: 22px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .commitments {
        padding: 50px 0 60px;
    }

    .commitment-item {
        padding: 28px 20px;
    }

    
}
/* ==================================================
   SUPPRESSION ESPACE ENTRE ACTIVITÉS ET ENGAGEMENTS
================================================== */

/* Fin de la section précédente */
.activities {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Début des engagements */
.commitments {
    padding-top: 20px !important;
    margin-top: 0 !important;
}

/* Aucun espace supplémentaire du container */
.commitments .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Header des engagements */
.commitments-header {
    margin-top: 0 !important;
}
/* ==================================================
   WHY US
================================================== */

.why-us {
    padding: 85px 0 90px;
    background: #ffffff;
}


/* ==================================================
   HEADER
================================================== */

.why-us-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.why-us-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--red);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.why-us-header h2 {
    margin-bottom: 18px;

    color: var(--black);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.why-us-header h2 span {
    color: var(--red);
}

.why-us-header p {
    max-width: 720px;

    margin: 0 auto;

    color: var(--gray-600);

    font-size: 16px;

    line-height: 1.7;
}


/* ==================================================
   GRID
================================================== */

.why-us-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


/* ==================================================
   ITEM
================================================== */

.why-us-item {
    position: relative;

    min-height: 230px;

    padding: 35px 30px;

    border-right: 1px solid var(--border);

    transition: var(--transition);
}

.why-us-item:last-child {
    border-right: none;
}


/* ==================================================
   NUMBER
================================================== */

.why-us-number {
    margin-bottom: 28px;

    color: var(--red);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* ==================================================
   CONTENT
================================================== */

.why-us-content h3 {
    margin-bottom: 12px;

    color: var(--black);

    font-size: 19px;

    line-height: 1.3;

    transition: var(--transition);
}

.why-us-content p {
    max-width: 260px;

    margin: 0;

    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.65;
}


/* ==================================================
   HOVER
================================================== */

.why-us-item::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: var(--red);

    transition: width 0.35s ease;
}

.why-us-item:hover::before {
    width: 100%;
}

.why-us-item:hover {
    background: #fffaf7;

    transform: translateY(-4px);
}

.why-us-item:hover .why-us-content h3 {
    color: var(--red);
}


/* ==================================================
   CTA
================================================== */

.why-us-cta {
    margin-top: 55px;

    padding: 30px 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    background: var(--gray-50);

    border: 1px solid var(--border);
}

.why-us-cta h3 {
    margin-bottom: 5px;

    color: var(--black);

    font-size: 22px;
}

.why-us-cta p {
    margin: 0;

    color: var(--gray-500);

    font-size: 14px;
}


/* ==================================================
   BUTTON
================================================== */

.why-us-button {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 24px;

    background: var(--red);

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    border: 1px solid var(--red);

    transition: var(--transition);
}

.why-us-button:hover {
    background: var(--red-dark);

    border-color: var(--red-dark);

    transform: translateY(-2px);
}

.why-us-button i {
    font-size: 12px;

    transition: transform 0.3s ease;
}

.why-us-button:hover i {
    transform: translateX(4px);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .why-us {
        padding: 70px 0 75px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-item:nth-child(2) {
        border-right: none;
    }

    .why-us-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .why-us {
        padding: 55px 0 60px;
    }

    .why-us-header {
        margin-bottom: 35px;
    }

    .why-us-header h2 {
        font-size: 32px;

        letter-spacing: -0.8px;
    }

    .why-us-header p {
        font-size: 15px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-item {
        min-height: auto;

        padding: 28px 22px;

        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .why-us-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .why-us-item:last-child {
        border-bottom: none;
    }

    .why-us-number {
        margin-bottom: 18px;
    }

    .why-us-cta {
        margin-top: 35px;

        padding: 25px 22px;

        flex-direction: column;

        align-items: flex-start;
    }

    .why-us-button {
        width: 100%;

        justify-content: center;
    }

}

/* ==================================================
   PROCESS / ACCOMPAGNEMENT
================================================== */

/* ==================================================
   PROCESS / ACCOMPAGNEMENT
================================================== */

.process-section {
    padding: 55px 0 65px;

    background: #ffffff;

    color: var(--black);
}


/* ==================================================
   LAYOUT
================================================== */

.process-layout {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    align-items: center;
}


/* ==================================================
   INTRO
================================================== */

.process-intro {
    max-width: 500px;
}

.process-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--red);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.process-intro h2 {
    margin-bottom: 18px;

    color: var(--black);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.process-intro h2 span {
    display: block;

    color: var(--red);
}

.process-intro > p {
    max-width: 450px;

    margin-bottom: 25px;

    color: var(--gray-600);

    font-size: 15px;

    line-height: 1.7;
}


/* ==================================================
   BUTTON
================================================== */

.process-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    background: var(--red);

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);
}

.process-button:hover {
    background: var(--red-dark);

    transform: translateY(-2px);
}

.process-button i {
    font-size: 11px;

    transition: 0.3s ease;
}

.process-button:hover i {
    transform: translateX(4px);
}


/* ==================================================
   STEPS
================================================== */

.process-steps {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}


/* ==================================================
   STEP CARD
================================================== */

.process-step {
    position: relative;

    min-height: 170px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid var(--border);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* ==================================================
   HOVER
================================================== */

.process-step:hover {
    transform: translateY(-5px);

    border-color: var(--red);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}


/* ==================================================
   NUMBER
================================================== */

.process-step-number {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: var(--red-light);

    color: var(--red);

    font-size: 11px;

    font-weight: 800;

    transition: var(--transition);
}

.process-step:hover .process-step-number {
    background: var(--red);

    color: #ffffff;

    transform: scale(1.08);
}


/* ==================================================
   TITLE
================================================== */

.process-step-content h3 {
    margin-bottom: 7px;

    color: var(--black);

    font-size: 17px;

    line-height: 1.3;

    transition: color 0.3s ease;
}

.process-step:hover .process-step-content h3 {
    color: var(--red);
}


/* ==================================================
   DESCRIPTION
================================================== */

.process-step-content p {
    margin: 0;

    color: var(--gray-500);

    font-size: 13px;

    line-height: 1.6;
}


/* ==================================================
   RED ACCENT
================================================== */

.process-step::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--red);

    transition: width 0.35s ease;
}

.process-step:hover::after {
    width: 45px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .process-section {
        padding: 50px 0 60px;
    }

    .process-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .process-intro {
        max-width: 700px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .process-section {
        padding: 45px 0 50px;
    }

    .process-layout {
        gap: 30px;
    }

    .process-intro h2 {
        font-size: 34px;
    }

    .process-intro > p {
        font-size: 14px;
    }

    .process-button {
        width: 100%;

        justify-content: center;
    }

    .process-steps {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .process-step {
        min-height: auto;

        padding: 22px;
    }

}

/* ==================================================
   DECORATION
================================================== */

.process-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(198, 106, 43, 0.25);
}

.process-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -180px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(198, 106, 43, 0.06);
}


/* ==================================================
   LAYOUT
================================================== */

.process-layout {

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 100px;

    align-items: center;

    position: relative;

    z-index: 2;
}


/* ==================================================
   INTRO
================================================== */

.process-intro {
    max-width: 500px;
}

.process-label {

    display: inline-block;

    margin-bottom: 20px;

    color: var(--red);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.process-intro h2 {

    margin-bottom: 25px;

    color: #ffffff;

    font-size: clamp(40px, 4.5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.process-intro h2 span {
    display: block;

    color: var(--red);
}

.process-intro > p {

    max-width: 450px;

    margin-bottom: 35px;

    color: #B8BBC2;

    font-size: 16px;

    line-height: 1.75;
}


/* ==================================================
   BUTTON
================================================== */

.process-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 24px;

    background: var(--red);

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);
}

.process-button:hover {

    background: var(--red-dark);

    transform: translateX(5px);
}

.process-button i {
    font-size: 12px;

    transition: 0.3s ease;
}

.process-button:hover i {
    transform: translateX(5px);
}


/* ==================================================
   STEPS
================================================== */

.process-steps {

    position: relative;
}


/* LIGNE VERTICALE */

.process-steps::before {

    content: "";

    position: absolute;

    left: 31px;

    top: 32px;

    bottom: 32px;

    width: 1px;

    background: rgba(255,255,255,0.15);
}


/* ==================================================
   STEP
================================================== */

.process-step {

    position: relative;

    display: grid;

    grid-template-columns: 64px 1fr;

    gap: 25px;

    padding: 25px 0;

    transition: var(--transition);
}


/* ==================================================
   NUMBER
================================================== */

.process-step-number {

    position: relative;

    z-index: 2;

    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 50%;

    background: #0B0B0C;

    color: var(--red);

    font-size: 14px;

    font-weight: 800;

    transition: var(--transition);
}


/* ==================================================
   CONTENT
================================================== */

.process-step-content {

    padding: 5px 0 20px;

    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.process-step:last-child .process-step-content {
    border-bottom: none;
}

.process-step-content h3 {

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 20px;

    transition: var(--transition);
}

.process-step-content p {

    max-width: 500px;

    margin: 0;

    color: #8F939B;

    font-size: 14px;

    line-height: 1.65;
}


/* ==================================================
   HOVER ANIMATION
================================================== */

.process-step:hover {

    transform: translateX(8px);
}

.process-step:hover .process-step-number {

    background: var(--red);

    border-color: var(--red);

    color: #ffffff;

    transform: scale(1.08);
}

.process-step:hover .process-step-content h3 {

    color: var(--red);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .process-section {
        padding: 75px 0;
    }

    .process-layout {

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .process-intro {
        max-width: 700px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .process-section {
        padding: 60px 0;
    }

    .process-layout {
        gap: 45px;
    }

    .process-intro h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .process-intro > p {
        font-size: 15px;
    }

    .process-step {

        grid-template-columns: 50px 1fr;

        gap: 18px;

        padding: 20px 0;
    }

    .process-step-number {

        width: 50px;
        height: 50px;

        font-size: 12px;
    }

    .process-steps::before {

        left: 24px;

        top: 25px;

        bottom: 25px;
    }

    .process-step-content h3 {
        font-size: 17px;
    }

    .process-step-content p {
        font-size: 13px;
    }

    .process-button {
        width: 100%;

        justify-content: center;
    }

}

/* ==================================================
   SUPPRIMER L'ESPACE ENTRE ENGAGEMENTS ET APPROCHE
================================================== */

/* Section NOS ENGAGEMENTS */
.commitments {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Contenu interne des engagements */
.commitments .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}


/* ==================================================
   SECTION NOTRE APPROCHE
================================================== */

.process-section {
    padding-top: 20px !important;
    margin-top: 0 !important;
}

/* Header de la section précédente */
.commitments-header {
    margin-bottom: 25px !important;
}


/* Évite un éventuel espace du premier élément */
.process-section .container {
    margin-top: 0 !important;
}

/* ==================================================
   NOTRE EXPERTISE
================================================== */

.expertise {
    padding: 70px 0 75px;

    background: #ffffff;
}


/* ==================================================
   HEADER
================================================== */

.expertise-header {
    max-width: 850px;

    margin: 0 auto 45px;

    text-align: center;
}

.expertise-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--red);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.expertise-header h2 {
    margin-bottom: 17px;

    color: var(--black);

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.expertise-header h2 span {
    color: var(--red);
}

.expertise-header p {
    max-width: 750px;

    margin: 0 auto;

    color: var(--gray-600);

    font-size: 15px;

    line-height: 1.7;
}


/* ==================================================
   LIST
================================================== */

.expertise-list {
    border-top: 1px solid var(--border);
}


/* ==================================================
   ROW
================================================== */

.expertise-row {
    display: grid;

    grid-template-columns: 70px 1fr 1.2fr 50px;

    align-items: center;

    gap: 25px;

    min-height: 125px;

    padding: 22px 25px;

    border-bottom: 1px solid var(--border);

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}


/* ==================================================
   NUMBER
================================================== */

.expertise-number {
    color: var(--red);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* ==================================================
   TITLE
================================================== */

.expertise-title h3 {
    color: var(--black);

    font-size: 19px;

    line-height: 1.3;

    transition: color 0.3s ease;
}


/* ==================================================
   DESCRIPTION
================================================== */

.expertise-description p {
    max-width: 480px;

    margin: 0;

    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.6;
}


/* ==================================================
   ARROW
================================================== */

.expertise-arrow {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    color: var(--red);

    font-size: 12px;

    transition: var(--transition);
}


/* ==================================================
   HOVER
================================================== */

.expertise-row:hover {
    padding-left: 35px;

    background: #fffaf7;
}

.expertise-row:hover .expertise-title h3 {
    color: var(--red);
}

.expertise-row:hover .expertise-arrow {
    background: var(--red);

    border-color: var(--red);

    color: #ffffff;

    transform: translateX(5px);
}


/* ==================================================
   CTA
================================================== */

.expertise-cta {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-top: 35px;

    text-align: center;
}

.expertise-cta p {
    margin: 0;

    color: var(--gray-600);

    font-size: 15px;
}

.expertise-cta a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--red);

    font-size: 14px;

    font-weight: 800;

    transition: var(--transition);
}

.expertise-cta a:hover {
    color: var(--red-dark);

    transform: translateX(4px);
}

.expertise-cta i {
    font-size: 11px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .expertise {
        padding: 60px 0 65px;
    }

    .expertise-row {
        grid-template-columns: 55px 1fr;

        gap: 15px;

        padding: 25px 20px;
    }

    .expertise-description {
        grid-column: 2;
    }

    .expertise-arrow {
        display: none;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .expertise {
        padding: 50px 0 55px;
    }

    .expertise-header {
        margin-bottom: 30px;
    }

    .expertise-header h2 {
        font-size: 32px;
    }

    .expertise-header p {
        font-size: 14px;
    }

    .expertise-row {
        grid-template-columns: 45px 1fr;

        min-height: auto;

        padding: 22px 15px;

        gap: 12px;
    }

    .expertise-number {
        font-size: 12px;
    }

    .expertise-title h3 {
        font-size: 17px;
    }

    .expertise-description p {
        font-size: 13px;
    }

    .expertise-cta {
        flex-direction: column;

        gap: 8px;

        margin-top: 25px;
    }

}
/* ==================================================
   SUPPRESSION ESPACE ENTRE ENGAGEMENTS ET EXPERTISE
================================================== */

.engagements {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.expertise {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Évite aussi un espace venant du container */
.engagements + .expertise {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ==================================================
   CONTACT HERO
================================================== */

.contact-hero {
    padding: 65px 0 55px;

    background: #fafafa;

    border-bottom: 1px solid var(--border);
}

.contact-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--red);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.contact-hero h1 {
    max-width: 750px;

    margin-bottom: 18px;

    color: var(--black);

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.contact-hero h1 span {
    color: var(--red);
}

.contact-hero p {
    max-width: 650px;

    margin: 0;

    color: var(--gray-600);

    font-size: 17px;

    line-height: 1.7;
}


/* ==================================================
   CONTACT SECTION
================================================== */

.contact-section {
    padding: 70px 0 80px;

    background: #ffffff;
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: start;
}


/* ==================================================
   CONTACT INFO
================================================== */

.contact-info {
    max-width: 480px;
}

.contact-small-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--red);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.contact-info h2 {
    margin-bottom: 18px;

    color: var(--black);

    font-size: 42px;

    line-height: 1.1;
}

.contact-info h2 span {
    display: block;

    color: var(--red);
}

.contact-info > p {
    margin-bottom: 35px;

    color: var(--gray-600);

    font-size: 15px;

    line-height: 1.7;
}


/* ==================================================
   CONTACT ITEMS
================================================== */

.contact-info-item {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

    padding: 15px;

    border: 1px solid var(--border);

    transition: var(--transition);
}

.contact-info-item:hover {
    border-color: var(--red);

    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--red-light);

    color: var(--red);

    font-size: 16px;
}

.contact-info-item span {
    display: block;

    margin-bottom: 3px;

    color: var(--gray-500);

    font-size: 12px;
}

.contact-info-item strong {
    display: block;

    color: var(--black);

    font-size: 14px;
}


/* ==================================================
   FORM BOX
================================================== */

.contact-form-box {
    padding: 35px;

    background: #ffffff;

    border: 1px solid var(--border);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h3 {
    margin-bottom: 7px;

    color: var(--black);

    font-size: 24px;
}

.form-header p {
    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.6;
}


/* ==================================================
   FORM
================================================== */

.contact-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.form-group:nth-last-of-type(1) {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--black);

    font-size: 13px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    background: #ffffff;

    border: 1px solid var(--border);

    outline: none;

    color: var(--black);

    font-size: 14px;

    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;

    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);

    box-shadow: 0 0 0 3px rgba(198, 106, 43, 0.08);
}


/* ==================================================
   SUBMIT
================================================== */

.contact-submit {
    grid-column: 1 / -1;

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 25px;

    background: var(--red);

    color: #ffffff;

    border: 1px solid var(--red);

    cursor: pointer;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);
}

.contact-submit:hover {
    background: var(--red-dark);

    border-color: var(--red-dark);

    transform: translateY(-2px);
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-info {
        max-width: 700px;
    }

}


@media (max-width: 600px) {

    .contact-hero {
        padding: 50px 0 45px;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .contact-section {
        padding: 50px 0 60px;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group:nth-last-of-type(1) {
        grid-column: auto;
    }

    .contact-submit {
        grid-column: auto;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

}

/* ==================================================
   FINAL CTA
================================================== */

.final-cta {
    padding: 35px 0 45px;
    background: #ffffff;
}


/* ==================================================
   CTA CONTAINER
================================================== */

.final-cta-inner {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 42px 50px;

    background: #ffffff;

    border: 1px solid #dedfe2;

    border-left: 5px solid #C66A2B;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* ==================================================
   HOVER
================================================== */

.final-cta-inner:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08);
}


/* ==================================================
   LABEL
================================================== */

.final-cta-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #C66A2B;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* ==================================================
   TITLE
================================================== */

.final-cta-text h2 {
    max-width: 700px;

    margin: 0 0 12px;

    color: #0B0B0C;

    font-size: clamp(30px, 3.5vw, 46px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;
}


/* ORANGE PART */

.final-cta-text h2 span {
    color: #C66A2B;
}


/* ==================================================
   DESCRIPTION
================================================== */

.final-cta-text p {
    max-width: 650px;

    margin: 0;

    color: #666A72;

    font-size: 15px;

    line-height: 1.65;
}


/* ==================================================
   ACTION
================================================== */

.final-cta-action {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

    flex-shrink: 0;
}


/* ==================================================
   BUTTON
================================================== */

.final-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 15px 17px 15px 23px;

    background: #0B0B0C;

    color: #ffffff;

    border: 1px solid #0B0B0C;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


/* ==================================================
   ARROW
================================================== */

.cta-arrow {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #C66A2B;

    color: #ffffff;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.final-cta-button:hover {
    background: #C66A2B;

    border-color: #C66A2B;

    transform: translateY(-2px);
}


.final-cta-button:hover .cta-arrow {
    background: #ffffff;

    color: #C66A2B;

    transform: translateX(4px);
}


/* ==================================================
   NOTE
================================================== */

.final-cta-note {
    color: #8A8D93;

    font-size: 11px;

    letter-spacing: 0.2px;
}


/* ==================================================
   RESPONSIVE TABLET
================================================== */

@media (max-width: 900px) {

    .final-cta {
        padding: 30px 0 40px;
    }

    .final-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 28px;

        padding: 38px 35px;
    }

    .final-cta-action {
        width: 100%;
    }

}


/* ==================================================
   RESPONSIVE MOBILE
================================================== */

@media (max-width: 600px) {

    .final-cta {
        padding: 25px 0 35px;
    }

    .final-cta-inner {
        padding: 30px 22px;

        border-left-width: 4px;

        gap: 25px;
    }

    .final-cta-text h2 {
        font-size: 30px;

        line-height: 1.12;
    }

    .final-cta-text p {
        font-size: 14px;
    }

    .final-cta-button {
        width: 100%;

        justify-content: space-between;

        box-sizing: border-box;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .final-cta-text h2 {
        font-size: 27px;
    }

    .final-cta-inner {
        padding: 28px 18px;
    }

}
.final-cta {
    padding-bottom: 30px;
}

.footer {
    margin-top: 0;
}.final-cta {
    padding-top: 20px;
}

/* ==================================================
   EXPERTISE — FIN DE SECTION
================================================== */

.expertise {
    padding-bottom: 35px;
}


/* Supprimer l'ancien CTA de l'expertise */

.expertise-cta {
    display: none;
}


/* ==================================================
   CTA FINAL
================================================== */

.final-cta {
    padding: 10px 0 35px;
    background: #ffffff;
}

/* ==================================================
   FOOTER
================================================== */

.footer {
    padding: 28px 0;

    background: var(--black);

    color: var(--white);

    text-align: center;
}

.footer p {
    margin: 4px 0;

    color: #B8BBC2;

    font-size: 13px;

    line-height: 1.5;
}


/* ==================================================
   FOOTER CREDIT
================================================== */

.footer-credit {
    margin-top: 6px !important;
}

.footer-credit a {
    color: var(--red);

    font-weight: 700;

    text-decoration: none;

    transition: var(--transition);
}

.footer-credit a:hover {
    color: #ffffff;
}

/* ==================================================
   NAVIGATION ACTIVE
================================================== */

.navbar .nav-link {
    position: relative;
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Ligne sous le lien */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: #C66A2B;
    transition: width 0.3s ease;
}

/* LIEN ACTIF */
.navbar .nav-link.active {
    color: #C66A2B;
}

/* Ligne active */
.navbar .nav-link.active::after {
    width: 100%;
}