/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
    --color-blue: #0055A3;
    --color-gray: #F5F5F5;
    --color-black: #141414;
    --color-white: #FFFFFF;
    --color-orange: #EF7B10;
    --font-family: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sharp: 0;
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }

    #about .about-main-text {
        font-size: 30px;
    }

    #about h2,
    #chiffres h2,
    #faq h2,
    .contact-text h2,
    .solutions-text h2 {
        font-size: 28px;
    }

    .hero-internal h1 {
        font-size: 30px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: none;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    margin: 3px 0;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

#navbar.scrolled {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

#navbar .container,
#navbar .container-nav {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

#navbar .logo {
    flex-shrink: 0;
}

#navbar nav,
#navbar .nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

#navbar .btn-contact {
    flex-shrink: 0;
}

#navbar .logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

#navbar .logo .logo-white {
    filter: brightness(0) invert(1);
}

#navbar.scrolled .logo .logo-white {
    filter: none;
}

#navbar nav ul,
#navbar .nav-menu ul {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

#navbar nav .dropdown {
    position: relative;
}

#navbar nav .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

#navbar nav .arrow-down {
    transition: transform 0.3s ease;
}

#navbar nav .dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

#navbar nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 200px;
    padding: 12px 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 12px;
}

#navbar nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#navbar nav .dropdown-menu li {
    list-style: none;
}

#navbar nav .dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--color-black) !important;
    transition: background 0.2s ease;
}

#navbar nav .dropdown-menu a:hover {
    background: #f5f5f5;
}

#navbar nav a,
#navbar .nav-menu a {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

#navbar.scrolled nav a,
#navbar.scrolled .nav-menu a {
    color: var(--color-black);
}

#navbar nav a:hover,
#navbar .nav-menu a:hover {
    opacity: 0.7;
}

#navbar .nav-menu a.active {
    font-weight: 600;
    position: relative;
}

#navbar .nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-orange);
}

#navbar .nav-menu .btn-nav {
    padding: 10px 20px;
    background: var(--color-blue);
    color: var(--color-white) !important;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#navbar .nav-menu .btn-nav:hover {
    background: #003d7a;
    opacity: 1;
    transform: translateY(-2px);
}

#navbar .btn-contact {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 24px;
    border-radius: 4px;
    background: var(--color-white);
    color: var(--color-black);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#navbar .btn-contact:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

#navbar .btn-contact svg {
    flex-shrink: 0;
}

/* ========================================
   HERO SECTION
   ======================================== */

#hero {
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding: 318px 173px 64px 173px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sharp);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), 
                url('../../header-slide1.png') lightgray 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content .hero-logo {
    width: 304.781px;
    height: 200px;
    margin-bottom: 48px;
    filter: brightness(0) invert(1);
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    margin-top: 0;
}

.hero-content .subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    opacity: 0.95;
}


/* ========================================
   SECTION À PROPOS
   ======================================== */

#about {
    padding: 120px 0;
    background: var(--color-white);
}

#about .container {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
}

#about .about-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

#about .arrow-orange {
    width: 46px;
    height: 6px;
    stroke-width: 1px;
    stroke: #EF7B10;
}

#about .about-title {
    color: var(--color-black);
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

#about .about-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

#about .about-main-text {
    color: var(--color-black);
    font-family: var(--font-family);
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 80px;
    margin: 0;
    max-width: 1200px;
}

.btn-primary {
    display: inline-block;
    background: var(--color-blue);
    color: var(--color-white);
    padding: 16px 48px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 16px;
}

.btn-primary:hover {
    background: #003d7a;
}

/* ========================================
   SECTION SOLUTIONS DATA
   ======================================== */

#solutions-data {
    padding: 120px 0;
    background: var(--color-white);
}

#solutions-data .container {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
}

.solutions-data-wrapper {
    display: inline-flex;
    padding: 64px 164.603px 63px 40px;
    align-items: center;
    gap: 251px;
    border-radius: 8px;
    background: #0055A3;
    width: 100%;
}

.solutions-data-content {
    flex: 1;
}

.data-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.arrow-white {
    width: 46px;
    height: 6px;
    stroke-width: 1px;
    stroke: #FFFFFF;
}

.data-title {
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.data-main-title {
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.data-description {
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 600px;
}

.btn-data {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 24px;
    border-radius: 4px;
    background: var(--color-white);
    color: var(--color-black);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    width: fit-content;
}

.btn-data:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-data svg {
    flex-shrink: 0;
}

.solutions-data-logos {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: flex-start;
}

.solutions-data-logos svg {
    height: 70px;
    width: auto;
}

@media (max-width: 1200px) {
    .solutions-data-logos {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 24px;
        align-items: center;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        padding-right: 20px;
        scroll-padding-right: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .solutions-data-logos::-webkit-scrollbar {
        height: 6px;
    }

    .solutions-data-logos svg {
        flex: 0 0 auto;
        scroll-snap-align: start;
        height: 54px;
        width: auto;
    }
}

/* ========================================
   SECTION AUTRES DOMAINES
   ======================================== */

#autres-domaines {
    background: var(--color-gray);
    padding: 120px 0;
}

#autres-domaines .container-solutions {
    display: inline-flex;
    padding: 64px 164.603px 63.001px 40px;
    align-items: center;
    gap: 251px;
}

#autres-domaines .solutions-text {
    color: var(--color-black);
}

#autres-domaines .solutions-text h2 {
    color: var(--color-black);
}

#autres-domaines .solutions-text p {
    color: #333;
    opacity: 1;
}

#autres-domaines .solutions-text ul li:before {
    color: var(--color-blue);
}

#autres-domaines .logo-grid img {
    filter: none;
    opacity: 0.8;
}

/* ========================================
   SECTION CHIFFRES CLÉS
   ======================================== */

#chiffres {
    position: relative;
    width: 100%;
    background: #FFFFFF;
}

.chiffres-background {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), 
                url('../images/header-slide1.png') lightgray 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 422px;
    display: flex;
    padding: 40px;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    box-sizing: border-box;
}

.chiffres-title-block {
    background: #FFFFFF;
    padding: 40px 60px;
    border-radius: 8px;
    max-width: 600px;
    width: auto;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.chiffres-numbers {
    background: #FFFFFF;
    padding: 80px 0;
    max-width: 1328px;
    margin: 0 auto;
}

.chiffres-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.arrow-orange {
    width: 46px;
    height: 6px;
}

.chiffres-subtitle {
    color: #141414;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.chiffres-title {
    color: #141414;
    font-family: var(--font-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    margin: 0;
}

.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.chiffre-item {
    text-align: center;
}

.chiffre-item .number {
    color: #141414;
    font-family: var(--font-family);
    font-size: 96px;
    font-weight: 600;
    line-height: 88px;
    margin-bottom: 16px;
}

.chiffre-item .label {
    color: #666666;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* ========================================
   SECTION FAQ
   ======================================== */

#faq {
    padding: 120px 0;
    background: #FFFFFF;
}

#faq .container {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 100px;
}

.faq-left {
    flex: 0 0 400px;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.faq-subtitle {
    color: #141414;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-title {
    color: #141414;
    font-family: var(--font-family);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    margin: 0 0 24px 0;
}

.faq-description {
    color: #666666;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0 0 32px 0;
}

.btn-faq {
    display: inline-flex;
    padding: 12px 24px;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: #0055A3;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-faq:hover {
    background: #003d7a;
    transform: translateY(-2px);
}

.faq-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faq-item {
    display: flex;
    flex-direction: column;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: #141414;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 0 24px 0;
    color: #666666;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.faq-separator {
    width: 100%;
    margin: 0;
}

@media (max-width: 768px) {
    #faq {
        padding: 80px 0;
    }

    #faq .container {
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
    }

    .faq-left {
        flex: none;
        width: 100%;
    }

    .faq-right {
        width: 100%;
    }

    .faq-question {
        padding: 18px 0;
        gap: 16px;
        font-size: 16px;
    }

    .faq-question span {
        min-width: 0;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-answer p {
        padding: 0 0 18px 0;
        font-size: 15px;
        line-height: 22px;
    }

    .faq-separator {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/* ========================================
   SECTION CONTACT
   ======================================== */

#contact {
    background: var(--color-blue);
    padding: 120px 0;
}

.container-contact {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    color: var(--color-white);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-subtitle {
    color: #FFFFFF;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-item img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.info-item span {
    font-size: 16px;
}

.contact-form {
    background: var(--color-white);
    padding: 48px;
    border-radius: 8px;
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    grid-column: 1 / -1;
    background: var(--color-blue);
    color: var(--color-white);
    padding: 16px 48px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #003d7a;
}

/* ========================================
   PAGES INTERNES - HERO
   ======================================== */

.hero-internal {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    color: #FFFFFF;
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-subtitle {
    color: #FFFFFF;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-internal h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-hero {
    display: inline-flex;
    padding: 16px 32px;
    background: #EF7B10;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #d66a0a;
    transform: translateY(-2px);
}

/* ========================================
   SECTION APPROCHE
   ======================================== */

#approche {
    padding: 120px 0;
    background: #FFFFFF;
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: #141414;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-header-center h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #141414;
}

.approche-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
}

.approche-card {
    background: #F5F5F5;
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.approche-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-number {
    font-size: 48px;
    font-weight: 700;
    color: #0055A3;
    margin-bottom: 24px;
    opacity: 0.3;
}

.approche-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #141414;
}

.approche-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

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

#prestations {
    padding: 120px 0;
    background: #F5F5F5;
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
}

.prestation-item {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.prestation-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.prestation-icon {
    margin-bottom: 20px;
}

.prestation-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #141414;
}

.prestation-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* ========================================
   SECTION RÉALISATIONS
   ======================================== */

#realisations {
    padding: 120px 0;
    background: #FFFFFF;
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
}

.realisation-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.realisation-card:hover {
    border-color: #0055A3;
    box-shadow: 0 8px 24px rgba(0, 85, 163, 0.1);
}

.realisation-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #0055A3;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.realisation-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #141414;
}

.realisation-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* ========================================
   PAGE SOCIÉTÉ - SECTIONS
   ======================================== */

#qui-sommes-nous,
#moyens {
    padding: 120px 0;
    background: #FFFFFF;
}

.content-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.content-two-cols.reverse {
    direction: rtl;
}

.content-two-cols.reverse > * {
    direction: ltr;
}

.col-left h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #141414;
}

.col-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 16px;
}

.img-rounded {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

#valeurs {
    padding: 120px 0;
    background: #F5F5F5;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
}

.valeur-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.valeur-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #141414;
}

.valeur-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.moyens-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.moyen-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #141414;
}

.moyen-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

#certifications {
    padding: 120px 0;
    background: #FFFFFF;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
}

.certification-card {
    text-align: center;
    padding: 40px;
    background: #F5F5F5;
    border-radius: 8px;
}

.cert-icon {
    margin-bottom: 24px;
}

.certification-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #141414;
}

.certification-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* ========================================
   PAGE ACTUALITÉS
   ======================================== */

#actualites-list {
    padding: 120px 0;
    background: #FFFFFF;
}

.actualites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
}

.actualite-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.actualite-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.actualite-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.actualite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.actualite-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #FFFFFF;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #141414;
}

.actualite-content {
    padding: 24px;
}

.actualite-category {
    display: inline-block;
    padding: 4px 12px;
    background: #0055A3;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.actualite-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #141414;
    line-height: 1.3;
}

.actualite-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 16px;
}

.btn-lire-plus {
    display: inline-flex;
    align-items: center;
    color: #0055A3;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-lire-plus:hover {
    color: #003d7a;
    transform: translateX(4px);
}

/* ========================================
   PAGE NOUS REJOINDRE
   ======================================== */

#pourquoi-nous {
    padding: 120px 0;
    background: #F5F5F5;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
}

.avantage-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.avantage-icon {
    margin-bottom: 20px;
}

.avantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #141414;
}

.avantage-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

#offres-emploi {
    padding: 120px 0;
    background: #FFFFFF;
}

.offres-list {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.offre-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}

.offre-card:hover {
    border-color: #0055A3;
    box-shadow: 0 4px 16px rgba(0, 85, 163, 0.1);
}

.offre-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}

.offre-title-block h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #141414;
}

.offre-meta {
    display: flex;
    gap: 12px;
}

.offre-type,
.offre-location {
    display: inline-block;
    padding: 6px 12px;
    background: #F5F5F5;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #666666;
}

.offre-type {
    background: #0055A3;
    color: #FFFFFF;
}

.btn-postuler {
    padding: 12px 24px;
    background: #0055A3;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-postuler:hover {
    background: #003d7a;
    transform: translateY(-2px);
}

.offre-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 12px;
}

.offre-content strong {
    color: #141414;
}

#candidature-spontanee {
    padding: 120px 0;
    background: #F5F5F5;
}

.candidature-wrapper {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.candidature-intro h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #141414;
}

.candidature-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
}

.candidature-form {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.file-upload {
    position: relative;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F5F5F5;
    border: 2px dashed #E0E0E0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    border-color: #0055A3;
    background: #f0f7ff;
}

.file-label span {
    font-size: 14px;
    color: #666666;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* ========================================
   PAGE CONTACT
   ======================================== */

#contact-page {
    padding: 120px 0;
    background: #FFFFFF;
}

.contact-page-wrapper {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info-block h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #141414;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #f0f7ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #141414;
}

.contact-detail-content p,
.contact-detail-content a {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    text-decoration: none;
}

.contact-detail-content a:hover {
    color: #0055A3;
}

.urgence-block {
    background: #FFF5E6;
    border-left: 4px solid #EF7B10;
    padding: 24px;
    border-radius: 8px;
}

.urgence-block h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #141414;
}

.urgence-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 16px;
}

.btn-urgence {
    display: inline-block;
    padding: 12px 24px;
    background: #EF7B10;
    color: #FFFFFF;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-urgence:hover {
    background: #d66a0a;
    transform: translateY(-2px);
}

.contact-form-block {
    background: #F5F5F5;
    padding: 40px;
    border-radius: 8px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #141414;
}

.form-header p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.contact-form-block label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #141414;
}

.contact-form-block select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 14px;
    background: #FFFFFF;
    color: #141414;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    cursor: pointer;
}

#map-section {
    background: #F5F5F5;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========================================
   PAGES LÉGALES
   ======================================== */

.legal-hero {
    background: linear-gradient(135deg, #0055A3 0%, #003d7a 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: #FFFFFF;
}

.legal-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.legal-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.legal-content {
    padding: 80px 0;
    background: #FFFFFF;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0055A3;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E0E0E0;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #141414;
    margin: 24px 0 16px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 16px;
}

.legal-section strong {
    color: #141414;
    font-weight: 600;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.legal-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.legal-list li::before {
    content: "•";
    color: #0055A3;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.legal-section a {
    color: #0055A3;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #003d7a;
}

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

footer {
    background: #FFFFFF;
    color: #141414;
    padding: 60px 0 40px;
}

footer .container {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 32px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-nav h3,
.footer-contact h3 {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #141414;
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li a {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #141414;
}

.footer-contact ul li {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666666;
}

.footer-copyright .separator {
    color: #CCCCCC;
}

.redcat-credit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.redcat-credit svg {
    width: 32px;
    height: 24px;
    flex-shrink: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.footer-legal a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #141414;
}

.footer-legal .separator {
    color: #CCCCCC;
}

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

@media (max-width: 1200px) {
    .container-solutions {
        gap: 100px;
        padding: 64px 40px;
    }

    .actualites-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        padding: 0 40px;
    }

    .content-two-cols {
        gap: 60px;
        padding: 0 40px;
    }

    .valeurs-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
        padding: 0 40px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        padding-right: 20px;
        scroll-padding-right: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .valeurs-grid::-webkit-scrollbar {
        height: 6px;
    }

    .valeur-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    #hero {
        padding: 260px 80px 64px 80px;
    }

    .approche-grid,
    .prestations-grid,
    .realisations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        padding: 0 40px;
    }
    
    .chiffres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .avantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        padding: 0 24px;
    }

    footer .container {
        padding: 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-logo {
        grid-column: 1 / -1;
    }

    .offres-list {
        padding: 0 24px;
    }

    .offre-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .offre-title-block {
        width: 100%;
        min-width: 0;
    }

    .offre-meta {
        flex-wrap: wrap;
    }

    .candidature-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
    }

    .candidature-form {
        max-width: 100%;
    }

    .file-label {
        flex-wrap: wrap;
    }

    .file-label span {
        min-width: 0;
        word-break: break-word;
    }
}

@media (max-width: 768px) {
    #navbar .container,
    #navbar .container-nav {
        padding: 0 20px;
    }

    footer .container {
        padding: 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-nav ul,
    .footer-contact ul {
        align-items: center;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal .separator,
    .footer-copyright .separator {
        display: none;
    }

    #navbar .container-nav {
        gap: 12px;
    }

    #navbar .logo img {
        height: 50px;
    }

    #navbar .btn-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        color: var(--color-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 0;
        margin-left: auto;
    }

    #navbar.scrolled .mobile-menu-toggle {
        color: var(--color-black);
    }

    #navbar.is-open .mobile-menu-toggle {
        color: var(--color-black);
    }

    #navbar nav,
    #navbar .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        display: none;
        justify-content: flex-start;
        background: var(--color-white);
        padding: 12px 20px 20px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

    #navbar.is-open nav,
    #navbar.is-open .nav-menu {
        display: flex;
    }

    #navbar nav ul,
    #navbar .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }

    #navbar nav a,
    #navbar .nav-menu a {
        color: var(--color-black);
        width: 100%;
        padding: 10px 0;
        white-space: normal;
    }

    #navbar .btn-contact {
        gap: 12px;
        padding: 8px 12px;
    }

    #navbar.is-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

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

    #navbar.is-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    #hero {
        padding: 200px 20px 64px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }

    .hero-content .hero-logo {
        width: 220px;
        height: auto;
        margin-bottom: 32px;
    }

    #about .about-main-text {
        font-size: 36px;
        line-height: 1.25;
    }

    .data-main-title,
    .chiffres-title,
    .faq-title,
    .contact-text h2,
    .section-header-center h2,
    .card-number,
    .col-left h2,
    .candidature-intro h2,
    .contact-info-block h2,
    .legal-hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .section-header-center {
        margin-bottom: 40px;
    }

    .approche-grid,
    .prestations-grid,
    .realisations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    #offres-emploi {
        padding: 80px 0;
    }

    .offres-list {
        padding: 0 20px;
    }

    .offre-card {
        padding: 24px;
    }

    .offre-meta {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .btn-postuler {
        width: 100%;
        text-align: center;
    }

    #pourquoi-nous {
        padding: 80px 0;
    }

    .avantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    #candidature-spontanee {
        padding: 80px 0;
    }

    .candidature-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .candidature-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    #candidature-spontanee .section-title-wrapper,
    #pourquoi-nous .section-title-wrapper {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .file-label {
        flex-wrap: wrap;
    }

    .file-label span {
        min-width: 0;
        word-break: break-word;
    }

    .approche-card,
    .prestation-item,
    .realisation-card {
        padding: 24px;
    }

    .hero-internal {
        min-height: 480px;
        padding: 160px 20px 64px;
    }

    .hero-internal h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    #about h2,
    #chiffres h2,
    #faq h2,
    .contact-text h2,
    .solutions-text h2 {
        font-size: 32px;
    }
    
    .container-solutions {
        flex-direction: column;
        gap: 60px;
        padding: 48px 20px;
    }

    #qui-sommes-nous,
    #moyens,
    #valeurs {
        padding: 80px 0;
    }

    .content-two-cols {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .valeurs-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
        padding: 0 20px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        padding-right: 20px;
        scroll-padding-right: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .valeur-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
        padding: 24px;
    }

    #actualites-list {
        padding: 80px 0;
    }

    .actualites-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .actualite-image {
        height: 180px;
    }

    .actualite-content {
        padding: 20px;
    }

    .solutions-data-wrapper,
    #autres-domaines .container-solutions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 40px 20px;
    }

    .solutions-data-logos {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
        align-items: center;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        padding-right: 20px;
        scroll-padding-right: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .solutions-data-logos svg {
        flex: 0 0 auto;
        scroll-snap-align: start;
        height: 50px;
        width: auto;
    }
    
    .container-contact {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-form form {
        grid-template-columns: 1fr;
    }
    
    .chiffres-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .chiffre-item .number {
        font-size: 80px;
        line-height: 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}
