﻿/* ═══════════════════════════════════════════════════════════
   AXION — EXPERTISES.CSS
   ═══════════════════════════════════════════════════════════ */

/* ── Séparateur ── */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 2.5rem 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 .9s cubic-bezier(.4,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 .6s cubic-bezier(.34,1.56,.64,1) .4s
}

.section-divider.is-visible .divider-icon {
    transform: scale(1) rotate(0deg)
}

.divider-icon i {
    font-size: .85rem;
    color: var(--gold)
}


/* ═══════════════════════════════════════════════════════════
   INTRODUCTION
   ═══════════════════════════════════════════════════════════ */
.domains-intro {
    padding: 1rem 0 3.5rem;
}

.domains-intro-text-fr {
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 0.6rem;
    text-align: center;
}

.domains-intro-text-en {
    font-size: 0.88rem;
    color: var(--ink-soft);
    font-style: italic;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.domains-intro-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.domains-intro-chip {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50px;
    transition: border-color .3s, background .3s, transform .3s;
}

    .domains-intro-chip:hover {
        border-color: var(--gold);
        background: var(--gold-pale);
        transform: translateY(-2px);
    }

.chip-num {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(242,144,12,.12);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.chip-text {
    display: flex;
    flex-direction: column;
}

.chip-fr {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    text-align: center;
}

.chip-en {
    font-size: 0.66rem;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.2;
    text-align: center;
}


/* ═══════════════════════════════════════════════════════════
   DOMAIN ROW
   ═══════════════════════════════════════════════════════════ */
.domain-row {
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.domain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4.5rem;
    align-items: center;
}

.domain-content {
    position: relative;
}

.domain-number {
    position: absolute;
    top: -2.4rem;
    left: -0.4rem;
    font-family: "Newsreader", Georgia, serif;
    font-size: 6.5rem;
    font-weight: 600;
    color: rgba(1,30,61,.06);
    line-height: 1;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.domain-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242,144,12,.1);
    border-radius: 10px;
    margin-bottom: 1.3rem;
    transition: transform .3s, background .3s;
}

.domain-content:hover .domain-icon {
    background: var(--gold);
    transform: rotate(-6deg) scale(1.06);
}

.domain-icon i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: color .3s;
}

.domain-content:hover .domain-icon i {
    color: var(--navy);
}

.domain-title-fr {
    position: relative;
    z-index: 1;
    font-size: clamp(1.4rem,2.6vw,1.9rem);
    color: var(--navy);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.domain-title-en {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1.3rem;
}

.domain-text-fr {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: .8rem;
    text-align: justify;
}

.domain-text-en {
    position: relative;
    z-index: 1;
    font-size: .88rem;
    color: var(--ink-soft);
    font-style: italic;
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid var(--gold);
    margin-bottom: 1.7rem;
    text-align: justify;
}


/* ═══════════════════════════════════════════════════════════
   CHRONOLOGIE HORIZONTALE (TIMELINE)
   ═══════════════════════════════════════════════════════════ */
.domain-timeline {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding-top: 1rem;
}

.timeline-node {
    flex: 1 1 200px;
    max-width: 240px;
    min-width: 160px;
    position: relative;
    text-align: center;
    padding: 2.5rem 0.7rem 0.5rem;
}

    .timeline-node::before {
        content: "";
        position: absolute;
        top: 22px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--line-gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .6s cubic-bezier(.4,0,.2,1);
    }

.domain-timeline.is-visible .timeline-node::before {
    transform: scaleX(1);
}

.domain-timeline.is-visible .timeline-node:nth-child(1)::before {
    transition-delay: .15s;
}

.domain-timeline.is-visible .timeline-node:nth-child(2)::before {
    transition-delay: .30s;
}

.domain-timeline.is-visible .timeline-node:nth-child(3)::before {
    transition-delay: .45s;
}

.domain-timeline.is-visible .timeline-node:nth-child(4)::before {
    transition-delay: .60s;
}

.domain-timeline.is-visible .timeline-node:nth-child(5)::before {
    transition-delay: .75s;
}

.timeline-node-dot {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    margin: 0 auto 0.9rem;
    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 .45s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
}

.domain-timeline.is-visible .timeline-node-dot {
    transform: scale(1);
    opacity: 1;
}

.domain-timeline.is-visible .timeline-node:nth-child(1) .timeline-node-dot {
    transition-delay: .25s;
}

.domain-timeline.is-visible .timeline-node:nth-child(2) .timeline-node-dot {
    transition-delay: .40s;
}

.domain-timeline.is-visible .timeline-node:nth-child(3) .timeline-node-dot {
    transition-delay: .55s;
}

.domain-timeline.is-visible .timeline-node:nth-child(4) .timeline-node-dot {
    transition-delay: .70s;
}

.domain-timeline.is-visible .timeline-node:nth-child(5) .timeline-node-dot {
    transition-delay: .85s;
}

.timeline-node-dot i {
    font-size: 1rem;
    color: var(--gold);
    transition: color .3s;
}

.timeline-node:hover .timeline-node-dot {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.12);
}

    .timeline-node:hover .timeline-node-dot i {
        color: var(--navy);
    }

.tl-fr {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: .2rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
}

.tl-en {
    display: block;
    font-size: .68rem;
    font-style: italic;
    color: var(--ink-soft);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease .05s, transform .4s ease .05s;
}

.domain-timeline.is-visible .timeline-node:nth-child(1) .tl-fr, .domain-timeline.is-visible .timeline-node:nth-child(1) .tl-en {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .35s;
}

.domain-timeline.is-visible .timeline-node:nth-child(2) .tl-fr, .domain-timeline.is-visible .timeline-node:nth-child(2) .tl-en {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .50s;
}

.domain-timeline.is-visible .timeline-node:nth-child(3) .tl-fr, .domain-timeline.is-visible .timeline-node:nth-child(3) .tl-en {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .65s;
}

.domain-timeline.is-visible .timeline-node:nth-child(4) .tl-fr, .domain-timeline.is-visible .timeline-node:nth-child(4) .tl-en {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .80s;
}

.domain-timeline.is-visible .timeline-node:nth-child(5) .tl-fr, .domain-timeline.is-visible .timeline-node:nth-child(5) .tl-en {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .95s;
}


/* ═══════════════════════════════════════════════════════════
   DÉFIS → RÉPONSE (INFOGRAPHIE)
   ═══════════════════════════════════════════════════════════ */
.dcr-infographic {
    grid-column: 1 / -1;
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-radius: 14px;
    overflow: hidden;
}

.dcr-col {
    flex: 1;
    padding: 2rem 1.8rem;
}

.dcr-challenges {
    background: rgba(255,255,255,.03);
}

.dcr-responses {
    background: rgba(242,144,12,.04);
}

.dcr-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.4rem;
}

.dcr-h-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.dcr-h-warn {
    background: rgba(255,255,255,.1);
}

    .dcr-h-warn i {
        color: rgba(255,255,255,.7);
        font-size: .95rem;
    }

.dcr-h-sol {
    background: rgba(242,144,12,.2);
}

    .dcr-h-sol i {
        color: var(--gold);
        font-size: .95rem;
    }

.dcr-header h4 {
    font-size: .95rem;
    color: var(--white);
    margin: 0;
}

.dcr-header span {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-left: auto;
}

.dcr-items {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.dcr-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    opacity: 0;
    transition: opacity .4s ease, transform .4s ease;
}

.dcr-challenges .dcr-item {
    transform: translateX(-18px);
}

.dcr-responses .dcr-item {
    transform: translateX(18px);
}

.dcr-infographic.is-visible .dcr-item {
    opacity: 1;
    transform: translateX(0);
}

.dcr-infographic.is-visible .dcr-items .dcr-item:nth-child(1) {
    transition-delay: .3s;
}

.dcr-infographic.is-visible .dcr-items .dcr-item:nth-child(2) {
    transition-delay: .45s;
}

.dcr-infographic.is-visible .dcr-items .dcr-item:nth-child(3) {
    transition-delay: .6s;
}

.dcr-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    margin-top: 4px;
}

.dcr-challenges .dcr-dot {
    background: rgba(255,255,255,.35);
}

.dcr-responses .dcr-dot {
    background: var(--gold);
}

.dcr-fr {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.35;
}

.dcr-en {
    display: block;
    font-size: .7rem;
    font-style: italic;
    color: rgba(255,255,255,.45);
    margin-top: .15rem;
}

.dcr-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex-shrink: 0;
    width: 80px;
    background: linear-gradient(180deg, rgba(242,144,12,.08) 0%, rgba(242,144,12,.15) 100%);
    border-left: 1px solid rgba(242,144,12,.2);
    border-right: 1px solid rgba(242,144,12,.2);
}

@keyframes dcrPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(242,144,12,.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(242,144,12,0);
    }
}

.dcr-center-node {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    color: var(--navy);
    font-size: 1.2rem;
    transform: scale(0);
    transition: transform .5s cubic-bezier(.34,1.56,.64,1) .2s;
}

.dcr-infographic.is-visible .dcr-center-node {
    transform: scale(1);
    animation: dcrPulse 2.2s ease-in-out 1s infinite;
}

.dcr-center-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════
   ENCART CEMAC / UEMOA
   ═══════════════════════════════════════════════════════════ */
.domain-regional-badge {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1.1rem;
    background: var(--white);
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    padding: 1.4rem 1.5rem;
    margin-bottom: 1.8rem;
}

.regional-badge-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242,144,12,.12);
    border-radius: 50%;
}

    .regional-badge-icon i {
        font-size: 1.2rem;
        color: var(--gold);
    }

.regional-badge-title {
    display: block;
    font-size: .95rem;
    font-weight: 600;
    color: var(--navy);
}

.regional-badge-title-en {
    display: block;
    font-size: .7rem;
    font-style: italic;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem;
}

.regional-badge-desc {
    font-size: .82rem;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: .3rem;
}

.regional-badge-desc-en {
    font-size: .74rem;
    font-style: italic;
    color: var(--ink-soft);
    opacity: .8;
    margin-bottom: .6rem;
}

.regional-badge-tags {
    display: flex;
    gap: .5rem;
}

.regional-tag {
    display: inline-flex;
    align-items: center;
    padding: .3rem .8rem;
    background: var(--navy);
    color: var(--gold);
    font-family: "IBM Plex Mono", monospace;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .05em;
    border-radius: 50px;
}


/* ═══════════════════════════════════════════════════════════
   IMAGE LATÉRALE
   ═══════════════════════════════════════════════════════════ */
.domain-image-wrap {
    position: relative;
}

.domain-image-backdrop {
    position: absolute;
    inset: 0;
    transform: translate(-16px, 16px);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    z-index: 0;
    opacity: .9;
    transition: transform .4s;
}

.domain-row.reverse .domain-image-backdrop {
    transform: translate(16px, 16px);
}

.domain-image-wrap:hover .domain-image-backdrop {
    transform: translate(-10px, 10px);
}

.domain-row.reverse .domain-image-wrap:hover .domain-image-backdrop {
    transform: translate(10px, 10px);
}

.domain-image-frame {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(1,30,61,.16);
}

    .domain-image-frame img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
        transition: transform .5s;
    }

    .domain-image-frame:hover img {
        transform: scale(1.05);
    }


/* ═══════════════════════════════════════════════════════════
   LE PONT — CORPORATE / SOUVERAIN
   ═══════════════════════════════════════════════════════════ */
.bridge-section {
    padding: 1rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

    .bridge-section .eyebrow {
        color: var(--gold);
    }

    .bridge-section .section-header h2 {
        color: var(--white);
    }

    .bridge-section .section-subtitle {
        color: rgba(255,255,255,.55);
    }

.bridge-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0 2.5rem;
}

.bridge-side {
    flex: 1;
    min-width: 240px;
    max-width: 360px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(242,144,12,.25);
    border-radius: 10px;
    padding: 1.8rem 1.6rem;
    text-align: center;
}

.bridge-label {
    display: block;
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: .2rem;
}

.bridge-label-en {
    display: block;
    font-size: .7rem;
    font-style: italic;
    color: rgba(255,255,255,.4);
    margin-bottom: 1.2rem;
}

.bridge-pillars {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.bridge-pillar {
    font-size: .78rem;
    color: rgba(255,255,255,.75);
    padding: .5rem .7rem;
    background: rgba(255,255,255,.05);
    border-radius: 6px;
}

@keyframes bridgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(242,144,12,.4);
    }

    50% {
        transform: scale(1.07);
        box-shadow: 0 0 0 10px rgba(242,144,12,0);
    }
}

.bridge-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 1.6rem;
    flex-shrink: 0;
    animation: bridgePulse 2.4s ease-in-out infinite;
}

.bridge-text-fr {
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.65;
    max-width: 760px;
    margin: 0 auto .8rem;
    text-align: center;
}

.bridge-text-en {
    font-size: .85rem;
    color: rgba(255,255,255,.4);
    font-style: italic;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .domain-row {
        padding: 3.5rem 0;
    }

    .domain-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .domain-row .domain-image {
        order: -1;
    }

    .domain-number {
        font-size: 4.5rem;
        top: -1.4rem;
    }

    .domain-image-frame img {
        height: 280px;
    }

    .domain-image-backdrop, .domain-row.reverse .domain-image-backdrop {
        transform: translate(-10px,10px);
    }

    .dcr-infographic {
        flex-direction: column;
    }

    .dcr-center {
        width: 100%;
        height: auto;
        flex-direction: row;
        padding: .8rem 0;
        gap: .8rem;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(242,144,12,.2);
        border-bottom: 1px solid rgba(242,144,12,.2);
    }

    .dcr-challenges .dcr-item {
        transform: translateY(-12px);
    }

    .dcr-responses .dcr-item {
        transform: translateY(12px);
    }

    .bridge-grid {
        flex-direction: column;
    }

    .bridge-side {
        max-width: 420px;
        width: 100%;
    }

    .timeline-node {
        flex: 1 1 45%;
        max-width: 48%;
    }
}

@media (max-width: 540px) {
    .domain-row {
        padding: 2.8rem 0;
    }

    .domain-regional-badge {
        flex-direction: column;
    }

    .regional-badge-icon {
        margin: 0 auto;
    }

    .timeline-node {
        flex: 1 1 100%;
        max-width: 100%;
    }

        .timeline-node::before {
            display: none;
        }

    .domains-intro-chip {
        width: 100%;
    }
}


/* ════════════════════════════════════════════════════════════
   SYSTÈME BILINGUE — Page Expertises
   Position swap via .bilingual (site.css) + style swap ici
   ════════════════════════════════════════════════════════════ */

/* ── Toggles : bannière, breadcrumb, eyebrows ── */
.page-banner-title .bl-en,
.page-banner-eyebrow .bl-en,
.page-banner-subtitle .bl-en,
.breadcrumb .bl-en {
    display: none;
}

[data-lang="en"] .page-banner-title .bl-fr,
[data-lang="en"] .page-banner-eyebrow .bl-fr,
[data-lang="en"] .page-banner-subtitle .bl-fr,
[data-lang="en"] .breadcrumb .bl-fr {
    display: none;
}

[data-lang="en"] .page-banner-title .bl-en,
[data-lang="en"] .page-banner-eyebrow .bl-en,
[data-lang="en"] .page-banner-subtitle .bl-en,
[data-lang="en"] .breadcrumb .bl-en {
    display: inline;
}

/* ── Section header : flex pour le swap des subtitles ── */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

[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;
}

/* ── Bridge section : eyebrow toggle ── */
.bridge-section .section-header .eyebrow .bl-en {
    display: none;
}

[data-lang="en"] .bridge-section .section-header .eyebrow .bl-fr {
    display: none;
}

[data-lang="en"] .bridge-section .section-header .eyebrow .bl-en {
    display: inline;
}

/* ── Bridge section : subtitle couleur ── */
[data-lang="en"] .bridge-section .section-subtitle {
    color: rgba(255,255,255,.4);
}

[data-lang="en"] .bridge-section .section-subtitle-en {
    color: rgba(255,255,255,.55);
}

/* ── Domains intro text pair : style swap ── */
.bilingual .domains-intro-text-fr.bl-fr,
.bilingual .domains-intro-text-en.bl-en {
    opacity: 1;
    text-align: center;
}

[data-lang="en"] .domains-intro-pair .domains-intro-text-en.bl-en {
    font-size: 1rem;
    color: var(--ink);
    font-style: normal;
}

[data-lang="en"] .domains-intro-pair .domains-intro-text-fr.bl-fr {
    font-size: .88rem;
    color: var(--ink-soft);
    font-style: italic;
}

/* ── Chips : order swap (.chip-text est déjà flex column) ── */
.chip-fr {
    order: 1;
}

.chip-en {
    order: 2;
}

[data-lang="en"] .chip-en {
    order: 1;
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy);
    font-style: normal;
}

[data-lang="en"] .chip-fr {
    order: 2;
    font-size: .66rem;
    color: var(--ink-soft);
    font-weight: 400;
    font-style: italic;
}

/* ── Domain h3 bilingual : annuler opacité site.css + contexte ── */
h3.bilingual .domain-title-fr.bl-fr,
h3.bilingual .domain-title-en.bl-en {
    opacity: 1;
}

/* EN mode : EN devient le grand titre, FR devient le label doré */
[data-lang="en"] h3.bilingual .domain-title-en.bl-en {
    order: 1;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    color: var(--navy);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: .3rem;
    font-family: "Newsreader", Georgia, serif;
}

[data-lang="en"] h3.bilingual .domain-title-fr.bl-fr {
    order: 2;
    font-size: .85rem;
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
    letter-spacing: .03em;
    font-family: "IBM Plex Sans", sans-serif;
    margin-bottom: 0;
}

/* ── Domain text pairs : style swap ── */
.bilingual .domain-text-fr.bl-fr,
.bilingual .domain-text-en.bl-en {
    opacity: 1;
}

[data-lang="en"] .domain-text-pair .domain-text-en.bl-en {
    font-size: 1rem;
    color: var(--ink);
    font-style: normal;
    border-left: none;
    padding-left: 0;
}

[data-lang="en"] .domain-text-pair .domain-text-fr.bl-fr {
    font-size: .88rem;
    color: var(--ink-soft);
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
}

/* ── Timeline nodes : flex column + order swap ── */
.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* pour le ::before */
}

.timeline-node-dot {
    order: 1;
}

.tl-fr {
    order: 2;
}

.tl-en {
    order: 3;
}

[data-lang="en"] .tl-en {
    order: 2;
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    font-style: normal;
}

[data-lang="en"] .tl-fr {
    order: 3;
    font-size: .68rem;
    font-style: italic;
    color: var(--ink-soft);
    font-weight: 400;
}

/* ── DCR items : inner div flex + order swap ── */
.dcr-item > div {
    display: flex;
    flex-direction: column;
}

.dcr-fr {
    order: 1;
}

.dcr-en {
    order: 2;
}

[data-lang="en"] .dcr-en {
    order: 1;
    font-size: .85rem;
    font-weight: 500;
    color: var(--white);
    font-style: normal;
    margin-top: 0;
    margin-bottom: .15rem;
}

[data-lang="en"] .dcr-fr {
    order: 2;
    font-size: .7rem;
    font-style: italic;
    color: rgba(255,255,255,.45);
    font-weight: 400;
}

/* ── Bridge label pairs ── */
.bridge-label-bilingual {
    gap: .2rem;
}

    .bridge-label-bilingual .bridge-label.bl-fr,
    .bridge-label-bilingual .bridge-label-en.bl-en {
        opacity: 1;
    }

[data-lang="en"] .bridge-label-bilingual .bridge-label-en.bl-en {
    order: 1;
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    font-style: normal;
    margin-bottom: .2rem;
}

[data-lang="en"] .bridge-label-bilingual .bridge-label.bl-fr {
    order: 2;
    font-size: .7rem;
    font-style: italic;
    color: rgba(255,255,255,.4);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    margin-bottom: 0;
}

/* ── Bridge text pair : style swap ── */
.bilingual .bridge-text-fr.bl-fr,
.bilingual .bridge-text-en.bl-en {
    opacity: 1;
}

[data-lang="en"] .bridge-text-pair .bridge-text-en.bl-en {
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.65;
}

[data-lang="en"] .bridge-text-pair .bridge-text-fr.bl-fr {
    font-size: .85rem;
    color: rgba(255,255,255,.4);
    font-style: italic;
}

/* ── Regional badge : title pair ── */
.regional-title-pair .bl-fr,
.regional-title-pair .bl-en {
    opacity: 1;
}

.regional-title-pair .regional-badge-title.bl-fr {
    order: 1;
}

.regional-title-pair .regional-badge-title-en.bl-en {
    order: 2;
}

[data-lang="en"] .regional-title-pair .regional-badge-title-en.bl-en {
    order: 1;
    font-size: .95rem;
    font-weight: 600;
    color: var(--navy);
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}

[data-lang="en"] .regional-title-pair .regional-badge-title.bl-fr {
    order: 2;
    font-size: .7rem;
    font-style: italic;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem;
}

/* ── Regional badge : desc pair ── */
.regional-desc-pair .bl-fr,
.regional-desc-pair .bl-en {
    opacity: 1;
}

[data-lang="en"] .regional-desc-pair .regional-badge-desc-en.bl-en {
    font-size: .82rem;
    color: var(--ink);
    font-style: normal;
    opacity: 1;
    margin-bottom: .3rem;
}

[data-lang="en"] .regional-desc-pair .regional-badge-desc.bl-fr {
    font-size: .74rem;
    color: var(--ink-soft);
    font-style: italic;
    opacity: .8;
    margin-bottom: 0;
}

/* ── CTA ── */
.cta-expertises-text .bl-fr {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}

.cta-expertises-text .bl-en {
    font-size: .88rem;
    color: rgba(255,255,255,.4);
}

[data-lang="en"] .cta-expertises-text .bl-en {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
}

[data-lang="en"] .cta-expertises-text .bl-fr {
    font-size: .88rem;
    color: rgba(255,255,255,.35);
}
