/* =======================================================================
   EUROPE GLOBAL LOGISTICS — Feuille de styles principale
   Étape 1 : <head>, header, hero slider
   ======================================================================= */

/* -----------------------------------------------------------------------
   1. CHARTE GRAPHIQUE — TOKENS
   Palette extraite du logo (globe marine + ruban orange) :
   - Marine profond   : dominante du logo (#00326E)
   - Orange chaleureux : accent du ruban / flèche (#F5960F)
   ----------------------------------------------------------------------- */
:root {
    /* Couleurs — Marine (identité, structure, texte fort) */
    --navy-900: #041B3D;
    --navy-800: #072A54;
    --navy-700: #0A3468;   /* marine primaire (proche logo) */
    --navy-600: #0F4C87;
    --navy-500: #1B63A8;

    /* Couleurs — Orange (accent, action, chaleur) */
    --orange-600: #E67300;
    --orange-500: #F5960F;  /* orange primaire (proche logo) */
    --orange-400: #FFAD3D;
    --orange-100: #FFEEDA;

    /* Neutres */
    --white:    #FFFFFF;
    --gray-50:  #F5F8FC;
    --gray-100: #EAF0F7;
    --gray-300: #C6D2E2;
    --gray-500: #6B7A90;
    --ink:      #0E1E33;   /* texte principal */

    /* Typographie */
    --font-display: 'Poppins', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Rayon / ombres */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-sm: 0 4px 14px rgba(10, 40, 80, 0.08);
    --shadow-md: 0 14px 40px rgba(4, 27, 61, 0.16);
    --shadow-lg: 0 24px 60px rgba(4, 27, 61, 0.28);

    /* Dégradés signature */
    --gradient-navy: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
    --gradient-orange: linear-gradient(90deg, var(--orange-600) 0%, var(--orange-500) 55%, var(--orange-400) 100%);
    --gradient-ribbon: linear-gradient(90deg, var(--navy-700) 0%, var(--navy-500) 35%, var(--orange-500) 75%, var(--orange-400) 100%);

    --header-topbar-h: 42px;
    --header-nav-h: 106px;
    --container-w: 1240px;
}

/* -----------------------------------------------------------------------
   2. RESET & BASE
   ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy-900);
    line-height: 1.2;
    margin: 0 0 0.6em;
    font-weight: 700;
}

p { margin: 0 0 1em; color: var(--gray-500); }

.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--orange-400);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* -----------------------------------------------------------------------
   3. BOUTONS
   ----------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.btn i { font-size: 0.85em; }

.btn--primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(230, 115, 0, 0.35);
}
.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(230, 115, 0, 0.42);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
}
.btn--ghost:hover {
    background: var(--white);
    color: var(--navy-800);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn--lg { padding: 16px 30px; font-size: 1rem; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange-600);
    background: var(--orange-100);
    padding: 8px 16px 8px 12px;
    border-radius: var(--radius-pill);
}
.eyebrow--light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.eyebrow i { color: var(--orange-400); }

/* =======================================================================
   4. HEADER
   ======================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    isolation: isolate;
}

/* --- Topbar (hors du header sticky, défile normalement) --- */
.topbar {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
    height: var(--header-topbar-h);
}

.topbar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar__contact { display: flex; align-items: center; gap: 26px; }

.topbar__item { display: flex; align-items: center; }

.topbar__item a,
.topbar__item--address,
.topbar__item--hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.topbar__item a:hover { color: var(--orange-400); }

.topbar__item i { color: var(--orange-500); font-size: 0.9em; }

.topbar__item--address { color: rgba(255, 255, 255, 0.72); }
.topbar__item--hours { color: rgba(255, 255, 255, 0.72); }

.topbar__right { display: flex; align-items: center; gap: 22px; }

.topbar__socials { display: flex; align-items: center; gap: 12px; }
.topbar__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    transition: background 0.2s ease, transform 0.2s ease;
}
.topbar__socials a:hover {
    background: var(--orange-500);
    transform: translateY(-2px);
}

/* --- Navbar --- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 0 rgba(10, 40, 80, 0.04);
    transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled .navbar {
    box-shadow: var(--shadow-md);
}

.navbar__inner {
    height: var(--header-nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: height 0.3s ease;
}

.site-header.is-scrolled .navbar__inner {
    height: 84px;
}

.navbar__brand img {
    height: 76px;
    width: auto;
    transition: height 0.3s ease;
}

.site-header.is-scrolled .navbar__brand img {
    height: 60px;
}

.navbar__nav { flex: 1; display: flex; justify-content: center; }

.nav-menu { display: flex; align-items: center; gap: 4px; }

.nav-menu__item { position: relative; }

.nav-menu__item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--navy-900);
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu__item > a i { font-size: 0.7em; color: var(--gray-500); transition: transform 0.2s ease; }

.nav-menu__item > a:hover,
.nav-menu__item > a.is-active {
    color: var(--orange-600);
    background: var(--orange-100);
}

.nav-menu__item.has-dropdown:hover > a i { transform: rotate(180deg); }

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 230px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    border-top: 3px solid var(--orange-500);
}

.nav-menu__item.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dropdown a i {
    font-size: 0.7em;
    color: var(--orange-500);
    flex-shrink: 0;
}

.dropdown a:hover {
    background: var(--gray-50);
    color: var(--orange-600);
    padding-left: 18px;
}

.navbar__actions { display: flex; align-items: center; gap: 18px; }

.navbar__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.navbar__burger:hover { background: var(--orange-100); }
.navbar__burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--navy-900);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.navbar__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.is-open span:nth-child(2) { opacity: 0; }
.navbar__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Panneau mobile : en-tête / pied de menu, fermeture, overlay --- */
.navbar__nav-head,
.navbar__nav-foot,
.navbar__close,
.navbar__nav-brand { display: none; }

.navbar__nav-scroll { display: contents; }

.navbar__overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 27, 61, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 999;
}
.navbar__overlay.is-open { opacity: 1; visibility: visible; }

/* =======================================================================
   5. HERO
   ======================================================================= */
.hero {
    position: relative;
    background: var(--gradient-navy);
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__grid {
    width: 100%;
    height: 100%;
    display: block;
}

/* Ruban signature — motif repris de la flèche/ruban du logo */
.hero__ribbon {
    position: absolute;
    right: -10%;
    top: -18%;
    width: 70%;
    height: 160%;
    background: var(--gradient-ribbon);
    opacity: 0.16;
    transform: rotate(18deg);
    border-radius: 50%;
    filter: blur(6px);
    z-index: 0;
    pointer-events: none;
}

.hero__grid-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 40px;
    padding-bottom: 90px;
}

/* --- Slider --- */
.hero-slider { position: relative; min-height: 380px; }

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-slide__title {
    font-size: clamp(2.1rem, 3.6vw, 3.15rem);
    color: var(--white);
    margin: 20px 0 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hero-slide__title span {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-slide__text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    max-width: 500px;
    margin-bottom: 34px;
}

.hero-slide__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 44px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-slider__dots { display: flex; gap: 10px; }

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.25s ease, width 0.25s ease;
}
.hero-slider__dot.is-active {
    background: var(--orange-500);
    width: 30px;
    border-radius: var(--radius-pill);
}

.hero-slider__arrows { display: flex; gap: 10px; }

.hero-slider__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.hero-slider__arrow:hover {
    background: var(--orange-500);
    border-color: var(--orange-500);
    transform: translateY(-2px);
}

/* --- Visuel globe --- */
.hero__visual { display: flex; justify-content: center; align-items: center; position: relative; }

.hero-globe {
    position: relative;
    width: min(420px, 92%);
    aspect-ratio: 1 / 1;
    animation: float-globe 6s ease-in-out infinite;
}

@keyframes float-globe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-globe__svg { width: 100%; height: 100%; overflow: visible; }

.hero-globe__ring {
    fill: rgba(255, 255, 255, 0.03);
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 1;
}
.hero-globe__outline {
    fill: none;
    stroke: var(--orange-500);
    stroke-width: 2;
    stroke-dasharray: 4 8;
}
.hero-globe__meridian {
    fill: none;
    stroke: rgba(255, 255, 255, 0.16);
    stroke-width: 1;
}
.hero-globe__link {
    stroke: rgba(245, 150, 15, 0.65);
    stroke-width: 1.4;
    stroke-dasharray: 3 6;
}
.hero-globe__node { fill: var(--white); }
.hero-globe__node--sm { fill: rgba(255,255,255,0.7); }
.hero-globe__node--main { fill: var(--orange-500); }

.hero-globe__icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy-700);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}
.hero-globe__icon--plane { top: 6%; left: 4%; animation: float-icon 4.5s ease-in-out infinite; }
.hero-globe__icon--ship  { bottom: 12%; left: -2%; color: var(--orange-600); animation: float-icon 5.2s ease-in-out infinite 0.4s; }
.hero-globe__icon--truck { bottom: 2%; right: 8%; color: var(--orange-600); animation: float-icon 4.8s ease-in-out infinite 0.8s; }

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-globe__badge {
    position: absolute;
    top: 42%;
    right: -6%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 18px 12px 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.hero-globe__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 1.1rem;
}
.hero-globe__badge strong { display: block; font-family: var(--font-display); color: var(--navy-900); font-size: 1.05rem; }
.hero-globe__badge small { color: var(--gray-500); font-size: 0.76rem; }

/* --- Bandeau stats --- */
.hero__stats {
    position: relative;
    z-index: 2;
    background: var(--navy-900);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding: 26px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat:last-child { border-right: none; }

.hero-stat__value {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
}
.hero-stat__value i { color: var(--orange-500); font-size: 0.85em; }

.hero-stat__label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* =======================================================================
   6. RESPONSIVE
   ======================================================================= */
@media (max-width: 1100px) {
    .hero__grid-layout { grid-template-columns: 1fr; }
    .hero__visual { order: -1; max-width: 380px; margin: 0 auto 20px; }
}

@media (max-width: 1200px) {
    .topbar__item--address { display: none; }
}

@media (max-width: 992px) {
    .topbar__item--address,
    .topbar__item--hours { display: none; }

    /* Panneau de navigation mobile : tiroir plein écran */
    .navbar__nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(360px, 86vw);
        height: 100dvh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 0;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(.4,0,.2,1);
        overflow: hidden;
        z-index: 1000;
    }
    .navbar__nav.is-open { transform: translateX(0); }

    /* En-tête du panneau : logo + bouton fermer (toujours visible, hors zone de défilement) */
    .navbar__nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 18px 20px;
        border-bottom: 1px solid var(--gray-100);
        background: var(--white);
        flex-shrink: 0;
    }
    .navbar__nav-brand { display: block; }
    .navbar__nav-brand img { height: 50px; width: auto; }

    /* Zone de défilement (uniquement les liens) entre l'en-tête et le pied fixes */
    .navbar__nav-scroll {
        display: block;
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar__close {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 14px 0 10px;
        height: 38px;
        border-radius: var(--radius-pill);
        background: var(--gray-50);
        color: var(--navy-900);
        font-family: var(--font-display);
        font-size: 0.82rem;
        font-weight: 600;
        border: 1px solid var(--gray-100);
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .navbar__close i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--white);
        font-size: 0.85rem;
        transition: transform 0.3s ease;
    }
    .navbar__close:hover { background: var(--orange-500); color: var(--white); border-color: var(--orange-500); }
    .navbar__close:hover i { transform: rotate(90deg); }

    /* Liste des liens */
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 14px 14px 10px;
    }
    .nav-menu__item { border-bottom: 1px solid var(--gray-100); }
    .nav-menu__item:last-child { border-bottom: none; }

    .nav-menu__item > a {
        padding: 15px 10px;
        justify-content: space-between;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    .nav-menu__item.has-dropdown > a i { margin-left: auto; }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid var(--orange-200, var(--orange-100));
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0 0 0 14px;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }
    .nav-menu__item.has-dropdown.is-open .dropdown {
        max-height: 400px;
        padding: 6px 0 10px;
    }
    .nav-menu__item.has-dropdown.is-open > a i { transform: rotate(180deg); color: var(--orange-500); }
    .dropdown a { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; padding: 10px 12px; }
    .dropdown a i { font-size: 0.65em; color: var(--orange-500); }

    /* Pied du panneau : appel rapide + CTA + réseaux sociaux (toujours visible, hors zone de défilement) */
    .navbar__nav-foot {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 16px 20px;
        border-top: 1px solid var(--gray-100);
        background: var(--gray-50);
        flex-shrink: 0;
        max-height: 40vh;
        overflow-y: auto;
    }
    .navbar__nav-infos {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 0 4px;
        border-bottom: 1px dashed var(--gray-300);
    }
    .navbar__nav-infos li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.84rem;
        color: var(--gray-500);
        line-height: 1.5;
    }
    .navbar__nav-infos i {
        color: var(--orange-500);
        margin-top: 3px;
        width: 14px;
        text-align: center;
        flex-shrink: 0;
    }
    .navbar__nav-infos a { color: var(--gray-500); word-break: break-all; }
    .navbar__nav-infos a:hover { color: var(--orange-600); }
    .navbar__nav-cta { width: 100%; }
    .navbar__nav-socials {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }
    .navbar__nav-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--white);
        color: var(--navy-800);
        box-shadow: var(--shadow-sm);
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .navbar__nav-socials a:hover { background: var(--orange-500); color: var(--white); transform: translateY(-2px); }

    .navbar__burger { display: flex; }
    .navbar__cta { display: none; }
    .navbar__inner { height: 92px; }
}

@media (min-width: 993px) {
    .navbar__overlay { display: none; }
}

@media (max-width: 767px) {
    .hero__stats-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-stat:nth-child(2) { border-right: none; }
    .hero-stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .hero-slide__actions { flex-direction: column; align-items: stretch; }
    .hero-slide__actions .btn { width: 100%; }
    .navbar__brand img { height: 54px; }
}

@media (max-width: 480px) {
    .topbar { height: auto; padding: 7px 0; }
    .topbar__inner { align-items: flex-start; height: auto; font-size: 0.66rem; }
    .topbar__contact { flex-wrap: wrap; row-gap: 3px; column-gap: 14px; }
    .topbar__item--email span { max-width: none; overflow: visible; text-overflow: clip; white-space: normal; word-break: break-word; }
    .topbar__right { flex-shrink: 0; }
    .topbar__socials { display: none; }
    .hero { padding-top: 90px; }
}

@media (max-width: 360px) {
    .topbar__inner { font-size: 0.6rem; }
    .topbar__contact { column-gap: 10px; }
}

/* =======================================================================
   7. COMPOSANTS PARTAGÉS (section-head, boutons additionnels, badges...)
   ======================================================================= */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

section { position: relative; }

.section-head {
    max-width: 640px;
    margin-bottom: 52px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    margin: 16px 0 14px;
}
.section-head p { font-size: 1.02rem; margin-bottom: 0; }

.btn--outline {
    background: transparent;
    color: var(--navy-800);
    border: 1.5px solid var(--gray-300);
}
.btn--outline:hover {
    border-color: var(--orange-500);
    color: var(--orange-600);
    background: var(--orange-100);
    transform: translateY(-3px);
}

.btn--sm { padding: 10px 18px; font-size: 0.85rem; }

.cert-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    background: var(--navy-900);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.76rem;
    font-weight: 700;
    font-family: var(--font-display);
}
.status-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.status-badge--ouvert { background: #E7F7EE; color: #1D9A5F; }
.status-badge--complet { background: #FDEAEA; color: #D64545; }

/* Champs de formulaire génériques */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy-900);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    font-family: var(--font-body);
    font-size: 0.94rem;
    color: var(--ink);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* =======================================================================
   8. À PROPOS
   ======================================================================= */
.about { padding: 100px 0; background: var(--white); overflow: hidden; }

.about__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.about__visual { position: relative; }

.about__panel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-lg);
}
.about__panel-svg { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }

.about__floating {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    font-size: 1.3rem;
    color: var(--orange-600);
}
.about__floating--truck { top: 8%; right: -8%; }
.about__floating--box { bottom: 14%; left: -6%; color: var(--navy-700); }

.about__badge {
    position: absolute;
    left: 6%;
    bottom: -30px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 26px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-bottom: 4px solid var(--orange-500);
}
.about__badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
}
.about__badge span { font-size: 0.78rem; color: var(--gray-500); font-weight: 600; }

.about__feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 56px;
}
.about__feature-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
}
.about__feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 1.05rem;
}
.about__feature-card h4 {
    font-size: 0.94rem;
    margin: 0 0 4px;
    color: var(--navy-900);
}
.about__feature-card p { font-size: 0.82rem; margin: 0; line-height: 1.5; }

.about__content .eyebrow { margin-bottom: 4px; }
.about__lead { font-size: 1.05rem; color: var(--gray-500); }

.about__points { margin: 26px 0; display: flex; flex-direction: column; gap: 14px; }
.about__points li { display: flex; align-items: flex-start; gap: 12px; }
.about__point-icon { color: var(--orange-500); flex-shrink: 0; margin-top: 2px; }
.about__points span:last-child { color: var(--ink); font-size: 0.96rem; }

.about__certs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }

.about__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* =======================================================================
   9. SERVICES
   ======================================================================= */
.services { padding: 100px 0; background: var(--gray-50); }

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__index {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--gray-100);
    line-height: 1;
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: var(--radius-md);
    background: var(--navy-900);
    color: var(--orange-400);
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; margin-bottom: 20px; }

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--orange-600);
    transition: gap 0.2s ease;
}
.service-card__link:hover { gap: 12px; }

/* =======================================================================
   10. PROCESSUS
   ======================================================================= */
.process { padding: 100px 0; background: var(--white); }

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

.process-step {
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.process-step__top {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--gray-50);
    border: 1.5px dashed var(--gray-300);
    margin-bottom: 22px;
}
.process-step__icon { color: var(--navy-800); font-size: 1.7rem; }
.process-step__num {
    position: absolute;
    top: -6px;
    right: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(230,115,0,0.35);
}

.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.86rem; }

.process-step__arrow {
    display: none;
    position: absolute;
    top: 44px;
    right: -14px;
    color: var(--gray-300);
    font-size: 1.1rem;
}

/* =======================================================================
   11. DÉPARTS (section dynamique réutilisable)
   ======================================================================= */
.dep-section { padding: 100px 0; background: var(--gray-50); }

.dep-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.dep-head h2 { margin: 14px 0 12px; }
.dep-head p { margin: 0; max-width: 520px; }

.dep-head__stats { display: flex; gap: 28px; flex-shrink: 0; }
.dep-head__stat { text-align: center; }
.dep-head__stat span {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--navy-900);
    line-height: 1;
}
.dep-head__stat small { font-size: 0.78rem; color: var(--gray-500); font-weight: 500; }

.dep-toolbar { margin-bottom: 24px; }
.dep-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.dep-filter {
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy-800);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.dep-filter:hover { border-color: var(--orange-400); color: var(--orange-600); }
.dep-filter--active {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: var(--white);
}

.dep-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.dep-table { width: 100%; border-collapse: collapse; }
.dep-table thead th {
    text-align: left;
    padding: 18px 22px;
    background: var(--navy-900);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.dep-table tbody td {
    padding: 18px 22px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
    color: var(--ink);
    vertical-align: middle;
}
.dep-row:last-child td { border-bottom: none; }
.dep-row:hover { background: var(--gray-50); }
.dep-row[hidden] { display: none; }
.dep-row--full { opacity: 0.72; }

.dep-route { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; flex-wrap: wrap; }
.dep-route i { color: var(--orange-500); font-size: 0.8em; }

.dep-mode { display: inline-flex; align-items: center; gap: 6px; color: var(--navy-800); font-weight: 500; }

.dep-col-action { text-align: right; }
.dep-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }

.dep-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    transition: transform 0.2s ease, background 0.2s ease;
}
.dep-btn--waitlist { background: var(--gray-100); color: var(--gray-500); }
.dep-btn--waitlist:hover { background: var(--gray-300); }
.dep-btn--wa {
    width: 38px; height: 38px;
    padding: 0;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    font-size: 1rem;
}
.dep-btn--wa:hover { transform: translateY(-2px); }

.dep-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.76rem;
    font-weight: 700;
    font-family: var(--font-display);
}
.dep-status--open { background: #E7F7EE; color: #1D9A5F; }
.dep-status--lim  { background: #FFF3E0; color: #E67300; }
.dep-status--full { background: #FDEAEA; color: #D64545; }

.dep-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-500);
    margin: 0;
}
.dep-empty i { margin-right: 8px; color: var(--gray-300); }

.dep-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.departs__note { margin: 0; font-size: 0.92rem; }
.departs__note a { color: var(--orange-600); font-weight: 600; }

/* =======================================================================
   12. TARIFS
   ======================================================================= */
.pricing { padding: 100px 0; background: var(--white); }

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.pricing-card--highlight {
    background: var(--gradient-navy);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}
.pricing-card--highlight:hover { transform: scale(1.03) translateY(-6px); }

.pricing-card__tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
}

.pricing-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.pricing-card--highlight .pricing-card__icon { background: rgba(255,255,255,0.12); color: var(--orange-400); }

.pricing-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pricing-card--highlight h3 { color: var(--white); }

.pricing-card__text { font-size: 0.88rem; margin-bottom: 22px; }
.pricing-card--highlight .pricing-card__text { color: rgba(255,255,255,0.72); }

.pricing-card__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.pricing-card__amount { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--navy-900); }
.pricing-card--highlight .pricing-card__amount { color: var(--white); }
.pricing-card__unit { font-size: 0.8rem; color: var(--gray-500); }
.pricing-card--highlight .pricing-card__unit { color: rgba(255,255,255,0.6); }

.pricing-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.pricing-card__features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ink); }
.pricing-card--highlight .pricing-card__features li { color: rgba(255,255,255,0.85); }
.pricing-card__features i { color: var(--orange-500); font-size: 0.85em; }

.pricing-card__cta { width: 100%; }

.pricing__disclaimer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray-500);
}
.pricing__disclaimer i { color: var(--orange-500); margin-right: 4px; }

/* =======================================================================
   13. SUIVI DE COLIS
   ======================================================================= */
.tracking { padding: 100px 0; background: var(--gradient-navy); overflow: hidden; }

.tracking__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.tracking__content h2 { color: var(--white); margin-top: 14px; }
.tracking__content p { color: rgba(255,255,255,0.72); font-size: 1.02rem; }

.tracking__form { display: flex; gap: 12px; margin: 28px 0 14px; flex-wrap: wrap; }
.tracking__field {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    padding: 4px 6px 4px 22px;
}
.tracking__field i { color: var(--orange-400); }
.tracking__field input {
    flex: 1;
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.94rem;
    padding: 12px 0;
}
.tracking__field input::placeholder { color: rgba(255,255,255,0.5); }
.tracking__field input:focus { outline: none; }
.tracking__form .btn { border-radius: var(--radius-pill); }

.tracking__hint { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.tracking__result {
    margin-top: 18px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
}
.tracking__result i { color: var(--orange-400); margin-right: 6px; }

.tracking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}
.tracking-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.88rem;
    color: var(--gray-500);
}
.tracking-card__head strong { color: var(--navy-900); }

.tracking-card__steps { display: flex; flex-direction: column; gap: 0; }
.tracking-card__steps li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 0 30px 0;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--gray-500);
}
.tracking-card__steps li:last-child { padding-bottom: 0; }
.tracking-card__steps li::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: var(--gray-100);
}
.tracking-card__steps li:last-child::before { display: none; }
.tracking-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-50);
    color: var(--gray-300);
    font-size: 1rem;
    flex-shrink: 0;
    z-index: 1;
}
.tracking-card__steps li.is-done { color: var(--navy-900); }
.tracking-card__steps li.is-done .tracking-card__icon { background: var(--orange-500); color: var(--white); }
.tracking-card__steps li.is-done::before { background: var(--orange-400); }

/* =======================================================================
   14. POURQUOI NOUS CHOISIR
   ======================================================================= */
.why-us { padding: 100px 0; background: var(--white); }

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.reason-card {
    padding: 32px 26px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.reason-card:hover {
    background: var(--white);
    border-color: var(--orange-200, var(--orange-100));
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.reason-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--orange-400);
    font-size: 1.25rem;
    margin-bottom: 20px;
}
.reason-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.reason-card p { font-size: 0.88rem; margin: 0; }

/* =======================================================================
   15. TÉMOIGNAGES
   ======================================================================= */
.testimonials { padding: 100px 0; background: var(--gray-50); }

.testimonials__slider { position: relative; max-width: 760px; margin: 0 auto; }

.testimonial-slide {
    display: none;
    animation: fade-in 0.5s ease;
}
.testimonial-slide.is-active { display: block; }

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 46px 44px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.testimonial-card__quote { font-size: 1.8rem; color: var(--orange-200, var(--orange-400)); opacity: 0.5; }
.testimonial-card__stars { color: var(--orange-500); font-size: 0.9rem; margin: 10px 0 18px; }
.testimonial-card__stars i { margin: 0 2px; }
.testimonial-card p { font-size: 1.08rem; color: var(--ink); line-height: 1.7; margin-bottom: 26px; }
.testimonial-card__author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--orange-400);
    font-family: var(--font-display);
    font-weight: 700;
}
.testimonial-card__author div { text-align: left; }
.testimonial-card__author strong { display: block; font-size: 0.94rem; color: var(--navy-900); }
.testimonial-card__author small { font-size: 0.8rem; color: var(--gray-500); }

.testimonials__dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testimonials__dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: background 0.25s ease, width 0.25s ease;
}
.testimonials__dot.is-active { background: var(--orange-500); width: 26px; border-radius: var(--radius-pill); }

/* =======================================================================
   16. FAQ
   ======================================================================= */
.faq { padding: 100px 0; background: var(--white); }

.faq__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.faq__intro .btn { margin-top: 10px; }

.faq__list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-50);
    transition: border-color 0.25s ease;
}
.faq-item.is-open { border-color: var(--orange-400); background: var(--white); }

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--navy-900);
}
.faq-item__question i {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 0.8rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.is-open .faq-item__question i {
    transform: rotate(135deg);
    background: var(--orange-500);
    color: var(--white);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 300px; }
.faq-item__answer p { padding: 0 24px 22px; margin: 0; font-size: 0.92rem; }

/* =======================================================================
   18. BANDEAU CTA
   ======================================================================= */
.cta-banner {
    position: relative;
    background: var(--gradient-navy);
    overflow: hidden;
    padding: 90px 0;
    isolation: isolate;
}

/* Filets dégradés haut/bas — signature reprise du hero */
.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 5px;
    background: var(--gradient-orange);
    z-index: 3;
}
.cta-banner::before { top: 0; }
.cta-banner::after { bottom: 0; }

.cta-banner__bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner__grid { width: 100%; height: 100%; display: block; }

.cta-banner__ribbon {
    position: absolute;
    right: -8%;
    top: -70%;
    width: 55%;
    height: 240%;
    background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(245,150,15,0.28) 100%);
    transform: rotate(16deg);
    border-radius: 50%;
    filter: blur(4px);
    z-index: 0;
    pointer-events: none;
}

.cta-banner__icon {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13rem;
    line-height: 1;
    color: rgba(255,255,255,0.07);
    z-index: 0;
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.cta-banner__text .eyebrow { margin-bottom: 14px; }
.cta-banner__text h2 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.cta-banner__text p { color: rgba(255,255,255,0.78); margin: 0; max-width: 460px; }
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Badge (pastille "Support 24h/24") --- */
.cta-banner__text { flex: 1 1 480px; max-width: 640px; }
.cta-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange-400);
    margin-bottom: 20px;
}
.cta-banner__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange-400);
    box-shadow: 0 0 0 4px rgba(245,150,15,0.22);
}

/* --- Titre principal (façon affiche, majuscules) --- */
.cta-banner__title {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}
.cta-banner__title span {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --- Bloc actions : gros bouton + bloc appel --- */
.cta-banner__actions { display: flex; gap: 22px; flex-wrap: wrap; align-items: flex-start; flex: 0 1 340px; }

.cta-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 19px 34px;
    border-radius: var(--radius-sm);
    background: var(--gradient-orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 16px 34px rgba(230, 115, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}
.cta-banner__cta:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(230, 115, 0, 0.45); }

.cta-banner__call {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cta-banner__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--orange-400);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.cta-banner__call-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px dashed rgba(245,150,15,0.4);
    animation: cta-ring-spin 12s linear infinite;
}
@keyframes cta-ring-spin { to { transform: rotate(360deg); } }
.cta-banner__call-text { display: flex; flex-direction: column; gap: 3px; }
.cta-banner__call-text small { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.cta-banner__call-text strong { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--white); }
.cta-banner__call:hover .cta-banner__call-text strong { color: var(--orange-400); }

.cta-banner .btn--ghost {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}
.cta-banner .btn--ghost:hover {
    background: var(--white);
    color: var(--navy-800);
}

@media (max-width: 767px) {
    .cta-banner { padding: 56px 0; }
    .cta-banner__inner { flex-direction: column; text-align: center; }
    .cta-banner__badge { justify-content: center; }
    .cta-banner__text p { margin-left: auto; margin-right: auto; }
    .cta-banner__icon { font-size: 8rem; opacity: 0.5; left: -10%; }
    .cta-banner__actions { justify-content: center; width: 100%; align-items: center; }
    .cta-banner__actions .btn { flex: 1; justify-content: center; min-width: 200px; }
    .cta-banner__cta { width: 100%; }
    .cta-banner__call { flex-direction: column; text-align: center; }
}

/* =======================================================================
   19. CONTACT
   ======================================================================= */
.contact { padding: 100px 0; background: var(--white); }

.contact__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: start;
}

.contact__side { display: flex; flex-direction: column; gap: 30px; }

.contact__info-list { display: flex; flex-direction: column; gap: 20px; }
.contact__info-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 1.05rem;
}
.contact__info-list strong { display: block; font-size: 0.86rem; color: var(--navy-900); margin-bottom: 3px; }
.contact__info-list span,
.contact__info-list a { font-size: 0.92rem; color: var(--gray-500); }
.contact__info-list a:hover { color: var(--orange-600); }

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.15); }

.contact__form {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-100);
}
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact__submit { width: 100%; justify-content: center; margin-top: 6px; }
.contact__form-note {
    margin-top: 16px;
    padding: 12px 16px;
    background: #E7F7EE;
    color: #1D9A5F;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    text-align: center;
}
.contact__form-note i { margin-right: 6px; }

/* =======================================================================
   20. FOOTER
   ======================================================================= */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.65); }

.site-footer__top { padding: 76px 0 50px; }

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
}

.footer-col--brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 22px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    transition: background 0.2s ease, transform 0.2s ease;
}
.footer-socials a:hover { background: var(--orange-500); transform: translateY(-3px); }

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 34px; height: 3px;
    background: var(--gradient-orange);
    border-radius: var(--radius-pill);
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease, gap 0.2s ease;
}
.footer-links a i { color: var(--orange-500); font-size: 0.75em; }
.footer-links a:hover { color: var(--white); gap: 12px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact i { color: var(--orange-500); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--white); }

.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
}
.site-footer__bottom-inner p { margin: 0; color: rgba(255,255,255,0.5); }
.site-footer__bottom-inner strong { color: rgba(255,255,255,0.8); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--white); }

/* =======================================================================
   21. RESPONSIVE — SECTIONS DE CONTENU
   ======================================================================= */
@media (max-width: 1100px) {
    .about__grid { grid-template-columns: 1fr; gap: 48px; }
    .about__visual { max-width: 480px; margin: 0 auto; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .why-us__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card--highlight { grid-column: span 2; transform: none; }
    .pricing-card--highlight:hover { transform: translateY(-6px); }
    .tracking__grid { grid-template-columns: 1fr; gap: 44px; }
    .tracking__visual { max-width: 440px; margin: 0 auto; }
    .faq__grid { grid-template-columns: 1fr; gap: 40px; }
    .news__grid { grid-template-columns: repeat(2, 1fr); }
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
}

@media (max-width: 900px) {
    .process__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .process-step__arrow { display: none !important; }
}

@media (max-width: 767px) {
    .about,
    .services,
    .process,
    .departs,
    .pricing,
    .tracking,
    .why-us,
    .testimonials,
    .faq,
    .news,
    .contact { padding: 72px 0; }

    .section-head { margin-bottom: 38px; }

    .about__feature-cards { grid-template-columns: 1fr; }
    .services__grid { grid-template-columns: 1fr; }
    .why-us__grid { grid-template-columns: 1fr; }
    .pricing__grid { grid-template-columns: 1fr; }
    .pricing-card--highlight { grid-column: auto; }
    .process__grid { grid-template-columns: 1fr; gap: 34px; }
    .news__grid { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }

    .dep-table thead { display: none; }
    .dep-table, .dep-table tbody, .dep-table tr, .dep-table td { display: block; width: 100%; }
    .dep-row {
        padding: 18px 20px;
        border-bottom: 8px solid var(--gray-50);
    }
    .dep-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        border-bottom: none;
        text-align: right;
    }
    .dep-table tbody td::before {
        content: attr(data-label);
        font-family: var(--font-display);
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--gray-500);
        text-align: left;
    }
    .dep-col-action { justify-content: flex-end; }
    .dep-head { flex-direction: column; align-items: flex-start; }
    .dep-head__stats { width: 100%; justify-content: space-around; }
    .dep-footer { flex-direction: column; align-items: stretch; text-align: center; }

    .contact__form { padding: 26px; }
    .contact__form-row { grid-template-columns: 1fr; gap: 0; }

    .site-footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .about__badge { position: static; margin-top: 20px; display: inline-block; }
    .tracking__form { flex-direction: column; }
    .tracking__form .btn { width: 100%; justify-content: center; }
    .faq-item__question { font-size: 0.9rem; padding: 16px 18px; }
    .faq-item__answer p { padding: 0 18px 18px; }
}

/* =======================================================================
   22. ANCRES DE NAVIGATION — compense la hauteur du header sticky
   ======================================================================= */
#a-propos, #services, #departs, #tarifs, #suivi, #actualites, #contact {
    scroll-margin-top: 130px;
}

@media (max-width: 992px) {
    #a-propos, #services, #departs, #tarifs, #suivi, #actualites, #contact {
        scroll-margin-top: 100px;
    }
}

/* =======================================================================
   23. BOUTON RETOUR EN HAUT
   ======================================================================= */
.scroll-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, box-shadow 0.25s ease;
}
.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    box-shadow: 0 18px 34px rgba(230, 115, 0, 0.4);
    transform: translateY(-4px);
}

@media (max-width: 767px) {
    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

/* =======================================================================
   24. BANNIÈRE DE PAGE (réutilisable sur toutes les pages internes)
   ======================================================================= */
.page-hero {
    position: relative;
    background: var(--gradient-navy);
    overflow: hidden;
    padding: 76px 0 0;
    text-align: center;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__grid { width: 100%; height: 100%; display: block; }

.page-hero__ribbon {
    position: absolute;
    right: -14%;
    top: -40%;
    width: 55%;
    height: 220%;
    background: var(--gradient-ribbon);
    opacity: 0.16;
    transform: rotate(18deg);
    border-radius: 50%;
    filter: blur(6px);
    z-index: 0;
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 64px;
}

.page-hero .eyebrow { margin-bottom: 18px; }

.page-hero__title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 16px;
}

.page-hero__subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 26px;
}

.page-hero__breadcrumb ol {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0; padding: 0;
}
.page-hero__breadcrumb li { display: flex; align-items: center; gap: 8px; }
.page-hero__breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.page-hero__breadcrumb a:hover { color: var(--orange-400); }
.page-hero__breadcrumb span[aria-current] {
    color: var(--orange-400);
    font-size: 0.88rem;
    font-weight: 600;
}
.page-hero__sep { color: rgba(255,255,255,0.35); font-size: 0.7rem; }

.page-hero__divider {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 44px;
}

@media (max-width: 767px) {
    .page-hero { padding-top: 64px; }
    .page-hero__inner { padding-bottom: 44px; }
    .page-hero__divider { height: 28px; }
}

/* =======================================================================
   25. NOTRE HISTOIRE
   ======================================================================= */
.story { padding: 100px 0 0; background: var(--white); overflow: hidden; }

.story__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
    padding-bottom: 90px;
}

.story__visual { position: relative; }
.story__collage { position: relative; max-width: 420px; margin: 0 auto; padding: 20px 40px 40px 0; }

.story__img { display: block; width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.story__img--1 { position: relative; z-index: 1; }
.story__img--2 {
    position: absolute;
    right: -34px;
    bottom: -30px;
    width: 62%;
    z-index: 2;
    border: 5px solid var(--white);
}

.story__badge {
    position: absolute;
    left: -10px;
    top: 6px;
    z-index: 3;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-bottom: 4px solid var(--orange-500);
}
.story__badge strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy-900); line-height: 1; }
.story__badge span { font-size: 0.72rem; color: var(--gray-500); font-weight: 600; }

.story__content .eyebrow { margin-bottom: 4px; }
.story__content p { font-size: 1rem; }
.story__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; }

/* Frise chronologique */
.story__timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 46px 0 60px;
    border-top: 1px solid var(--gray-100);
}
.timeline-item { position: relative; padding-top: 26px; }
.timeline-item::before {
    content: '';
    position: absolute;
    top: 5px; left: 0; right: 0;
    height: 2px;
    background: var(--gray-100);
}
.timeline-item:first-child::before { left: 50%; }
.timeline-item:last-child::before { right: 50%; }
.timeline-item__dot {
    position: absolute;
    top: -3px; left: 50%;
    transform: translateX(-50%);
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--orange-500);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--orange-200, var(--orange-400));
}
.timeline-item__year {
    display: block;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--navy-900);
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.timeline-item h4 { text-align: center; font-size: 0.92rem; margin-bottom: 6px; }
.timeline-item p { text-align: center; font-size: 0.78rem; margin: 0; }

/* =======================================================================
   26. BANDEAU CHIFFRES CLÉS (compteurs animés)
   ======================================================================= */
.stats-band {
    position: relative;
    background: var(--gradient-navy);
    padding: 90px 0;
    overflow: hidden;
}
.stats-band__ribbon {
    position: absolute;
    left: -12%;
    top: -50%;
    width: 55%;
    height: 220%;
    background: var(--gradient-ribbon);
    opacity: 0.14;
    transform: rotate(-16deg);
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
}
.stats-band .section-head { position: relative; z-index: 1; margin-bottom: 44px; }
.stats-band__title { color: var(--white); }

.stats-band__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 30px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    transition: background 0.25s ease, transform 0.25s ease;
}
.stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }

.stat-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(245,150,15,0.14);
    color: var(--orange-400);
    font-size: 1.2rem;
}

.stat-card__value {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-card__label { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* =======================================================================
   27. VALEURS & ENGAGEMENTS
   ======================================================================= */
.values { padding: 100px 0; background: var(--gray-50); }

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.value-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.value-card__num {
    position: absolute;
    top: 20px; right: 24px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--gray-100);
    line-height: 1;
}

.value-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; margin: 0; }

/* =======================================================================
   28. NOTRE ÉQUIPE
   ======================================================================= */
.team { padding: 100px 0; background: var(--white); }

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

.team-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }

.team-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-navy);
    color: var(--orange-400);
    font-size: 1.8rem;
    box-shadow: var(--shadow-sm);
}

.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card p { font-size: 0.84rem; margin-bottom: 18px; }

.team-card__socials { display: flex; justify-content: center; gap: 10px; }
.team-card__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy-800);
    box-shadow: var(--shadow-sm);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.team-card__socials a:hover { background: var(--orange-500); color: var(--white); transform: translateY(-2px); }

/* =======================================================================
   29. RESPONSIVE — PAGE À PROPOS
   ======================================================================= */
@media (max-width: 1100px) {
    .story__grid { grid-template-columns: 1fr; gap: 50px; padding-bottom: 60px; }
    .story__visual { max-width: 420px; margin: 0 auto; }
    .stats-band__grid { grid-template-columns: repeat(3, 1fr); }
    .values__grid { grid-template-columns: repeat(2, 1fr); }
    .team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .story__timeline { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
    .timeline-item:nth-child(3)::before { right: 0; }
    .timeline-item:nth-child(4)::before { left: 0; }
}

@media (max-width: 767px) {
    .story { padding-top: 72px; }
    .stats-band, .values, .team { padding: 72px 0; }
    .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .values__grid { grid-template-columns: 1fr; }
    .team__grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .story__timeline { grid-template-columns: 1fr; gap: 28px; }
    .timeline-item::before { display: none; }
    .timeline-item__dot { display: none; }
    .story__collage { padding: 10px 26px 30px 0; }
}

@media (max-width: 480px) {
    .stats-band__grid { grid-template-columns: 1fr 1fr; }
    .stat-card { padding: 22px 10px; }
    .stat-card__value { font-size: 1.6rem; }
}

/* =======================================================================
   30. SOUS-NAVIGATION RAPIDE (page Services)
   ======================================================================= */
.svc-quicknav {
    position: sticky;
    top: var(--current-header-h, 106px);
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}
.svc-quicknav__inner {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    padding: 14px 24px;
    scrollbar-width: none;
}
.svc-quicknav__inner::-webkit-scrollbar { display: none; }

.svc-quicknav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--navy-800);
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}
.svc-quicknav a i { color: var(--orange-500); font-size: 0.85em; }
.svc-quicknav a:hover { background: var(--orange-100); color: var(--orange-600); }

/* =======================================================================
   31. BLOCS SERVICES DÉTAILLÉS (zigzag)
   ======================================================================= */
.svc-list { padding: 100px 0 40px; background: var(--white); }

.svc-row {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-100);
    scroll-margin-top: 170px;
}
.svc-row:last-child { border-bottom: none; padding-bottom: 20px; }
.svc-row--reverse { grid-template-columns: 1.15fr 0.85fr; }
.svc-row--reverse .svc-visual { order: 2; }
.svc-row--reverse .svc-content { order: 1; }

.svc-visual { position: relative; }
.svc-panel {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 480 / 420;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: visible;
}
.svc-panel__svg { width: 100%; height: 100%; display: block; border-radius: var(--radius-lg); }

.svc-panel__icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: var(--orange-400);
    font-size: 2.6rem;
}

.svc-panel__num {
    position: absolute;
    bottom: 18px;
    right: 24px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3rem;
    color: rgba(255,255,255,0.08);
    line-height: 1;
}

.svc-panel__badge {
    position: absolute;
    top: -18px;
    left: -18px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-bottom: 4px solid var(--orange-500);
}
.svc-panel__badge strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy-900); line-height: 1; }
.svc-panel__badge span { font-size: 0.72rem; color: var(--gray-500); font-weight: 600; white-space: nowrap; }

.svc-content .eyebrow { margin-bottom: 6px; }
.svc-content h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 16px; }
.svc-content p { font-size: 0.98rem; }

.svc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin: 24px 0 30px;
}
.svc-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--ink);
    line-height: 1.4;
}
.svc-features i { color: var(--orange-500); margin-top: 3px; flex-shrink: 0; }

.svc-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}
.svc-stats__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    min-width: 120px;
}
.svc-stats__value { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; color: var(--navy-900); }
.svc-stats__label { font-size: 0.74rem; color: var(--gray-500); }

.svc-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* =======================================================================
   32. RESPONSIVE — PAGE SERVICES
   ======================================================================= */
@media (max-width: 1100px) {
    .svc-row,
    .svc-row--reverse {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .svc-row--reverse .svc-visual,
    .svc-row--reverse .svc-content { order: initial; }
    .svc-visual { order: -1; }
    .svc-panel { max-width: 360px; }
}

@media (max-width: 992px) {
    .svc-quicknav { position: static; top: auto; }
}

@media (max-width: 767px) {
    .svc-list { padding: 72px 0 20px; }
    .svc-row { padding: 40px 0; gap: 34px; }
    .svc-features { grid-template-columns: 1fr; }
    .svc-panel__badge { left: 50%; transform: translateX(-50%); top: -16px; }
    .svc-quicknav__inner { padding: 12px 16px; }
    .svc-actions .btn { width: 100%; justify-content: center; }
}

/* =======================================================================
   33. PAGE CONTACT — Bandeau infos rapides
   ======================================================================= */
.contact-quick {
    position: relative;
    z-index: 3;
    margin-top: -46px;
    padding-bottom: 20px;
}
.contact-quick__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.contact-quick__card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 22px;
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--orange-500);
}
.contact-quick__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--orange-400);
    font-size: 1.15rem;
}
.contact-quick__label { display: block; font-size: 0.74rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.contact-quick__value, .contact-quick__card a {
    display: block;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.35;
}
.contact-quick__card a:hover { color: var(--orange-600); }

/* =======================================================================
   34. PAGE CONTACT — Formulaire + panneau latéral
   ======================================================================= */
.contact-main { padding: 80px 0 100px; background: var(--white); }

.contact-main__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 44px;
}
.contact-form-card h2 { margin-bottom: 26px; font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
.contact-form-card h2 span {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-form-card__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 24px;
    cursor: pointer;
}
.contact-form-card__consent input {
    margin-top: 3px;
    width: 16px; height: 16px;
    accent-color: var(--orange-500);
    flex-shrink: 0;
}
.contact-form-card__consent a { color: var(--orange-600); font-weight: 600; }

/* --- Panneau latéral --- */
.contact-side { display: flex; flex-direction: column; gap: 20px; }

.contact-side__card {
    background: var(--gradient-navy);
    border-radius: var(--radius-lg);
    padding: 38px 34px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-side__card::before {
    content: '';
    position: absolute;
    right: -20%;
    top: -30%;
    width: 70%;
    height: 160%;
    background: var(--gradient-ribbon);
    opacity: 0.14;
    transform: rotate(18deg);
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
}
.contact-side__card > * { position: relative; z-index: 1; }
.contact-side__card .eyebrow { margin-bottom: 14px; }
.contact-side__card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.contact-side__card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 26px; }

.contact-side__list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 26px; }
.contact-side__list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-side__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--orange-400);
    font-size: 0.95rem;
}
.contact-side__list strong { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-bottom: 2px; }
.contact-side__list a, .contact-side__list span { font-size: 0.92rem; color: var(--white); font-weight: 500; }
.contact-side__list a:hover { color: var(--orange-400); }

.contact-side__socials { display: flex; gap: 10px; }
.contact-side__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transition: background 0.2s ease, transform 0.2s ease;
}
.contact-side__socials a:hover { background: var(--orange-500); transform: translateY(-2px); }

.contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.contact-whatsapp:hover { border-color: #25D366; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-whatsapp__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 1.3rem;
}
.contact-whatsapp strong { display: block; font-size: 0.94rem; color: var(--navy-900); }
.contact-whatsapp small { font-size: 0.78rem; color: var(--gray-500); }
.contact-whatsapp > i { margin-left: auto; color: var(--gray-300); }

/* =======================================================================
   35. PAGE CONTACT — Carte
   ======================================================================= */
.contact-map-section { padding-bottom: 100px; background: var(--white); }
.contact-map {
    position: relative;
    z-index: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 21 / 7;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.15); }

/* =======================================================================
   36. RESPONSIVE — PAGE CONTACT
   ======================================================================= */
@media (max-width: 1100px) {
    .contact-quick__grid { grid-template-columns: repeat(2, 1fr); }
    .contact-main__grid { grid-template-columns: 1fr; }
    .contact-side { max-width: 560px; }
}

@media (max-width: 767px) {
    .contact-quick { margin-top: -30px; }
    .contact-quick__grid { grid-template-columns: 1fr; gap: 14px; }
    .contact-main { padding: 60px 0 72px; }
    .contact-form-card { padding: 28px 22px; }
    .contact-main__grid { gap: 28px; }
    .contact__form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-map-section { padding-bottom: 72px; }
    .contact-map { aspect-ratio: 4 / 3; }
}

/* =======================================================================
   37. BANNIÈRE PROMO (site-wide, dynamique)
   ======================================================================= */
.promo-banner {
    position: relative;
    background: var(--gradient-orange);
    overflow: hidden;
    padding: 14px 0;
}

.promo-banner__halo {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    pointer-events: none;
}
.promo-banner__halo--1 { width: 220px; height: 220px; left: -60px; top: -120px; }
.promo-banner__halo--2 { width: 160px; height: 160px; right: 6%; bottom: -100px; }

.promo-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy-900);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
}
.promo-banner__badge i { color: var(--orange-400); }

.promo-banner__text { flex: 1; min-width: 200px; }
.promo-banner__title { font-family: var(--font-display); font-weight: 700; font-size: 0.94rem; color: var(--white); margin: 0; }
.promo-banner__sub { font-size: 0.8rem; color: rgba(255,255,255,0.85); margin: 2px 0 0; }

.promo-banner__cd { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.promo-banner__cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(4, 27, 61, 0.35);
    border-radius: var(--radius-sm);
    line-height: 1.1;
}
.promo-banner__cd-num { font-family: var(--font-display); font-weight: 800; font-size: 0.98rem; color: var(--white); }
.promo-banner__cd-lbl { font-size: 0.56rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.03em; }
.promo-banner__cd-sep { color: rgba(255,255,255,0.6); font-weight: 700; }

.promo-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy-900);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.86rem;
    padding: 11px 20px;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}
.promo-banner__cta:hover { background: var(--navy-700); transform: translateY(-2px); }

.promo-banner__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}
.promo-banner__close:hover { background: rgba(4,27,61,0.4); transform: rotate(90deg); }

.promo-banner__validity {
    position: relative;
    z-index: 1;
    margin: 8px 0 0;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 900px) {
    .promo-banner__cd { order: 3; width: 100%; justify-content: flex-start; }
}

@media (max-width: 600px) {
    .promo-banner { padding: 12px 0; }
    .promo-banner__inner { gap: 10px; }
    .promo-banner__badge { order: 1; }
    .promo-banner__close { order: 2; margin-left: auto; }
    .promo-banner__text { order: 3; width: 100%; }
    .promo-banner__cd { order: 4; }
    .promo-banner__cta { order: 5; width: 100%; justify-content: center; }
    .promo-banner__cd-unit { width: 38px; height: 38px; }
}

/* =======================================================================
   38. PAGE DÉPARTS — Bandeau statistiques
   ======================================================================= */
.dep-stats-band {
    position: relative;
    z-index: 3;
    margin-top: -46px;
    padding-bottom: 20px;
}
.dep-stats-band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.dep-stats-band__item {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--orange-500);
}
.dep-stats-band__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--orange-400);
    font-size: 1.1rem;
}
.dep-stats-band__value {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--navy-900);
    line-height: 1;
    margin-bottom: 6px;
}
.dep-stats-band__label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.dep-stats-band__sub { display: block; font-size: 0.74rem; color: var(--gray-500); margin-top: 2px; }

/* Bouton WhatsApp générique */
.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { background: #1ebe5a; transform: translateY(-3px); }

.cta-banner__actions--triple { align-items: center; flex: 1 1 auto; }

@media (max-width: 1100px) {
    .dep-stats-band__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .dep-stats-band { margin-top: -30px; }
    .dep-stats-band__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .dep-stats-band__item { padding: 20px 12px; }
    .dep-stats-band__value { font-size: 1.4rem; }
    .cta-banner__actions--triple { flex-direction: column; width: 100%; }
    .cta-banner__actions--triple .btn { width: 100%; justify-content: center; }
}


/* =======================================================================
   39. SUIVI — Barre de progression scroll
   ======================================================================= */
.trk-scroll-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-orange);
    z-index: 1100;
    transition: width 0.1s ease-out;
}

/* =======================================================================
   40. SUIVI — Hero personnalisé (recherche intégrée)
   ======================================================================= */
.trk-hero {
    position: relative;
    background: var(--gradient-navy);
    overflow: hidden;
    padding: 76px 0 90px;
    text-align: center;
}
.trk-hero__bg { position: absolute; inset: 0; z-index: 0; }
.trk-hero__grid { width: 100%; height: 100%; display: block; }
.trk-hero__ribbon {
    position: absolute;
    right: -14%; top: -40%;
    width: 55%; height: 220%;
    background: var(--gradient-ribbon);
    opacity: 0.16;
    transform: rotate(18deg);
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
}
.trk-hero__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }

.trk-hero__bread {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 0.86rem;
}
.trk-hero__bread a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.trk-hero__bread a:hover { color: var(--orange-400); }
.trk-hero__bread i { font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.trk-hero__bread span { color: var(--orange-400); font-weight: 600; }

.trk-hero .eyebrow { margin-bottom: 18px; }
.trk-hero__title { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin: 0 0 14px; }
.trk-hero__title span { background: var(--gradient-orange); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trk-hero__sub { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 540px; margin: 0 auto 34px; }

.trk-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px 34px;
    text-align: left;
    border-bottom: 4px solid var(--orange-500);
}
.trk-box__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--navy-800);
    margin-bottom: 12px;
}
.trk-box__label i { color: var(--orange-500); }
.trk-box__row { display: flex; gap: 12px; flex-wrap: wrap; }
.trk-box__input {
    flex: 1;
    min-width: 220px;
    padding: 15px 20px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--gray-100);
    background: var(--gray-50);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.03em;
    color: var(--ink);
    transition: border-color 0.2s ease;
}
.trk-box__input:focus { outline: none; border-color: var(--orange-400); background: var(--white); }
.trk-box__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: var(--radius-pill);
    background: var(--gradient-orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.94rem;
    box-shadow: 0 12px 26px rgba(230,115,0,0.3);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.trk-box__btn:hover { transform: translateY(-2px); }
.trk-box__btn.loading { opacity: 0.75; pointer-events: none; }
.trk-box__hint { margin: 16px 0 0; font-size: 0.82rem; color: var(--gray-500); }
.trk-box__hint a { color: var(--orange-600); font-weight: 600; }

/* =======================================================================
   41. SUIVI — Comment ça marche
   ======================================================================= */
.trk-how { padding: 90px 0; background: var(--gray-50); }
.trk-how__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.trk-how-step {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
}
.trk-how-step__num {
    position: absolute;
    top: 18px; right: 22px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--gray-100);
}
.trk-how-step h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 10px;
    padding-right: 30px;
}
.trk-how-step h4 i { color: var(--orange-500); }
.trk-how-step p { font-size: 0.86rem; margin: 0; }

/* =======================================================================
   42. SUIVI — Zone de résultat (structure générée en JS)
   ======================================================================= */
.trk-result-section { padding: 70px 0 100px; background: var(--white); }
.trk-result-section__inner {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 36px;
    align-items: start;
}

.trk-loading { text-align: center; padding: 60px 20px; color: var(--gray-500); }
.trk-spinner {
    display: inline-block;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: track-spin 0.8s linear infinite;
}
.trk-spinner--lg {
    width: 40px; height: 40px;
    border: 3px solid var(--gray-100);
    border-top-color: var(--orange-500);
    margin-bottom: 16px;
}
@keyframes track-spin { to { transform: rotate(360deg); } }

/* --- Carte résultat --- */
.result-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 30px;
    background: var(--gradient-navy);
    flex-wrap: wrap;
}
.result-num { font-size: 0.76rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.result-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--white); }

.result-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
}
.result-status.status-transit { background: rgba(245,150,15,0.18); color: var(--orange-400); }
.result-status.status-delivered { background: rgba(30,158,95,0.18); color: #4ADE80; }
.result-status.status-error { background: rgba(216,69,69,0.18); color: #F87171; }

.result-body { padding: 30px; }

/* --- Expéditeur / Destinataire --- */
.sender-receiver-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 26px; }
.sr-card { border: 1px solid var(--gray-100); border-radius: var(--radius-md); overflow: hidden; }
.sr-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; }
.sr-header--dark { background: var(--navy-900); color: var(--white); }
.sr-header--accent { background: var(--orange-500); color: var(--white); }
.sr-header__country { font-size: 0.74rem; font-weight: 500; opacity: 0.8; }
.sr-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; background: var(--gray-50); }
.sr-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.sr-label { font-size: 0.76rem; color: var(--gray-500); flex-shrink: 0; }
.sr-value { font-size: 0.84rem; color: var(--navy-900); font-weight: 600; text-align: right; }

/* --- Infos compactes --- */
.result-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}
.result-info-grid > div { background: var(--gray-50); border-radius: var(--radius-md); padding: 14px 16px; text-align: center; }
.info-block__label { font-size: 0.72rem; color: var(--gray-500); margin-bottom: 4px; }
.info-block__value { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--navy-900); }

/* --- Stepper progression --- */
.dp-wrap { margin-bottom: 34px; }
.dp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dp-label { font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: var(--navy-900); }
.dp-pct { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--orange-600); }
.dp-stepper-track { position: relative; height: 6px; background: var(--gray-100); border-radius: var(--radius-pill); overflow: hidden; margin-bottom: 20px; }
.dp-stepper-fill { position: absolute; inset: 0; width: 0; background: var(--gradient-orange); border-radius: var(--radius-pill); transition: width 0.6s ease; }
.dp-steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.dp-step { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.dp-step__dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--gray-50);
    border: 2px solid var(--gray-100);
    color: var(--gray-300);
    font-size: 0.9rem;
}
.dp-step__label { font-size: 0.72rem; color: var(--gray-500); font-weight: 500; }
.dp-step.done .dp-step__dot, .dp-step.current .dp-step__dot { background: var(--orange-500); border-color: var(--orange-500); color: var(--white); }
.dp-step.delivered .dp-step__dot { background: #1D9A5F; border-color: #1D9A5F; color: var(--white); }
.dp-step.done .dp-step__label, .dp-step.current .dp-step__label, .dp-step.delivered .dp-step__label { color: var(--navy-900); font-weight: 700; }

/* --- Timeline événements --- */
.tl-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy-900); margin-bottom: 20px; }
.tl-title i { color: var(--orange-500); }
.tl-steps { display: flex; flex-direction: column; }
.tl-step { display: flex; gap: 16px; }
.tl-step__left { display: flex; flex-direction: column; align-items: center; }
.tl-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gray-50);
    border: 2px solid var(--gray-100);
    color: var(--gray-300);
    font-size: 0.86rem;
    flex-shrink: 0;
}
.tl-dot--done, .tl-dot--delivered { background: var(--orange-500); border-color: var(--orange-500); color: var(--white); }
.tl-dot--delivered { background: #1D9A5F; border-color: #1D9A5F; }
.tl-dot--active { background: var(--white); border-color: var(--orange-400); color: var(--orange-500); animation: track-pulse 1.6s ease-in-out infinite; }
.tl-dot--pending { background: var(--gray-50); border-color: var(--gray-100); color: var(--gray-300); }
@keyframes track-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(245,150,15,0.35); } 50% { box-shadow: 0 0 0 6px rgba(245,150,15,0); } }
.tl-line { width: 2px; flex: 1; min-height: 26px; background: var(--gray-100); }
.tl-line--done { background: var(--orange-400); }
.tl-content { flex: 1; padding-bottom: 26px; }
.tl-date { font-size: 0.76rem; color: var(--gray-500); margin-bottom: 3px; }
.tl-title-step { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--gray-400); margin-bottom: 4px; }
.tl-title-step--done, .tl-title-step--active, .tl-title-step--delivered { color: var(--navy-900); }
.tl-desc { font-size: 0.84rem; color: var(--gray-500); margin-bottom: 6px; }
.tl-loc { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--orange-600); font-weight: 600; }

/* --- Non trouvé --- */
.trk-empty { text-align: center; padding: 50px 20px; }
.trk-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.trk-empty h4 { margin-bottom: 10px; }
.trk-empty p { font-size: 0.92rem; margin-bottom: 22px; max-width: 380px; margin-left: auto; margin-right: auto; }

/* Alias : le JS injecte class="btn btn-primary" (tiret simple) */
.btn.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(230, 115, 0, 0.35);
}
.btn.btn-primary:hover { transform: translateY(-3px); }

/* =======================================================================
   43. SUIVI — Colonne latérale (FAQ + Aide)
   ======================================================================= */
.trk-aside { display: flex; flex-direction: column; gap: 20px; }

.trk-aside__faq {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
}
.trk-aside__faq h3 { display: flex; align-items: center; gap: 10px; font-size: 1rem; margin-bottom: 18px; }
.trk-aside__faq h3 i { color: var(--orange-500); }
.trk-aside__faq-item { padding: 14px 0; border-top: 1px solid var(--gray-100); }
.trk-aside__faq-item:first-of-type { border-top: none; padding-top: 0; }
.trk-aside__faq-item h5 { font-size: 0.88rem; color: var(--navy-900); margin-bottom: 6px; }
.trk-aside__faq-item p { font-size: 0.82rem; margin: 0; }
.trk-aside__faq-item a { color: var(--orange-600); font-weight: 600; }

.trk-aside__help {
    background: var(--gradient-navy);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
}
.trk-aside__help::before {
    content: '';
    position: absolute;
    right: -20%; top: -30%;
    width: 70%; height: 160%;
    background: var(--gradient-ribbon);
    opacity: 0.14;
    transform: rotate(18deg);
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
}
.trk-aside__help > * { position: relative; z-index: 1; }
.trk-aside__help h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.trk-aside__help p { color: rgba(255,255,255,0.7); font-size: 0.86rem; margin-bottom: 20px; }

.trk-help-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    margin-bottom: 10px;
    transition: background 0.2s ease;
}
.trk-help-link:hover { background: rgba(255,255,255,0.12); }
.trk-help-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--orange-400);
    font-size: 1rem;
    flex-shrink: 0;
}
.trk-help-link__icon--wa { background: #25D366; color: var(--white); }
.trk-help-link__label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.trk-help-link__value { display: block; font-size: 0.9rem; color: var(--white); font-weight: 600; }

.trk-help-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 14px;
    padding: 13px 20px;
    border-radius: var(--radius-pill);
    background: var(--gradient-orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}
.trk-help-cta:hover { transform: translateY(-2px); }

/* =======================================================================
   44. RESPONSIVE — PAGE SUIVI
   ======================================================================= */
@media (max-width: 1100px) {
    .trk-result-section__inner { grid-template-columns: 1fr; }
    .trk-aside { max-width: 600px; }
}

@media (max-width: 900px) {
    .trk-how__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .trk-hero { padding: 60px 0 70px; }
    .trk-box { padding: 24px 20px; }
    .trk-box__row { flex-direction: column; }
    .trk-box__btn { width: 100%; justify-content: center; }

    .trk-how { padding: 60px 0; }
    .trk-how__grid { grid-template-columns: 1fr; }

    .trk-result-section { padding: 50px 0 72px; }
    .result-header { padding: 22px 20px; }
    .result-body { padding: 22px 18px; }
    .sender-receiver-grid { grid-template-columns: 1fr; }
    .result-info-grid { grid-template-columns: 1fr 1fr; }
    .dp-steps-row { gap: 4px; }
    .dp-step__label { font-size: 0.62rem; }
    .dp-step__dot { width: 32px; height: 32px; font-size: 0.76rem; }

    .trk-aside__faq, .trk-aside__help { padding: 22px 20px; }
}

@media (max-width: 420px) {
    .result-info-grid { grid-template-columns: 1fr; }
}

/* =======================================================================
   45. TARIFS — Barre de progression + section générale
   ======================================================================= */
.trf-scroll-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-orange);
    z-index: 1100;
    transition: width 0.1s ease-out;
}

.trf-section { padding: 70px 0 100px; background: var(--white); }

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover { background: var(--white); color: var(--navy-800); border-color: var(--white); }

/* =======================================================================
   46. TARIFS — Onglets + méta + note
   ======================================================================= */
.trf-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.trf-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-100);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy-800);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.trf-tab i { color: var(--orange-500); }
.trf-tab:hover { border-color: var(--orange-400); transform: translateY(-2px); }
.trf-tab--active {
    background: var(--gradient-navy);
    border-color: var(--navy-900);
    color: var(--white);
}
.trf-tab--active i { color: var(--orange-400); }
.trf-tab__count { opacity: 0.7; font-weight: 500; }

.trf-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.trf-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    background: var(--gray-50);
    color: var(--gray-500);
    font-size: 0.82rem;
    font-weight: 600;
}
.trf-meta-badge i { color: var(--gray-300); }
.trf-meta-badge--orange { background: var(--orange-100); color: var(--orange-600); }
.trf-meta-badge--orange i { color: var(--orange-500); }

.trf-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #FFF8EC;
    border: 1px solid #FBE4BE;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 36px;
}
.trf-note i { color: var(--orange-600); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.trf-note p { margin: 0; font-size: 0.86rem; color: #7A5C22; line-height: 1.6; }
.trf-note strong { color: #5C4210; }

/* =======================================================================
   47. TARIFS — Layout sidebar + panneaux
   ======================================================================= */
.trf-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 34px;
    align-items: start;
}

.trf-sidebar {
    position: sticky;
    top: 150px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
}
.trf-sidebar__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--navy-900);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.trf-sidebar__title i { color: var(--orange-500); }
.trf-sidebar__nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.trf-sidebar__nav a {
    display: block;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    color: var(--gray-500);
    transition: background 0.2s ease, color 0.2s ease;
}
.trf-sidebar__nav a:hover { background: var(--white); color: var(--navy-900); }
.trf-sidebar__nav a.is-active { background: var(--white); color: var(--orange-600); font-weight: 700; box-shadow: var(--shadow-sm); }
.trf-sidebar__empty { padding: 8px 12px; font-size: 0.82rem; color: var(--gray-500); }

.trf-panel { display: none; }
.trf-panel--active { display: block; }

.trf-cat {
    margin-bottom: 30px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-margin-top: 150px;
}
.trf-cat__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}
.trf-cat__icon { font-size: 1.2rem; }
.trf-cat__title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy-900); flex: 1; }
.trf-cat__count { font-size: 0.76rem; color: var(--gray-500); background: var(--white); padding: 4px 10px; border-radius: var(--radius-pill); }

.trf-table { width: 100%; border-collapse: collapse; }
.trf-table thead th {
    text-align: left;
    padding: 12px 22px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-100);
}
.trf-table thead th:last-child { text-align: right; }
.trf-table tbody td {
    padding: 14px 22px;
    font-size: 0.92rem;
    color: var(--ink);
    border-bottom: 1px solid var(--gray-100);
}
.trf-table tbody tr:last-child td { border-bottom: none; }
.trf-table tbody tr:hover { background: var(--gray-50); }
.trf-table tbody td:last-child { text-align: right; }

.trf-price-wrap { display: inline-flex; align-items: baseline; gap: 6px; }
.trf-price { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--navy-900); }
.trf-unit { font-size: 0.76rem; color: var(--gray-500); }

.trf-empty { text-align: center; padding: 60px 20px; }
.trf-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.trf-empty h4 { margin-bottom: 10px; }
.trf-empty p { font-size: 0.9rem; margin-bottom: 22px; }

/* =======================================================================
   48. TARIFS — CTA finale
   ======================================================================= */
.trf-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    background: var(--gradient-navy);
    border-radius: var(--radius-lg);
    padding: 40px 46px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}
.trf-cta::before {
    content: '';
    position: absolute;
    right: -10%; top: -60%;
    width: 55%; height: 220%;
    background: var(--gradient-ribbon);
    opacity: 0.16;
    transform: rotate(16deg);
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
}
.trf-cta__text { position: relative; z-index: 1; }
.trf-cta__text h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; line-height: 1.4; }
.trf-cta__text h3 em { font-style: normal; color: var(--orange-400); }
.trf-cta__text p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.92rem; }
.trf-cta__actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }

/* =======================================================================
   49. RESPONSIVE — PAGE TARIFS
   ======================================================================= */
@media (max-width: 992px) {
    .trf-layout { grid-template-columns: 1fr; }
    .trf-sidebar { position: static; display: none; }
}

@media (max-width: 767px) {
    .trf-section { padding: 50px 0 72px; }
    .trf-tabs { gap: 8px; }
    .trf-tab { padding: 11px 18px; font-size: 0.84rem; flex: 1; justify-content: center; }
    .trf-cat__head { padding: 14px 16px; flex-wrap: wrap; }
    .trf-table thead th, .trf-table tbody td { padding: 12px 16px; }
    .trf-cta { padding: 30px 24px; flex-direction: column; text-align: center; }
    .trf-cta__actions { width: 100%; justify-content: center; }
    .trf-cta__actions .btn { flex: 1; min-width: 140px; justify-content: center; }
}

@media (max-width: 480px) {
    .trf-table thead th:first-child, .trf-table tbody td:first-child { font-size: 0.86rem; }
}

/* =======================================================================
   49b. ACCUEIL — Aperçu actualités (section-news.php)
   ======================================================================= */
.home-news { padding: 100px 0; background: var(--gray-50); }
.home-news__more { text-align: center; margin-top: 40px; }

/* =======================================================================
   50. ACTUALITÉS — Grille, pagination
   ======================================================================= */
.news-scroll-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-orange);
    z-index: 1100;
    transition: width 0.1s ease-out;
}

.news-section { padding: 70px 0 100px; background: var(--white); }

.news-bar { margin-bottom: 30px; }
.news-bar__count { font-size: 0.92rem; color: var(--gray-500); }
.news-bar__count strong { color: var(--navy-900); font-family: var(--font-display); }
.news-bar__sep { margin: 0 8px; color: var(--gray-300); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.news-card--featured { grid-column: span 3; flex-direction: row; }
.news-card--featured .news-card__img-wrap { flex: 0 0 46%; }
.news-card--featured .news-card__body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.news-card--featured .news-card__title { font-size: 1.35rem; }

.news-card__img-wrap { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.news-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card__img-wrap img { transform: scale(1.06); }
.news-card__badge {
    position: absolute;
    left: 14px; top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(4,27,61,0.75);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
}
.news-card__badge i { color: var(--orange-400); }

.news-card__body { padding: 22px 24px 10px; flex: 1; }
.news-card__date { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--gray-500); margin-bottom: 10px; }
.news-card__title { font-size: 1.05rem; line-height: 1.4; margin-bottom: 10px; }
.news-card__title a { color: var(--navy-900); transition: color 0.2s ease; }
.news-card__title a:hover { color: var(--orange-600); }
.news-card__excerpt { font-size: 0.88rem; margin: 0; }

.news-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 24px 22px;
}
.news-card__readmore { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: var(--orange-600); transition: gap 0.2s ease; }
.news-card__readmore:hover { gap: 12px; }
.news-card__featured-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; font-weight: 700; color: var(--orange-600); }

.news-empty { grid-column: 1 / -1; text-align: center; padding: 70px 20px; }
.news-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px; height: 68px;
    border-radius: 50%;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.news-empty h3 { margin-bottom: 10px; }
.news-empty p { font-size: 0.92rem; margin-bottom: 24px; }

/* --- Pagination --- */
.news-pagination { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.news-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy-800);
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.news-pagination__btn:hover { border-color: var(--orange-400); color: var(--orange-600); }
.news-pagination__btn.active { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.news-pagination__btn.disabled { opacity: 0.4; pointer-events: none; }
.news-pagination__sep { color: var(--gray-300); padding: 0 4px; }
.news-pagination__info { margin-left: auto; font-size: 0.82rem; color: var(--gray-500); }

/* =======================================================================
   51. DÉTAIL ARTICLE — Structure générale
   ======================================================================= */
.nd-scroll-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-orange);
    z-index: 1100;
    transition: width 0.1s ease-out;
}

.nd-section { padding: 70px 0; background: var(--white); }
.nd-inner {
    display: grid;
    grid-template-columns: 1.7fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.nd-cover { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 26px; box-shadow: var(--shadow-sm); }

.nd-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.nd-meta-item { display: inline-flex; align-items: center; gap: 7px; font-size: 0.84rem; color: var(--gray-500); }
.nd-meta-item i { color: var(--orange-500); }
.nd-meta-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-300); }

.nd-title { font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1.3; margin-bottom: 30px; }

/* --- Contenu riche --- */
.nd-content { font-size: 1rem; color: var(--ink); line-height: 1.85; }
.nd-content p { margin: 0 0 20px; }
.nd-content h2 { font-size: 1.4rem; margin: 36px 0 16px; color: var(--navy-900); }
.nd-content h3 { font-size: 1.15rem; margin: 28px 0 14px; color: var(--navy-900); }
.nd-content ul, .nd-content ol { margin: 0 0 20px; padding-left: 22px; }
.nd-content li { margin-bottom: 8px; }
.nd-content a { color: var(--orange-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.nd-content img { max-width: 100%; border-radius: var(--radius-md); margin: 20px 0; }
.nd-content blockquote {
    margin: 26px 0;
    padding: 20px 26px;
    background: var(--gray-50);
    border-left: 4px solid var(--orange-500);
    border-radius: var(--radius-sm);
    font-style: italic;
    color: var(--navy-800);
}
.nd-content blockquote p { margin: 0; }
.nd-content strong { color: var(--navy-900); }

/* --- Partage --- */
.nd-share {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid var(--gray-100);
}
.nd-share__label { font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: var(--navy-900); margin-right: 4px; }
.nd-share__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gray-50);
    color: var(--navy-800);
    font-size: 0.95rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.nd-share__btn:hover { transform: translateY(-3px); }
.nd-share__btn--fb:hover { background: #1877F2; color: var(--white); }
.nd-share__btn--tw:hover { background: #000; color: var(--white); }
.nd-share__btn--wa:hover { background: #25D366; color: var(--white); }
.nd-share__btn--cp:hover { background: var(--orange-500); color: var(--white); }
#nd-copy-msg { display: none; font-size: 0.8rem; color: #1D9A5F; font-weight: 600; }

/* --- Navigation retour --- */
.nd-nav { margin-top: 30px; }
.nd-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-pill);
    transition: background 0.2s ease, transform 0.2s ease;
}
.nd-nav__btn:hover { background: var(--orange-100); transform: translateX(-4px); }
.nd-nav__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--orange-400);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.nd-nav__btn small { display: block; font-size: 0.72rem; color: var(--gray-500); }
.nd-nav__btn strong { display: block; font-size: 0.9rem; color: var(--navy-900); }

/* --- Sidebar --- */
.nd-sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 150px; }

.nd-widget { background: var(--gray-50); border-radius: var(--radius-lg); overflow: hidden; }
.nd-widget__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--navy-900);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
}
.nd-widget__head i { color: var(--orange-400); }
.nd-widget__body { padding: 10px; display: flex; flex-direction: column; gap: 4px; }

.nd-recent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}
.nd-recent-item:hover { background: var(--white); }
.nd-recent-item img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.nd-recent-item__title { font-size: 0.84rem; font-weight: 600; color: var(--navy-900); line-height: 1.4; margin-bottom: 4px; }
.nd-recent-item__date { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: var(--gray-500); }

.nd-widget-cta {
    background: var(--gradient-navy);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
}
.nd-widget-cta::before {
    content: '';
    position: absolute;
    right: -20%; top: -30%;
    width: 70%; height: 160%;
    background: var(--gradient-ribbon);
    opacity: 0.14;
    transform: rotate(18deg);
    border-radius: 50%;
    filter: blur(6px);
}
.nd-widget-cta > * { position: relative; z-index: 1; }
.nd-widget-cta h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.nd-widget-cta h3 span { color: var(--orange-400); }
.nd-widget-cta p { color: rgba(255,255,255,0.7); font-size: 0.86rem; margin-bottom: 20px; }
.nd-widget-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    border-radius: var(--radius-pill);
    background: var(--gradient-orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 14px;
    transition: transform 0.2s ease;
}
.nd-widget-cta__btn:hover { transform: translateY(-2px); }
.nd-widget-cta__link { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.86rem; color: rgba(255,255,255,0.8); }
.nd-widget-cta__link:hover { color: var(--white); }

/* =======================================================================
   52. DÉTAIL ARTICLE — Galerie photos + lightbox
   ======================================================================= */
.gal-section { padding: 20px 0 100px; background: var(--white); }
.gal-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; padding-top: 30px; border-top: 1px solid var(--gray-100); }
.gal-header h2 { margin: 0; font-size: 1.3rem; }
.gal-count { font-size: 0.84rem; color: var(--gray-500); }

.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gal-item { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; background: var(--gray-50); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(4,27,61,0.75) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 10px 12px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-num { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; }
.gal-zoom { color: var(--white); font-size: 0.9rem; }
.gal-broken { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; height: 100%; color: var(--gray-300); font-size: 0.76rem; }

.gal-loader, .gal-empty { grid-column: 1 / -1; text-align: center; padding: 50px 20px; color: var(--gray-500); }
.gal-spinner {
    display: inline-block;
    width: 26px; height: 26px;
    border: 3px solid var(--gray-100);
    border-top-color: var(--orange-500);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    animation: track-spin 0.8s linear infinite;
}
.gal-empty i { font-size: 1.8rem; color: var(--gray-300); margin-bottom: 10px; display: block; }

/* --- Lightbox --- */
.gp-lb {
    position: fixed; inset: 0;
    background: rgba(4,27,61,0.94);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.gp-lb.open { opacity: 1; visibility: visible; }
.gp-lb-inner { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; }
.gp-lb-imgbox { max-width: 900px; max-height: 70vh; }
.gp-lb-imgbox img { max-width: 100%; max-height: 70vh; border-radius: var(--radius-md); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.gp-lb-close {
    position: absolute; top: 20px; right: 20px;
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 1.1rem;
    transition: background 0.2s ease;
}
.gp-lb-close:hover { background: var(--orange-500); }
.gp-lb-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.1rem;
    transition: background 0.2s ease;
}
.gp-lb-arrow:hover { background: var(--orange-500); }
.gp-lb-prev { left: 20px; }
.gp-lb-next { right: 20px; }
.gp-lb-footer { margin-top: 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gp-lb-counter { color: rgba(255,255,255,0.7); font-size: 0.86rem; font-family: var(--font-display); }
.gp-lb-dots { display: flex; gap: 6px; }
.gp-lb-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.2s ease; }
.gp-lb-dot.on { background: var(--orange-500); }

/* =======================================================================
   53. RESPONSIVE — ACTUALITÉS & DÉTAIL ARTICLE
   ======================================================================= */
@media (max-width: 1100px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .news-card--featured { grid-column: span 2; }
    .nd-inner { grid-template-columns: 1fr; }
    .nd-sidebar { position: static; }
    .gal-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .news-section { padding: 50px 0 72px; }
    .news-grid { grid-template-columns: 1fr; gap: 22px; }
    .news-card--featured { grid-column: auto; flex-direction: column; }
    .news-card--featured .news-card__img-wrap { flex: none; }
    .news-pagination { justify-content: center; }
    .news-pagination__info { width: 100%; text-align: center; margin: 10px 0 0; }

    .nd-section { padding: 50px 0; }
    .nd-cover { aspect-ratio: 16/11; }
    .nd-share { gap: 8px; }
    .gal-section { padding: 10px 0 72px; }
    .gal-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gp-lb-arrow { width: 40px; height: 40px; }
    .gp-lb-prev { left: 8px; }
    .gp-lb-next { right: 8px; }
}

/* =======================================================================
   54. ÉTATS VIDES — Départs (accueil + page dédiée) & Actualités (accueil)
   ======================================================================= */
.dep-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: var(--white);
    border: 1.5px dashed var(--gray-100);
    border-radius: var(--radius-lg);
}
.dep-empty-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px; height: 68px;
    border-radius: 50%;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.dep-empty-state h3 { margin-bottom: 10px; }
.dep-empty-state p { font-size: 0.92rem; max-width: 440px; margin: 0 auto 24px; }

.home-news__empty {
    text-align: center;
    padding: 60px 30px;
    background: var(--white);
    border: 1.5px dashed var(--gray-100);
    border-radius: var(--radius-lg);
}
.home-news__empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px; height: 68px;
    border-radius: 50%;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.home-news__empty h3 { margin-bottom: 8px; }
.home-news__empty p { font-size: 0.92rem; margin: 0; }

/* =======================================================================
   55. MENTIONS LÉGALES — Intro + sommaire
   ======================================================================= */
.legal-intro {
    position: relative;
    z-index: 3;
    margin-top: -50px;
    padding-bottom: 60px;
}

.legal-intro__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 34px 40px;
    border-bottom: 4px solid var(--orange-500);
    margin-bottom: 28px;
}
.legal-intro__card p { margin: 0 0 14px; font-size: 0.96rem; }
.legal-intro__card p:last-child { margin-bottom: 0; }
.legal-intro__updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem !important;
    color: var(--gray-500) !important;
}
.legal-intro__updated i { color: var(--orange-500); }

.legal-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.legal-toc a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-100);
    font-family: var(--font-display);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--navy-800);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.legal-toc a span { color: var(--orange-500); font-weight: 800; }
.legal-toc a:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.legal-toc a:hover span { color: var(--orange-400); }

/* =======================================================================
   56. MENTIONS LÉGALES — Contenu
   ======================================================================= */
.legal-content { padding: 20px 0 40px; background: var(--white); }
.legal-content__inner { max-width: 880px; margin: 0 auto; }

.legal-section {
    padding: 44px 0;
    border-bottom: 1px solid var(--gray-100);
    scroll-margin-top: 150px;
}
.legal-section:last-child { border-bottom: none; padding-bottom: 0; }
.legal-section:first-child { padding-top: 0; }

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.legal-section h2 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--orange-400);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.86rem;
    flex-shrink: 0;
}
.legal-section h3 { font-size: 1.02rem; margin: 26px 0 12px; color: var(--navy-900); }
.legal-section p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--orange-600); font-weight: 600; }
.legal-section em { font-style: italic; }

.legal-list { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.legal-list li { font-size: 0.95rem; line-height: 1.7; color: var(--ink); }

.legal-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 4px;
}
.legal-table tr { border-bottom: 1px solid var(--white); }
.legal-table tr:last-child { border-bottom: none; }
.legal-table th, .legal-table td {
    padding: 14px 20px;
    font-size: 0.9rem;
    text-align: left;
    vertical-align: top;
}
.legal-table th {
    width: 240px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy-900);
}
.legal-table td { color: var(--gray-500); }
.legal-table td a { color: var(--orange-600); }

.legal-cookies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 20px 0;
}
.legal-cookie-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--gray-100);
}
.legal-cookie-card__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}
.legal-cookie-card__tag--required { background: #E7F7EE; color: #1D9A5F; }
.legal-cookie-card__tag--optional { background: var(--orange-100); color: var(--orange-600); }
.legal-cookie-card h4 { font-size: 0.98rem; margin-bottom: 8px; }
.legal-cookie-card p { font-size: 0.86rem; margin: 0; }

.legal-contact-recap { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none; }
.legal-contact-recap li { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; color: var(--ink); }
.legal-contact-recap i { color: var(--orange-500); width: 18px; text-align: center; }

/* =======================================================================
   57. RESPONSIVE — MENTIONS LÉGALES
   ======================================================================= */
@media (max-width: 767px) {
    .legal-intro { margin-top: -34px; padding-bottom: 40px; }
    .legal-intro__card { padding: 24px 22px; }
    .legal-content { padding: 10px 0 20px; }
    .legal-section { padding: 34px 0; }
    .legal-section h2 { font-size: 1.15rem; }
    .legal-table th { width: 130px; }
    .legal-table th, .legal-table td { padding: 12px 14px; font-size: 0.84rem; }
    .legal-cookies { grid-template-columns: 1fr; }
}

/* =======================================================================
   58. POLITIQUE DE CONFIDENTIALITÉ — Composants additionnels
   ======================================================================= */
.legal-section__links { margin-top: 24px !important; }
.legal-section__links a { display: inline-flex; align-items: center; gap: 8px; }

/* --- Finalités (grille de cartes) --- */
.legal-purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}
.legal-purpose-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 20px 22px;
}
.legal-purpose-card__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}
.legal-purpose-card__tag--required { background: #E7F7EE; color: #1D9A5F; }
.legal-purpose-card__tag--optional { background: var(--gray-100); color: var(--gray-500); }
.legal-purpose-card__tag--consent { background: var(--orange-100); color: var(--orange-600); }
.legal-purpose-card h4 { font-size: 0.96rem; margin-bottom: 8px; }
.legal-purpose-card p { font-size: 0.86rem; margin: 0; }

/* --- Callout (encadré mise en avant) --- */
.legal-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--navy-900);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-top: 18px;
}
.legal-callout i { color: var(--orange-400); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.legal-callout p { margin: 0 !important; color: rgba(255,255,255,0.9) !important; font-size: 0.9rem !important; }

/* --- Droits (grille d'items avec icône) --- */
.legal-rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    margin: 22px 0;
}
.legal-right-item { display: flex; gap: 14px; align-items: flex-start; }
.legal-right-item__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 1.05rem;
}
.legal-right-item h4 { font-size: 0.94rem; margin-bottom: 4px; }
.legal-right-item p { font-size: 0.84rem; margin: 0; }

/* --- Sécurité (grille de 3) --- */
.legal-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}
.legal-security-item {
    text-align: center;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 24px 20px;
}
.legal-security-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--orange-400);
    font-size: 1.1rem;
}
.legal-security-item h4 { font-size: 0.92rem; margin-bottom: 8px; }
.legal-security-item p { font-size: 0.84rem; margin: 0; }

/* --- Tableau cookies détaillé --- */
.legal-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.legal-cookie-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.legal-cookie-table thead th {
    text-align: left;
    padding: 13px 18px;
    background: var(--navy-900);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.legal-cookie-table tbody td {
    padding: 13px 18px;
    font-size: 0.86rem;
    color: var(--ink);
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}
.legal-cookie-table tbody tr:last-child td { border-bottom: none; }
.legal-cookie-table code {
    background: var(--gray-50);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--orange-600);
}
.legal-cookie-table__type {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: var(--gray-100);
    color: var(--gray-500);
}
.legal-cookie-table__yes { color: #1D9A5F; }
.legal-cookie-table__no { color: var(--gray-300); }

/* =======================================================================
   59. RESPONSIVE — POLITIQUE DE CONFIDENTIALITÉ
   ======================================================================= */
@media (max-width: 767px) {
    .legal-purpose-grid { grid-template-columns: 1fr; }
    .legal-rights-grid { grid-template-columns: 1fr; }
    .legal-security-grid { grid-template-columns: 1fr; }
}

/* =======================================================================
   60. ACCUEIL — Raccourci de suivi rapide (flotte sur le bas du hero)
   ======================================================================= */
.quick-track {
    position: relative;
    z-index: 5;
    background: var(--gray-50);
    padding: 34px 0;
}
.quick-track__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 26px 36px;
    border-bottom: 4px solid var(--orange-500);
}
.quick-track__text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 320px;
}
.quick-track__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--orange-400);
    font-size: 1.2rem;
}
.quick-track__text strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--navy-900); margin-bottom: 3px; }
.quick-track__text span { font-size: 0.84rem; color: var(--gray-500); }

.quick-track__field {
    display: flex;
    gap: 10px;
    flex: 1 1 360px;
    max-width: 460px;
}
.quick-track__field input {
    flex: 1;
    min-width: 140px;
    padding: 13px 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--gray-100);
    background: var(--gray-50);
    font-family: var(--font-display);
    font-size: 0.94rem;
    letter-spacing: 0.02em;
    color: var(--ink);
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}
.quick-track__field input:focus { outline: none; border-color: var(--orange-400); background: var(--white); }
.quick-track__field button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    background: var(--gradient-orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(230,115,0,0.3);
    transition: transform 0.2s ease;
}
.quick-track__field button:hover { transform: translateY(-2px); }

/* =======================================================================
   61. RESPONSIVE — Raccourci de suivi rapide
   ======================================================================= */
@media (max-width: 767px) {
    .quick-track { padding: 26px 0; }
    .quick-track__card { flex-direction: column; align-items: stretch; padding: 22px 22px; text-align: center; }
    .quick-track__text { flex-direction: column; text-align: center; }
    .quick-track__field { flex-direction: column; max-width: none; width: 100%; }
    .quick-track__field input {
        flex: none;
        width: 100%;
        box-sizing: border-box;
    }
    .quick-track__field button {
        flex: none;
        width: 100%;
        justify-content: center;
    }
}

/* =======================================================================
   62. CTA BANNER — masqué sur mobile (toutes pages, toutes variantes)
   ======================================================================= */
@media (max-width: 767px) {
    .cta-banner { display: none; }
}

/* =======================================================================
   63. PAGES D'ERREUR (404 / 403)
   ======================================================================= */
.error-hero {
    position: relative;
    background: var(--gradient-navy);
    overflow: hidden;
    padding: 90px 0 0;
    text-align: center;
}
.error-hero__bg { position: absolute; inset: 0; z-index: 0; }
.error-hero__grid { width: 100%; height: 100%; display: block; }
.error-hero__ribbon {
    position: absolute;
    left: -12%; top: -35%;
    width: 55%; height: 220%;
    background: var(--gradient-ribbon);
    opacity: 0.16;
    transform: rotate(-16deg);
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
}

.error-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.error-hero__code {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(4.5rem, 14vw, 8rem);
    line-height: 1;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.error-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px; height: 74px;
    margin: 8px auto 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--orange-400);
    font-size: 1.8rem;
}

.error-hero__title { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.error-hero__message { color: rgba(255,255,255,0.72); font-size: 1rem; margin-bottom: 34px; }

.error-hero__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.error-hero__divider { position: relative; z-index: 2; display: block; width: 100%; height: 44px; }

/* --- Liens rapides --- */
.error-links { padding: 20px 0 100px; background: var(--white); }

.error-links__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 820px;
    margin: 0 auto;
}

.error-link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.error-link-card:hover { background: var(--orange-100); border-color: var(--orange-400); transform: translateY(-3px); }

.error-link-card__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--orange-400);
    font-size: 1rem;
}
.error-link-card span:not(.error-link-card__icon) { flex: 1; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--navy-900); }
.error-link-card__arrow { color: var(--gray-300); font-size: 0.82rem; transition: transform 0.2s ease, color 0.2s ease; }
.error-link-card:hover .error-link-card__arrow { color: var(--orange-600); transform: translateX(4px); }

@media (max-width: 767px) {
    .error-hero { padding-top: 64px; }
    .error-hero__inner { padding-bottom: 56px; }
    .error-hero__actions { flex-direction: column; align-items: stretch; }
    .error-links { padding: 10px 0 72px; }
    .error-links__grid { grid-template-columns: 1fr; }
}
