﻿/* ═══════════════════════════════════════════════════════════
   AXION — HOME PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(8px);
    }
}

@keyframes heroSlide {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    33% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.reveal {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.reveal-d1 {
    animation-delay: 0.15s;
}

.reveal-d2 {
    animation-delay: 0.3s;
}

.reveal-d3 {
    animation-delay: 0.5s;
}

.reveal-d4 {
    animation-delay: 0.65s;
}

.reveal-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal-scroll.is-visible {
        opacity: 1;
        transform: translateY(0);
    }


/* ═══════════════════════════════════════════════════════════
   HERO — DIAPORAMA PLEIN ÉCRAN
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlide 24s ease-in-out infinite, slowZoom 24s ease-in-out infinite;
}

.hero-slide-1 {
    background-image: url('/images/hero-1.jpg');
    animation-delay: 0s;
}

.hero-slide-2 {
    background-image: url('/images/hero-2.jpg');
    animation-delay: 6s;
}

.hero-slide-3 {
    background-image: url('/images/hero-3.jpg');
    animation-delay: 12s;
}

.hero-slide-4 {
    background-image: url('/images/hero-4.jpg');
    animation-delay: 18s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(1, 30, 61, 0.88) 0%, rgba(1, 30, 61, 0.72) 40%, rgba(1, 30, 61, 0.80) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 6rem;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.2rem;
    background: rgba(242, 144, 12, 0.12);
    border: 1px solid rgba(242, 144, 12, 0.25);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

    .hero-badge i {
        font-size: 0.55rem;
    }

.hero-title {
    margin-bottom: 1.8rem;
}

.hero-title-main {
    display: block;
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-sub {
    display: block;
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

    .hero-title-sub .amp {
        font-style: italic;
        color: var(--gold-light);
        opacity: 0.6;
    }

.hero-taglines {
    margin-bottom: 2rem;
}

.hero-tagline-fr {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 0.3rem;
}

.hero-tagline-en {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.38);
    font-style: italic;
    margin: 0;
}

.hero-quote {
    margin: 0 auto 2.5rem;
    padding: 1.3rem 1.8rem;
    border-left: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    max-width: 560px;
}

.hero-quote-fr {
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
    color: var(--gold-light);
    margin: 0 0 0.35rem;
    line-height: 1.5;
}

    .hero-quote-fr i {
        font-size: 1.5rem;
        opacity: 0.3;
        vertical-align: top;
        margin-right: 0.2rem;
    }

.hero-quote-en {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
    margin: 0;
}

.hero-side-btn {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.2rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    writing-mode: horizontal-tb;
}

    .hero-side-btn i {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .hero-side-btn span {
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .hero-side-btn small {
        font-size: 0.8rem;
        font-weight: 600;
        font-style: italic;
        opacity: 0.6;
    }

.hero-side-btn-left {
    left: 1.5rem;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
}

    .hero-side-btn-left:hover {
        background: var(--gold-light);
        border-color: var(--gold-light);
        box-shadow: 0 8px 32px rgba(242, 144, 12, 0.35);
        transform: translateY(-50%) translateX(-2px);
    }

.hero-side-btn-right {
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

    .hero-side-btn-right:hover {
        border-color: var(--gold);
        color: var(--gold-light);
        background: rgba(242, 144, 12, 0.08);
        box-shadow: 0 8px 32px rgba(242, 144, 12, 0.15);
        transform: translateY(-50%) translateX(2px);
    }

.hero-scroll-hint {
    display: flex;
    justify-content: center;
}

    .hero-scroll-hint span {
        display: block;
        width: 24px;
        height: 40px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        position: relative;
    }

        .hero-scroll-hint span::after {
            content: "";
            position: absolute;
            top: 6px;
            left: 50%;
            width: 4px;
            height: 8px;
            margin-left: -2px;
            background: var(--gold);
            border-radius: 2px;
            animation: scrollPulse 2s ease infinite;
        }


/* ═══════════════════════════════════════════════════════════
   SÉPARATEUR DE SECTION ANIMÉ
   ═══════════════════════════════════════════════════════════ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 1rem 0;
    max-width: 480px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-gold));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-divider .divider-line:last-child {
    background: linear-gradient(90deg, var(--line-gold), transparent);
}

.section-divider.is-visible .divider-line {
    transform: scaleX(1);
}

.divider-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--line-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transform: scale(0) rotate(-90deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
}

.section-divider.is-visible .divider-icon {
    transform: scale(1) rotate(0deg);
}

.divider-icon i {
    font-size: 0.85rem;
    color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════
   SECTION — CHIFFRES CLÉS
   ═══════════════════════════════════════════════════════════ */
.section-stats {
    background: var(--navy);
    padding: 1rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

    .stat-item:first-child {
        border-left: none;
    }

.stat-number {
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
}

    .stat-label small {
        font-size: 0.7rem;
        font-style: italic;
        color: rgba(255, 255, 255, 0.4);
    }


/* ═══════════════════════════════════════════════════════════
   SECTION — PRÉSENTATION
   ═══════════════════════════════════════════════════════════ */
.section-intro {
    padding: 1rem 0;
    background: var(--paper);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

    .intro-label i {
        font-size: 0.85rem;
    }

.intro-heading {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-fr {
    font-size: 1.02rem;
    color: var(--ink);
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: justify;
}

.intro-en {
    font-size: 0.9rem;
    color: var(--ink-soft);
    font-style: italic;
    line-height: 1.65;
    padding-left: 1.2rem;
    border-left: 2px solid var(--gold);
    margin-bottom: 2rem;
    text-align: justify;
}

.intro-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 30, 61, 0.15);
}

    .intro-image-frame img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .intro-image-frame:hover img {
        transform: scale(1.03);
    }

.intro-image-accent {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}


/* ═══════════════════════════════════════════════════════════
   SECTION — SECTEURS D'INTERVENTION
   ═══════════════════════════════════════════════════════════ */
.section-sectors {
    padding: 1rem 0;
    background: var(--bone);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sector-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

    .sector-card:hover {
        background: var(--navy);
        border-color: var(--navy);
        transform: translateY(-4px);
    }

.sector-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.sector-card:hover .sector-card-icon {
    background: rgba(242, 144, 12, 0.15);
}

.sector-card-icon i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.sector-card:hover .sector-card-icon i {
    color: var(--gold-light);
}

.sector-card h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
    transition: color 0.3s ease;
}

.sector-card:hover h3 {
    color: var(--white);
}

.sector-card-en {
    font-size: 0.72rem;
    font-style: italic;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-soft);
    transition: color 0.3s ease;
}

.sector-card:hover .sector-card-en {
    color: rgba(255, 255, 255, 0.55);
}


/* ═══════════════════════════════════════════════════════════
   SECTION — EXPERTISES
   ═══════════════════════════════════════════════════════════ */
.section-expertises {
    padding: 1rem 0;
    background: var(--bone);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

    .section-header .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--gold);
        margin-bottom: 1rem;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        color: var(--navy);
        margin-bottom: 0.8rem;
    }

.section-subtitle {
    font-size: 1rem;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto;
}

.section-subtitle-en {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--ink-soft);
    opacity: 0.75;
    max-width: 560px;
    margin: 0.5rem auto 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.expertise-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    position: relative;
    transition: transform 0.2s ease-out, box-shadow 0.4s ease, border-color 0.4s ease;
}

    .expertise-card:hover {
        box-shadow: 0 20px 50px rgba(1, 30, 61, 0.16);
        border-color: rgba(242, 144, 12, 0.3);
    }

.expertise-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .expertise-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.expertise-card:hover .expertise-card-image img {
    transform: scale(1.08);
}

.expertise-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(1, 30, 61, 0.6) 100%);
}

.expertise-card-num {
    position: absolute;
    bottom: 0.5rem;
    right: 0.9rem;
    z-index: 2;
    font-family: "Newsreader", Georgia, serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1;
    transition: color 0.4s ease, transform 0.4s ease;
}

.expertise-card:hover .expertise-card-num {
    color: rgba(242, 144, 12, 0.6);
    transform: translateY(-4px);
}

.expertise-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 40%, rgba(242, 144, 12, 0.18) 50%, transparent 60%);
    transform: translateX(-130%);
    pointer-events: none;
    z-index: 3;
    transition: transform 0.8s ease;
}

.expertise-card:hover .expertise-card-shine {
    transform: translateX(130%);
}

.expertise-card-body {
    padding: 1.5rem;
}

.expertise-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 144, 12, 0.1);
    border-radius: 8px;
    margin-top: -2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    border: 3px solid var(--white);
    transition: transform 0.4s ease, background 0.4s ease;
}

.expertise-card:hover .expertise-card-icon {
    transform: rotate(-6deg) scale(1.08);
    background: rgba(242, 144, 12, 0.18);
}

.expertise-card-icon i {
    font-size: 1.2rem;
    color: var(--gold);
}

.expertise-card h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-align: center;
}

    .expertise-card h3::after {
        content: "";
        display: block;
        width: 0;
        height: 2px;
        background: var(--gold);
        margin: 0.5rem auto 0;
        transition: width 0.4s ease;
    }

.expertise-card:hover h3::after {
    width: 36px;
}

.expertise-card p {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    text-align: center;
}

.expertise-card-en {
    font-size: 0.7rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    display: block;
}

.expertise-cta {
    text-align: center;
    margin-top: 2.5rem;
}


/* ═══════════════════════════════════════════════════════════
   SECTION — NOTRE APPROCHE
   ═══════════════════════════════════════════════════════════ */
.section-approach {
    padding: 1rem 0;
    background: var(--paper);
}

.approach-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

    .approach-timeline::before {
        content: "";
        position: absolute;
        top: 32px;
        left: 8%;
        right: 8%;
        height: 2px;
        background: var(--line-gold);
        z-index: 0;
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .approach-timeline.is-visible::before {
        transform: scaleX(1);
    }

.approach-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.approach-step-marker {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, background 0.3s ease;
}

.approach-step.is-visible .approach-step-marker {
    transform: scale(1);
    opacity: 1;
}

.approach-step-marker i {
    font-size: 1.3rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.approach-step:hover .approach-step-marker {
    background: var(--gold);
}

    .approach-step:hover .approach-step-marker i {
        color: var(--navy);
    }

.approach-step-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50%;
    border: 2px solid var(--white);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}

.approach-step.is-visible .approach-step-badge {
    transform: scale(1);
}

.approach-step h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.approach-step-en-title {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.approach-step p {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

.approach-step-en {
    font-size: 0.78rem;
    font-style: italic;
    color: var(--ink-soft);
    opacity: 0.8;
    line-height: 1.5;
    max-width: 240px;
    margin: 0.5rem auto 0;
}


/* ═══════════════════════════════════════════════════════════
   SECTION — POURQUOI AXION
   ═══════════════════════════════════════════════════════════ */
.section-why {
    padding: 1rem 0;
    background: var(--paper);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(1, 30, 61, 0.1);
        border-color: rgba(242, 144, 12, 0.25);
    }

.why-card-visual {
    position: relative;
    height: 180px;
    overflow: hidden;
}

    .why-card-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.why-card:hover .why-card-visual img {
    transform: scale(1.06);
}

.why-card-icon-wrap {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    z-index: 2;
    transition: background 0.3s ease, transform 0.3s ease;
}

.why-card:hover .why-card-icon-wrap {
    background: var(--navy);
    transform: translateX(-50%) scale(1.1);
}

.why-card-icon-wrap i {
    font-size: 1.1rem;
    color: var(--navy);
    transition: color 0.3s ease;
}

.why-card:hover .why-card-icon-wrap i {
    color: var(--gold);
}

.why-card-body {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

    .why-card-body h3 {
        font-size: 1.05rem;
        color: var(--navy);
        margin-bottom: 0.3rem;
    }

    .why-card-body p {
        font-size: 0.85rem;
        color: var(--ink-soft);
        line-height: 1.6;
    }

.why-card-en-title {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.why-card-en {
    font-size: 0.78rem;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed var(--line);
}

.why-cta {
    text-align: center;
    margin-top: 2.5rem;
}


/* ═══════════════════════════════════════════════════════════
   SECTION — CTA FINAL
   ═══════════════════════════════════════════════════════════ */
.section-cta {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-image {
    position: absolute;
    inset: 0;
    background-image: url('/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 30, 61, 0.92) 0%, rgba(1, 30, 61, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

    .cta-content h2 {
        font-size: clamp(1.4rem, 3vw, 2rem);
        color: var(--white);
        margin-bottom: 1rem;
    }

    .cta-content > p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.65);
        max-width: 500px;
        margin: 0 auto 2rem;
        line-height: 1.6;
    }

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════
   BUTTONS (shared)
   ═══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

    .btn i {
        font-size: 1rem;
    }

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

    .btn-gold:hover {
        background: var(--gold-light);
        border-color: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(242, 144, 12, 0.3);
    }

.btn-gold-dark {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

    .btn-gold-dark:hover {
        background: var(--navy);
        color: var(--gold);
        border-color: var(--navy);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

    .btn-navy:hover {
        background: var(--navy-mid);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

    .btn-outline-light:hover {
        border-color: var(--gold);
        color: var(--gold-light);
        transform: translateY(-2px);
    }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 7rem 0 3rem;
    }

    .hero-content {
        order: 1;
        padding: 2rem;
    }

    .hero-side-btn {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        gap: 0.7rem;
        width: min(360px, 86vw);
        margin: 0.6rem auto 0;
    }

        .hero-side-btn i {
            margin-bottom: 0;
        }

        .hero-side-btn small {
            display: none;
        }

    .hero-side-btn-left {
        order: 2;
    }

    .hero-side-btn-right {
        order: 3;
    }

        .hero-side-btn-left:hover, .hero-side-btn-right:hover {
            transform: translateY(-2px);
        }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .stat-item:nth-child(3) {
        border-left: none;
    }

    .stat-item:nth-child(3), .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
    }

    .approach-timeline {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

        .approach-timeline::before {
            top: 0;
            bottom: 0;
            left: 31px;
            right: auto;
            width: 2px;
            height: auto;
            transform: scaleY(0);
            transform-origin: top center;
        }

        .approach-timeline.is-visible::before {
            transform: scaleY(1);
        }

    .approach-step {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        text-align: left;
    }

    .approach-step-marker {
        margin: 0;
        flex-shrink: 0;
    }

    .approach-step p, .approach-step-en {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .intro-image {
        order: -1;
    }

    .intro-image-frame img {
        height: 300px;
    }
}

@media (max-width: 540px) {
    .hero-content {
        padding: 1.5rem;
    }

    .hero-quote {
        padding: 1rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.3rem 1rem 0;
    }

        .stat-item:first-child {
            border-top: none;
            padding-top: 0;
        }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ════════════════════════════════════════════════════════════
   SYSTÈME BILINGUE — Page Accueil
   ════════════════════════════════════════════════════════════ */

/* ── Hero badge : toggle ── */
.hero-badge .bl-en {
    display: none;
}

[data-lang="en"] .hero-badge .bl-fr {
    display: none;
}

[data-lang="en"] .hero-badge .bl-en {
    display: inline;
}

/* ── Hero side buttons : toggle ── */
.hero-side-btn .bl-en {
    display: none;
}

[data-lang="en"] .hero-side-btn .bl-fr {
    display: none;
}

[data-lang="en"] .hero-side-btn .bl-en {
    display: block;
}

/* ── Hero taglines : ordre swap ── */
.hero-taglines {
    display: flex;
    flex-direction: column;
}

.hero-tagline-fr {
    order: 1;
}

.hero-tagline-en {
    order: 2;
}

[data-lang="en"] .hero-tagline-en {
    order: 1;
    font-size: 1.1rem;
    color: rgba(255,255,255,.88);
    font-style: normal;
}

[data-lang="en"] .hero-tagline-fr {
    order: 2;
    font-size: .88rem;
    color: rgba(255,255,255,.38);
    font-style: italic;
}

/* ── Hero quote : ordre swap ── */
.hero-quote {
    display: flex;
    flex-direction: column;
}

.hero-quote-fr {
    order: 1;
}

.hero-quote-en {
    order: 2;
}

[data-lang="en"] .hero-quote-en {
    order: 1;
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.15rem;
    color: var(--gold-light);
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 .35rem;
}

[data-lang="en"] .hero-quote-fr {
    order: 2;
    font-size: .82rem;
    color: rgba(255,255,255,.3);
    font-style: normal;
}

    [data-lang="en"] .hero-quote-fr i {
        display: none;
    }

/* ── CORRECTION : Stat labels — bilingual avec order ── */
/* (.stat-label est déjà display:flex flex-direction:column → order fonctionne directement) */
.stat-label .bl-fr {
    order: 1;
}

.stat-label .bl-en {
    order: 2;
    font-size: .72rem;
    font-style: italic;
    color: rgba(255,255,255,.35);
}

[data-lang="en"] .stat-label .bl-en {
    order: 1;
    font-size: .82rem;
    color: rgba(255,255,255,.78);
    font-style: normal;
}

[data-lang="en"] .stat-label .bl-fr {
    order: 2;
    font-size: .72rem;
    font-style: italic;
    color: rgba(255,255,255,.35);
}

/* ── Intro eyebrow : toggle ── */
.intro-label .bl-en {
    display: none;
}

[data-lang="en"] .intro-label .bl-fr {
    display: none;
}

[data-lang="en"] .intro-label .bl-en {
    display: inline;
}

/* ── Intro paragraphes : swap styles ── */
.intro-para {
    margin-bottom: 2rem;
}

[data-lang="en"] .intro-para .intro-en.bl-en {
    font-size: 1.02rem;
    color: var(--ink);
    font-style: normal;
    border-left: none;
    padding-left: 0;
    margin-bottom: 0;
}

[data-lang="en"] .intro-para .intro-fr.bl-fr {
    font-size: .88rem;
    color: var(--ink-soft);
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 1.2rem;
    margin-bottom: 0;
}

/* ── Section header : flex pour le swap des subtitles ── */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .section-header .eyebrow .bl-en {
        display: none;
    }

[data-lang="en"] .section-header .eyebrow .bl-fr {
    display: none;
}

[data-lang="en"] .section-header .eyebrow .bl-en {
    display: inline;
}

[data-lang="en"] .section-header .section-subtitle {
    order: 5;
    font-style: italic;
    opacity: .7;
    font-size: .85rem;
}

[data-lang="en"] .section-header .section-subtitle-en {
    order: 4;
    font-style: normal;
    opacity: 1;
    font-size: 1rem;
}

/* ── Sector cards h3 bilingual ── */
.sector-card h3.bilingual .bl-en {
    font-size: .72rem;
    font-style: italic;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    transition: color .3s;
}

.sector-card:hover h3.bilingual .bl-en {
    color: rgba(255,255,255,.55);
}

[data-lang="en"] .sector-card h3.bilingual .bl-en {
    order: 1;
    font-size: 1rem;
    font-style: normal;
    letter-spacing: 0;
    text-transform: none;
    color: inherit;
    font-family: "Newsreader", Georgia, serif;
    font-weight: 600;
}

[data-lang="en"] .sector-card h3.bilingual .bl-fr {
    order: 2;
    font-size: .72rem;
    font-style: italic;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
}

[data-lang="en"] .sector-card:hover h3.bilingual .bl-fr {
    color: rgba(255,255,255,.55);
}

/* ── Expertise cards h3 bilingual ── */
.expertise-card h3.bilingual .bl-en {
    font-size: .7rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: .05em;
    text-transform: uppercase;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
}

[data-lang="en"] .expertise-card h3.bilingual .bl-en {
    order: 1;
    font-size: 1rem;
    font-style: normal;
    color: var(--navy);
    letter-spacing: 0;
    text-transform: none;
    font-family: "Newsreader", Georgia, serif;
    font-weight: 600;
}

[data-lang="en"] .expertise-card h3.bilingual .bl-fr {
    order: 2;
    font-size: .7rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: .05em;
    text-transform: uppercase;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
}

/* ── Expertise description ── */
.expertise-desc .bl-fr {
    font-size: .85rem;
    color: var(--ink-soft);
    line-height: 1.6;
    text-align: center;
}

.expertise-desc .bl-en {
    font-size: .78rem;
    color: var(--ink-soft);
    line-height: 1.55;
    text-align: center;
}

[data-lang="en"] .expertise-desc .bl-en {
    font-size: .85rem;
}

[data-lang="en"] .expertise-desc .bl-fr {
    font-size: .78rem;
}

/* ── Approach h3 bilingual ── */
.approach-step h3.bilingual .bl-en {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "IBM Plex Sans", sans-serif;
}

[data-lang="en"] .approach-step h3.bilingual .bl-en {
    order: 1;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--navy);
    font-family: "Newsreader", Georgia, serif;
}

[data-lang="en"] .approach-step h3.bilingual .bl-fr {
    order: 2;
    font-size: .68rem;
    font-style: italic;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
}

/* ── Approach description ── */
.approach-desc .bl-fr {
    font-size: .85rem;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

.approach-desc .bl-en {
    font-size: .78rem;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 240px;
    margin: 0 auto;
}

[data-lang="en"] .approach-desc .bl-en {
    font-size: .85rem;
}

[data-lang="en"] .approach-desc .bl-fr {
    font-size: .78rem;
}

/* ── Why cards h3 bilingual ── */
.why-card-body h3.bilingual .bl-en {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "IBM Plex Sans", sans-serif;
}

[data-lang="en"] .why-card-body h3.bilingual .bl-en {
    order: 1;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--navy);
    font-family: "Newsreader", Georgia, serif;
}

[data-lang="en"] .why-card-body h3.bilingual .bl-fr {
    order: 2;
    font-size: .68rem;
    font-style: italic;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
}

/* ── Why description ── */
.why-desc .bl-fr {
    font-size: .85rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.why-desc .bl-en {
    font-size: .78rem;
    color: var(--ink-soft);
    line-height: 1.55;
    padding-top: .6rem;
    border-top: 1px dashed var(--line);
}

[data-lang="en"] .why-desc .bl-en {
    font-size: .85rem;
    border-top: none;
    padding-top: 0;
}

[data-lang="en"] .why-desc .bl-fr {
    font-size: .78rem;
    padding-top: .6rem;
    border-top: 1px dashed var(--line);
}

/* ── CTA section ── */
.cta-text .bl-fr {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}

.cta-text .bl-en {
    font-size: .88rem;
    color: rgba(255,255,255,.4);
    line-height: 1.55;
}

[data-lang="en"] .cta-text .bl-en {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
}

[data-lang="en"] .cta-text .bl-fr {
    font-size: .88rem;
    color: rgba(255,255,255,.35);
}

.cta-content h2.bilingual .bl-en {
    font-size: .82em;
    color: rgba(255,255,255,.55);
}

[data-lang="en"] .cta-content h2.bilingual .bl-en {
    font-size: 1em;
    color: var(--white);
}

[data-lang="en"] .cta-content h2.bilingual .bl-fr {
    font-size: .82em;
    color: rgba(255,255,255,.45);
}
