/* ==========================================================================
   1. VARIABLES & CONFIGURATION (Design System)
   ========================================================================== */
:root {
    /* Palette de couleurs "Premium" */
    --primary-blue: #00668C;
    --primary-dark: #004d6e;
    --secondary-green: #79B51C;
    --text-dark: #1a2b3c;
    --text-light: #6c757d;
    --bg-light: #f9fbfd;
    --white: #ffffff;

    /* Échelle Z-Index */
    --z-negative: -1;
    --z-normal: 1;
    --z-hero-overlay: 10;
    --z-hero-text: 20;
    --z-header: 100;
    --z-overlay: 200;

    /* Espacements & Layout */
    --header-height: 90px;
    --container-width: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;

    /* Effets */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 4px 20px -5px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   2. RESET & GLOBAL STYLES
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Top banner */
.site-banner {
    width: 100%;
    padding: 12px 16px;
    background-color: #F2C94C;
    border-bottom: 1px solid #d9e0e7;
    color: #1f2937;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    position: relative;
    z-index: 101;
}

.site-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.cta-button:focus-visible,
.menu-toggle:focus-visible {
    outline: 3px solid var(--secondary-green);
    outline-offset: 3px;
}

/* Boutons globaux */
.btn,
.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn:hover,
.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 140, 0.3);
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background: rgba(255, 255, 255, 0.9);
    height: var(--header-height);
    position: sticky;
    top: 0;
    isolation: isolate;
    z-index: var(--z-header);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-premium);
}

.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    max-height: 55px;
    width: auto;
}

.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 40px;
    height: 100%;
}

.nav-list li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: var(--primary-blue);
        border-radius: 3px;
    }

    .main-nav {
        display: none;
    }
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: calc(var(--header-height) * -1);
    padding-top: calc(var(--header-height) + 40px);
}

/* --- Slides --- */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center center;
    will-change: transform;
}

@keyframes kenBurnsEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.slide.active img {
    animation: kenBurnsEffect 18s ease-out forwards;
}

/* --- Overlay --- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 25, 40, 0.85) 0%,
        rgba(10, 25, 40, 0.4) 50%,
        rgba(10, 25, 40, 0) 100%
    );
    z-index: var(--z-hero-overlay);
    pointer-events: none;
}

/* --- Contenu Texte --- */
.hero-content {
    position: relative;
    z-index: var(--z-hero-text);
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    color: var(--white);
    margin-top: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 550px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .btn {
    background-color: var(--secondary-green);
    padding: 15px 40px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-content .btn:hover {
    background-color: #8bc727;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(121, 181, 28, 0.4);
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        max-width: 100%;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-section {
        height: auto;
        min-height: 500px;
        padding-bottom: 60px;
    }
}

/* ==========================================================================
   5. SECTION SERVICES
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-green);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* --- GRILLE --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 20px;
}

/* --- CARTES --- */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 140, 0.15);
}

/* --- ICÔNES --- */
.icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.icon-box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Couleurs de fond des icônes */
.bg-blue {
    background-color: rgba(0, 102, 140, 0.1);
}
.bg-brown {
    background-color: rgba(139, 69, 19, 0.1);
}
.bg-bordeaux {
    background-color: rgba(128, 0, 32, 0.1);
}
.bg-orange {
    background-color: rgba(255, 140, 0, 0.1);
}
.bg-navy {
    background-color: rgba(0, 0, 128, 0.1);
}
.bg-green {
    background-color: rgba(121, 181, 28, 0.15);
}

/* --- TYPOGRAPHIE --- */
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .services-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   6. SECTION MÉTHODOLOGIE (ACT®)
   ========================================================================== */
.methodology-section {
    padding: 100px 0;
    background-color: var(--white);
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- IMAGE --- */
.methodology-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.methodology-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.methodology-image:hover img {
    transform: scale(1.03);
}

/* --- CONTENU TEXTE --- */
.methodology-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.methodology-content .highlight {
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
    white-space: nowrap;
}

.methodology-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(0, 102, 140, 0.1);
    z-index: -1;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* --- LISTE DES BÉNÉFICES --- */
.benefits-container {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-green);
}

.benefits-container h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-green);
    font-weight: 900;
    font-size: 1.1rem;
}

.conclusion-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    font-style: italic;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   7. COMPOSANT PROCESSUS
   ========================================================================== */
.process-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    align-items: flex-start;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background-color: rgba(0, 102, 140, 0.15);
    z-index: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    transition: all 0.3s ease;
    padding: 12px;
}

.step-number img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.step-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* --- INTERACTION --- */
.process-step:hover .step-number {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(121, 181, 28, 0.4);
}

.process-step:hover .step-content strong {
    color: var(--secondary-green);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .process-wrapper {
        padding: 25px;
    }

    .process-step {
        gap: 15px;
    }
}

/* --- AJUSTEMENT DU TITRE METHODOLOGIE --- */
.section-header h2 .highlight-title {
    color: var(--primary-blue);
    font-weight: 800;
}

.section-header h2 .subtitle-text {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 5px;
}

/* ==========================================================================
   8. SECTION CITATION
   ========================================================================== */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 10%;
    font-size: 20rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    pointer-events: none;
}

.quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-header {
    margin-bottom: 30px;
}

.quote-header .sub-title {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.quote-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.quote-body p {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.author-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.author-role {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Quote CTA */
.quote-cta-title {
    margin-bottom: 30px;
}

.quote-cta-btn {
    background: var(--white);
    color: var(--primary-blue);
}

.quote-cta-btn:hover,
.quote-cta-btn:focus-visible {
    background: var(--white);
    color: var(--primary-dark);
}

/* ==========================================================================
   9. SECTION CLIENTS
   ========================================================================== */
.customers-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.customers-section .section-header {
    margin-bottom: 80px;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: center;
    justify-items: center;
}

.customer-item {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.customer-item img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    min-width: 220px;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.1);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.customer-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.15);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .customer-item {
        height: 120px;
    }

    .customer-item img {
        min-width: 150px;
    }
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.main-footer {
    background-color: #0b1622;
    color: #a0aab5;
    padding-top: 80px;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- COLONNE 1 --- */
.footer-logo-text {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1;
}

.footer-logo-text .logo-suffix {
    font-weight: 300;
    font-size: 1.8rem;
    opacity: 0.9;
    margin-left: 2px;
}

.footer-logo-text:hover {
    color: var(--secondary-green);
    transition: color 0.3s ease;
}

.footer-desc {
    line-height: 1.6;
    max-width: 350px;
    font-size: 0.9rem;
}

/* --- COLONNE 2 --- */
.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #a0aab5;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.links-col ul li a:hover {
    color: var(--secondary-green);
    transform: translateX(5px);
}

/* --- COLONNE 3 --- */
.contact-col .address {
    margin-bottom: 10px;
}

.contact-col .email a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.contact-col .email a:hover {
    border-color: var(--secondary-green);
    color: var(--secondary-green);
}

.social-btn {
    display: inline-block;
    margin-top: 20px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.social-btn:hover {
    color: var(--secondary-green);
}

/* --- BARRE DU BAS --- */
.footer-bottom {
    padding: 25px 0;
    background-color: #060c13;
    font-size: 0.85rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--white);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   11. STYLES DES SOUS-PAGES
   ========================================================================== */

/* --- PAGE HEADER --- */
.page-header-section {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b1622;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(0, 102, 140, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #0b1622 0%, #005a80 100%);
    background-blend-mode: screen, normal;
    overflow: hidden;
    margin-top: calc(var(--header-height) * -1);
    padding-top: var(--header-height);
    text-align: center;
}

.page-header-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-green);
    opacity: 0.8;
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 0 20px;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.breadcrumb {
    font-size: 0.95rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* --- ABOUT INTRO --- */
.about-intro {
    padding: 80px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-intro h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--secondary-green);
}

.value-item h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* --- SECTION PRÉSIDENTE --- */
.team-section {
    padding-top: 80px;
    padding-bottom: 20px;
    background-color: var(--bg-light);
}

.president-profile {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    max-width: 900px;
    margin: 0 auto;
}

.president-img {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.president-bio h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.president-bio .role {
    display: block;
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.president-bio p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- SECTION ÉQUIPE --- */
.team-grid-section {
    padding-top: 0;
    padding-bottom: 80px;
    background-color: var(--bg-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    width: 240px;
    text-align: center;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.team-member .role {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 5px;
}

.team-member .company {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   SECTION PARTENAIRES
   ========================================================================== */
.partners-section {
    padding: 60px 0 100px;
    background-color: var(--white);
}

.partners-section .section-header {
    margin-bottom: 80px;
    text-align: center;
}

.partners-category {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.partners-category:last-child {
    border-bottom: none;
}

.partners-category h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    align-self: start;
    position: relative;
    padding-left: 15px;
}

.partners-category h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    height: 85%;
    width: 4px;
    background-color: var(--secondary-green);
    border-radius: 2px;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px 60px;
}

.partner-logo {
    max-height: 55px;
    width: auto;
    max-width: 160px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .partners-category {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .partners-category h3 {
        display: block;
    }

    .partners-logos {
        justify-content: center;
    }
}

/* ==========================================================================
   PAGE DOWNLOAD
   ========================================================================== */
.resources-intro {
    text-align: center;
    max-width: 900px;
    margin: 80px auto 60px;
}

.resources-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* --- GRILLE DES RESSOURCES --- */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 40px;
    padding-bottom: 100px;
}

/* LA CARTE */
.resource-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* IMAGE DE COUVERTURE */
.resource-cover {
    flex-shrink: 0;
    width: 130px;
    height: 190px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* CONTENU TEXTE */
.resource-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* BADGES */
.resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-en {
    background-color: #e3f2fd;
    color: #0d47a1;
}
.badge-fr {
    background-color: #f3e5f5;
    color: #7b1fa2;
}
.badge-de {
    background-color: #fff3e0;
    color: #e65100;
}
.badge-year {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-light);
}

/* TITRE & DESCRIPTION */
.resource-content h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 700;
}

.resource-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* BLOC AUTEUR */
.resource-author-block {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.resource-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 2px;
}

.resource-author-small {
    font-size: 0.8rem;
}

.resource-edition {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
    display: block;
}

/* BOUTON TÉLÉCHARGER */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    width: fit-content;
    transition: background 0.3s ease;
}

.btn-download:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-download span {
    font-size: 1.1em;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .resource-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
    }

    .resource-cover {
        width: 160px;
        height: 230px;
        margin-bottom: 20px;
    }

    .resource-meta {
        justify-content: center;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   PAGE NEWS
   ========================================================================== */
.news-section {
    padding: 80px 0 100px;
    background-color: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

/* LA CARTE ÉVÉNEMENT */
.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Partie HAUTE */
.news-header {
    background-color: #fff;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 100px;
}

.news-logo {
    max-height: 50px;
    max-width: 140px;
    object-fit: contain;
}

/* Le bloc DATE */
.news-date-box {
    background-color: var(--bg-light);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-date-day {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-blue);
}

.news-date-month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

/* Partie CONTENU */
.news-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--secondary-green);
}

.news-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-dark);
}

.news-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.news-link {
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-header {
        padding: 20px;
    }
}

/* ==========================================================================
   PAGE CONTACT
   ========================================================================== */
.contact-section {
    padding: 100px 0 120px;
    background-color: var(--white);
    text-align: center;
}

.contact-centered-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* TEXTES */
.contact-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: block;
}

.contact-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-dark);
    font-weight: 700;
}

.contact-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-label {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

/* LE BLOC D'ACTION */
.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px 40px;
    background: var(--white);
    box-shadow: 0 20px 50px rgba(0, 102, 140, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-top: 4px solid var(--secondary-green);
    max-width: 600px;
    margin: 0 auto;
}

/* L'Email "Héros" */
.big-email-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    word-break: break-all;
}

.big-email-link:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--secondary-green);
}

/* Séparateur "OU" */
.divider-or {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    position: relative;
    padding: 0 15px;
}

.divider-or::before,
.divider-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #ddd;
}

.divider-or::before {
    left: -30px;
}

.divider-or::after {
    right: -30px;
}

/* Bouton LinkedIn */
.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0077b5;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-linkedin:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .big-email-link {
        font-size: 1.3rem;
    }

    .contact-section {
        padding: 60px 0;
    }
}

/* ==========================================================================
   PAGE LÉGALE
   ========================================================================== */
.legal-section {
    padding: 80px 0 100px;
    background-color: var(--white);
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-block h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.legal-block h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: justify;
}

.legal-block ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-block ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
}

.legal-link:hover {
    color: var(--secondary-green);
}

/* ==========================================================================
   PAGE TRAINING
   ========================================================================== */
.training-intro {
    max-width: 900px;
    margin: 80px auto 60px;
    text-align: center;
}

.training-intro h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.training-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* GRILLE DES MODULES */
.modules-section {
    padding: 0 0 80px;
    background-color: var(--white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.module-card {
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--secondary-green);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.module-header {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.module-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.module-intro {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.module-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    top: 0;
}

/* SECTION BÉNÉFICES & MÉTHODES */
.outcomes-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.outcomes-col h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-green);
    display: inline-block;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-light);
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
}

.training-cta-section {
    text-align: center;
    padding: 60px 0;
}

.training-cta-title {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Rend le lien de la carte invisible */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* ==========================================================================
   PAGE PURCHASING
   ========================================================================== */
.purchasing-strategy-section {
    padding: 0 0 80px;
    background-color: var(--white);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.strategy-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-challenges {
    border-top: 4px solid #e74c3c;
}
.card-benefits {
    border-top: 4px solid var(--secondary-green);
}
.card-keys {
    border-top: 4px solid var(--primary-blue);
}

.strategy-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategy-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.card-challenges .strategy-list li::before {
    content: '!';
    color: #e74c3c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card-benefits .strategy-list li::before {
    content: '✔';
    color: var(--secondary-green);
    position: absolute;
    left: 0;
}

.card-keys .strategy-list li::before {
    content: '➜';
    color: var(--primary-blue);
    position: absolute;
    left: 0;
}

.purchasing-services-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.purchasing-support-wrapper {
    max-width: 800px;
}

.purchasing-support-col {
    width: 100%;
}

.purchasing-support-intro {
    margin-bottom: 20px;
}

/* ==========================================================================
   CORRECTIF MOBILE & RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .header-inner {
        justify-content: space-between;
        padding: 15px 20px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 1001;
        position: relative;
    }

    .main-nav {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-dark) 0%, #002a3d 100%);
        padding: 100px 40px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.9);
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 600;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link:active {
        color: var(--secondary-green);
        padding-left: 10px;
        border-bottom-color: var(--secondary-green);
    }

    .menu-toggle .bar {
        transition: all 0.3s ease-in-out;
        transform-origin: center;
        background-color: var(--primary-blue);
    }

    .menu-toggle.active .bar {
        background-color: var(--white);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--secondary-green);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content {
        margin-top: 20px;
    }

    .customers-grid,
    .services-grid,
    .methodology-grid,
    .footer-grid,
    .strategy-grid,
    .modules-grid,
    .contact-centered-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .methodology-image {
        margin: 0 auto;
        max-width: 100%;
    }

    .customer-item img {
        max-width: 60%;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Empêche le défilement du fond quand le menu est ouvert */
body.no-scroll {
    overflow: hidden;
}

/* ==========================================================================
   CORRECTIF SPECIFIQUE : PROFIL PRÉSIDENTE (MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
    .president-profile {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .president-img {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .president-bio {
        width: 100%;
    }
}

/* ==========================================================================
   CORRECTIF : BARRE VERTE "ABOUT US" (MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
    .partners-category {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .partners-category h3 {
        display: inline-block;
        width: auto;
        margin-bottom: 30px;
        padding-left: 15px;
        align-self: center;
    }

    .partners-category h3::before {
        height: 70%;
        top: 15%;
    }
}