:root{
    --navy-deep:#0E6E96;
    --navy:#1789B8;
    --navy-mid:#3AA6CC;
    --steel:#4A6C8C;
    --orange:#0C4391;
    --orange-dim:#082F66;
    --sand:#EDE6D6;
    --paper:#FFFFFF;
    --ink:#12181F;
    --line: rgba(237,230,214,0.18);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
    background:var(--paper);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    line-height:1.5;
    overflow-x:hidden;
}
body.intro-active{overflow:hidden; height:100vh;}

/* ---------- Intro splash ---------- */
#intro-splash{
    position:fixed;
    inset:0;
    z-index:9999;
    background:#061420;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:opacity 0.9s ease, visibility 0.9s ease;
}
#intro-splash.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}
#intro-splash .intro-logo{
    width:min(660px, 85vw);
    height:auto;
    opacity:0;
    animation:introFade 3s ease-in forwards;
}
@keyframes introFade{
    0%{opacity:0; transform:scale(0.85);}
    65%{opacity:1; transform:scale(1);}
    85%{opacity:1; transform:scale(1);}
    100%{opacity:0; transform:scale(1.02);}
}
@media (prefers-reduced-motion: reduce){
    #intro-splash .intro-logo{animation:none; opacity:1;}
}
a{color:inherit;}
.mono{font-family:'IBM Plex Mono', monospace;}
.display{font-family:'Oswald', sans-serif; text-transform:uppercase;}

/* ---------- Top utility bar ---------- */
.utility-bar{
    /* Passage à votre bleu signature pour une transition parfaite avec le Hero */
    background: var(--navy-deep);
    color: var(--paper); /* Utilisation de la couleur papier claire pour un texte propre */
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 10px 32px; /* Légèrement rééquilibré */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    /* Remplacement de var(--line) par une séparation ultra-discrète */
    border-bottom: 1px solid rgba(247, 244, 238, 0.08);
}

/* Le texte complet de la description de l'entreprise */
.utility-bar span:first-child {
    font-weight: 500;
    color: var(--sand); /* La couleur sable apporte une nuance chaleureuse et lisible */
    opacity: 0.9;
}

/* La localisation (Abidjan · Côte d'Ivoire) */
.utility-bar span:last-child {
    opacity: 0.75;
    text-transform: uppercase;
}

.utility-bar .dot{
    color: var(--orange);
    margin: 0 6px;
    font-weight: 700;
}

/* Masquage discret sur les très petits écrans pour éviter l'effet "gros bloc de texte" qui pousse la Navbar */
@media (max-width: 560px) {
    .utility-bar {
        padding: 8px 16px;
        font-size: 0.68rem;
        justify-content: center;
        text-align: center;
    }
    .utility-bar span:first-child {
        display: none; /* On ne garde que "Abidjan · Côte d'Ivoire" sur mobile pour économiser de la place */
    }
}

/* ---------- Navbar / Logo ---------- */
.navbar{
    /* Effet translucide moderne au défilement (Glassmorphism) */
    background: rgba(247, 244, 238, 0.92); /* Base var(--paper) avec transparence */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(18, 24, 31, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-inner{
    max-width: 1180px;
    margin: auto;
    padding: 10px 32px; /* Légèrement affiné pour un bandeau plus élégant */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.logo{
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}
.logo:hover {
    transform: scale(1.02); /* Micro-interaction discrète sur le logo */
}
.logo-mark{
    height: 64px; /* Ajusté de 72px à 64px pour un rendu plus compact sur desktop */
    width: auto;
    display: block;
}

/* ---------- Navigation Desktop (Fusionnée et épurée) ---------- */
.navbar-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px; /* Espacement augmenté pour le confort visuel */
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase; /* Aspect plus institutionnel */
    font-weight: 600;
}

.navbar-links li {
    margin: 0;
    padding: 0;
}

.navbar-links a {
    display: inline-block;
    text-decoration: none;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

/* Ligne d'accentuation premium au lieu d'un border-bottom brut */
.navbar-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2AA362; /* Ligne verte de votre identité corporate */
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Au survol : texte orange et déploiement de la barre verte */
.navbar-links a:hover {
    color: var(--orange-dim);
}
.navbar-links a:hover::after {
    width: 100%;
}

/* ---------- Bouton de Langue FR/EN ---------- */
.lang-toggle{
    background: none;
    border: 1px solid rgba(18, 24, 31, 0.15);
    border-radius: 20px; /* Forme pilule épurée */
    padding: 5px 14px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.lang-toggle:hover{
    border-color: var(--orange);
    background: rgba(18, 24, 31, 0.02);
}
.lang-toggle:focus-visible{
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}
.lang-opt{
    opacity: 0.35;
    transition: opacity 0.2s ease, color 0.2s ease;
}
.lang-opt.active{
    opacity: 1;
    color: var(--navy-deep); /* Repasse sur votre bleu profond plutôt que l'orange terne */
    font-weight: 700;
}
/* ---------- Menu mobile ---------- */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    position: relative;
    z-index: 1002;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: var(--ink);

    transition:
            transform 0.3s ease,
            opacity 0.2s ease;
}


/* ---------- Backdrop ---------- */

.menu-backdrop {
    display: none;
}


@media (max-width: 767px) {

    .menu-toggle {
        display: flex;
    }

    .navbar-links {
        display: none;
    }

    /* Backdrop */

    .menu-backdrop {
        display: block;

        position: fixed;
        inset: 0;

        background: rgba(18, 24, 31, 0.45);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
                opacity 0.3s ease,
                visibility 0.3s ease;

        z-index: 1000;
    }

    .menu-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


    /* Panneau */

    .navbar-links.is-open {
        display: flex;

        position: fixed;
        top: 0;
        right: 0;

        width: min(85vw, 360px);
        height: 100dvh;

        margin: 0;
        padding: 100px 32px 32px;

        flex-direction: column;
        align-items: stretch;
        gap: 8px;

        background: var(--paper);

        box-shadow: -10px 0 30px rgba(18, 24, 31, 0.12);

        z-index: 1001;
    }


    /* Bouton lorsque le menu est ouvert */

    .menu-toggle.is-open {
        position: fixed;
        top: 14px;
        right: 16px;
        z-index: 1002;
    }


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

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

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}
@media (max-width: 767px) {

    .navbar-inner {
        padding: 8px 16px;
    }

    .logo-mark {
        height: 56px;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar-links {
        display: none;
    }

}
@media (max-width: 767px) {

    .navbar-links.is-open {
        display: flex;

        position: fixed;
        top: 0;
        right: 0;

        width: min(85vw, 360px);
        height: 100dvh;

        margin: 0;
        padding: 100px 32px 32px;

        flex-direction: column;
        align-items: stretch;
        gap: 8px;

        background: var(--paper);

        box-shadow: -10px 0 30px rgba(18, 24, 31, 0.12);

        z-index: 1001;
    }

    .navbar-links.is-open li {
        width: 100%;
    }

    .navbar-links.is-open a {
        display: flex;
        align-items: center;

        min-height: 48px;

        padding: 8px 0;

        font-size: 1rem;
    }

}
.menu-toggle.is-open {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 1002;
}

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

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

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.menu-backdrop {
    display: none;
}

@media (max-width: 767px) {

    .menu-backdrop {
        display: block;

        position: fixed;
        inset: 0;

        background: rgba(18, 24, 31, 0.45);

        opacity: 0;
        visibility: hidden;

        transition:
                opacity 0.3s ease,
                visibility 0.3s ease;

        z-index: 1000;
    }

    .menu-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
    }

}
.lang-toggle{
    background:none;
    border:1px solid rgba(18,24,31,0.2);
    border-radius:20px;
    padding:5px 12px;
    font-family:'IBM Plex Mono', monospace;
    font-size:0.75rem;
    letter-spacing:0.03em;
    color:var(--ink);
    cursor:pointer;
    transition:border-color 0.2s ease;
}
.lang-toggle:hover{border-color:var(--orange);}
.lang-toggle:focus-visible{outline:2px solid var(--orange); outline-offset:2px;}
.lang-opt{opacity:0.4; transition:opacity 0.2s ease;}
.lang-opt.active{opacity:1; color:var(--orange-dim); font-weight:500;}

/* ---------- Hero ---------- */
.hero{
    position:relative;
    background: linear-gradient(
            180deg,
            rgba(10, 34, 64, 0.75) 0%,     /* Remplacez par votre équivalent var(--navy) en RGBA */
            rgba(5, 19, 36, 0.92) 100%     /* Remplacez par votre équivalent var(--navy-deep) en RGBA */
    ),
    url('../images/img_abj_port.jpg'); /* Chemin vers votre image de conteneurs/navires */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color:var(--paper);
    padding:72px 32px 0;
    overflow:hidden;
}
.hero-inner{
    display: block;
    max-width:1180px;
    margin:0 auto;
    position:relative;
    z-index:2;
}
.eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.92rem;
    letter-spacing:0.18em;
    color:#000000;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
}
.eyebrow::before{
    content:"";
    width:34px; height:1px;
    background:#E2672E;
    display:inline-block;
}

/* Modification de votre H1 d'origine */
.hero h1{
    font-size: clamp(3.5rem, 8vw, 5.5rem); /* Ajusté pour garder la puissance d'origine */
    line-height: 1.1;                     /* Légèrement augmenté pour laisser respirer les lignes */
    font-weight: 700;
    letter-spacing: 0.01em;
    max-width: 560px;                     /* Élargi à 560px selon l'instruction */
}

/* Gestion du retour à la ligne automatique pour le dernier mot/groupe */
.hero h1 span{
    display: block;
}

/* Point focal vert et effet typographique sur le mot central */
.hero h1 span.highlight{
    display: block;
    font-size: clamp(4.2rem, 9.5vw, 6.4rem); /* Plus grand que le reste du titre */
    color: #2ecc71;                          /* Mettez ici votre code vert d'identité */
    line-height: 1.05;
    margin: 4px 0;
}

.hero .subtitle{
    margin-top:22px;
    max-width:520px;
    font-size:1.08rem;
    color:var(--sand);
    font-family:'Inter', sans-serif;
    text-transform:none;
}
.hero-cta-row{
    margin-top:38px;
    display:flex;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
    padding-bottom:56px;
}
.btn-primary{
    background:var(--orange);
    color:var(--navy-deep);
    font-family:'Oswald', sans-serif;
    text-transform:uppercase;
    letter-spacing:0.04em;
    font-weight:600;
    font-size:0.92rem;
    padding:15px 30px;
    border:none;
    border-radius:2px;
    cursor:pointer;
    transition:background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover{background:#1560C4; transform:translateY(-1px);}
.btn-primary:focus-visible{outline:3px solid var(--sand); outline-offset:3px;}
.hero-cta-row .btn-primary{color:#FFFFFF;}
#tracking-btn{color:#FFFFFF;}
.btn-secondary{
    background:none;
    color:var(--paper);
    font-family:'Oswald', sans-serif;
    text-transform:uppercase;
    letter-spacing:0.04em;
    font-weight:600;
    font-size:0.92rem;
    padding:14px 28px;
    border:1px solid rgba(247,244,238,0.4);
    border-radius:2px;
    cursor:pointer;
    transition:border-color 0.2s ease, background 0.2s ease;
}
.btn-secondary:hover{border-color:var(--orange); background:rgba(12,67,145,0.12);}
.btn-secondary:focus-visible{outline:3px solid var(--sand); outline-offset:3px;}

.stamp{
    width:104px; height:104px;
    flex-shrink:0;
}
.stamp-rotate{
    animation:spin 26s linear infinite;
    transform-origin:52px 52px;
}
@media (prefers-reduced-motion: reduce){
    .stamp-rotate{animation:none;}
}
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ---------- Dockline illustration ---------- */
.dockline{
    position:relative;
    z-index:1;
    margin-top:10px;
}
.dockline svg{display:block; width:100%; height:auto;}

/* ---------- Activity section ---------- */
.section{
    max-width:1180px;
    margin:0 auto;
    padding:88px 32px;
}
.section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:24px;
    margin-bottom:48px;
    border-bottom:1px solid rgba(18,24,31,0.12);
    padding-bottom:22px;
    flex-wrap:wrap;
}
.section-head h2{
    color: var(--orange-dim);
    font-size:clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight:600;
}
.section-head .count{
    font-family:'IBM Plex Mono', monospace;
    color:var(--steel);
    font-size:0.85rem;
}

/* ---------- Activity grid (bloc complet à remplacer) ---------- */
.activity-grid{
    display:grid;
    /* Remplacement de repeat(4, 1fr) par auto-fit pour un responsive fluide et automatique */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Augmentation de l'espace pour laisser respirer les cartes individuelles */
    gap: 28px;
    background: transparent; /* Suppression du fond gris rigide */
    border: none;            /* Suppression de la bordure globale */
}
.activity-card{
    background: var(--paper);
    padding: 34px 26px;
    border: 1px solid rgba(18, 24, 31, 0.06); /* Bordure ultra-fine */
    border-radius: 6px;                        /* Angles adoucis pour l'aspect premium */
    /* Ombre subtile pour le relief sur fond blanc */
    box-shadow: 0 10px 30px rgba(10, 34, 64, 0.03);
    /* Ajout du transform dans la transition pour un glissement fluide */
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Effet au survol : la carte s'élève, l'ombre s'accentue et la bordure devient verte */
.activity-card:hover{
    background: #FFFFFF;
    transform: translateY(-6px);
    border-color: #2AA362; /* Rappel de la couleur verte de votre logo corporate */
    box-shadow: 0 16px 36px rgba(10, 34, 64, 0.08);
    opacity: 1;
}

.activity-card .illustration{
    width: 100%;
    height: 140px; /* Légèrement rehaussé pour une meilleure visibilité des images */
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(18, 24, 31, 0.08);
    padding-bottom: 18px;
    overflow: hidden;
}
.activity-card .illustration svg{ width:100%; height:100%; display:block; }
.activity-card .illustration img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px; /* Un peu plus arrondi pour suivre le design de la carte */
    transition: transform 0.5s ease; /* Prépare l'effet de zoom de l'image */
}

/* Léger effet de zoom sur la photo au survol de la carte */
.activity-card:hover .illustration img {
    transform: scale(1.04);
}

.activity-card h3{
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.02rem;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}
.activity-card p{
    font-size: 0.9rem;
    color: #3a4652;
}

/* Nettoyage des anciens medias queries obsolètes grâce à la puissance du responsive grid (auto-fit) */
@media (max-width: 560px){
    .activity-grid{
        gap: 20px; /* Plus compact sur petit écran mobile */
    }
}
/* ---------- Manifest / Agences board ---------- */
.manifest{
    background: var(--navy-deep);
    color: var(--paper); /* Aligné sur le papier clair pour le texte par défaut */
}
.manifest .section-head{
    border-bottom-color: rgba(247, 244, 238, 0.15); /* Remplacement de var(--line) pour un contrôle précis */
}
.manifest .section-head h2{ color: var(--paper); font-weight: 700; }
.manifest .section-head .count{ color: #FFFFFF; font-weight: 700; }

.board{
    border-top: 1px solid rgba(247, 244, 238, 0.15);
    margin-top: 16px;
}
.board-row{
    display: grid;
    grid-template-columns: 140px 1.2fr 160px 1.5fr; /* Proportions ajustées pour éviter les chevauchements */
    gap: 24px; /* Espace augmenté pour faire respirer la ligne */
    align-items: center;
    padding: 24px 16px; /* Ajout d'un léger padding horizontal pour l'effet de survol */
    border-bottom: 1px solid rgba(247, 244, 238, 0.12);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.88rem;
    transition: background 0.25s ease, transform 0.2s ease, border-color 0.2s ease;
}

/* EFFET TABLEAU DE BORD PREMIUM AU SURVOL */
.board-row:hover {
    background: rgba(247, 244, 238, 0.03); /* Léger rétro-éclairage de la ligne */
    border-bottom-color: rgba(42, 163, 98, 0.4); /* La ligne du tableau s'illumine avec votre vert corporate */
    transform: translateX(4px); /* Léger décalage vers la droite ultra-dynamique */
}

/* Le code aéroportuaire reste orange pour l'aspect alerte/transit */
.board-row .code{
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.board-row .name{
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    color: var(--paper);
    font-weight: 700;
}

/* La date passe au VERT corporate pour rompre la monotonie et symboliser la pérennité */
.board-row .since{
    color: #2AA362; /* Votre vert logistique */
    font-weight: 700;
    letter-spacing: -0.01em;
}

.board-row .desc{
    color: #E2E8F0; /* Gris-blanc plus lumineux et contrasté pour une lecture parfaite dans le noir */
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500; /* Descendu à 500 pour affiner la hiérarchie textuelle par rapport au titre */
}

/* RESPONSIVE FLUIDE POUR LES SMARTPHONES */
@media (max-width: 900px){
    .board-row{
        grid-template-columns: 120px 1fr; /* S'organise sur 2 colonnes sur tablette */
        gap: 12px;
        padding: 20px 12px;
    }
    .board-row .since {
        grid-column: 1;
    }
    .board-row .desc {
        grid-column: 1 / -1; /* Prend toute la largeur en dessous */
        margin-top: 4px;
    }
}

@media (max-width: 560px){
    .board-row{
        grid-template-columns: 1fr; /* 1 seule colonne stricte sur mobile */
        gap: 6px;
        padding: 18px 4px;
    }
    .board-row:hover {
        transform: none; /* Désactivé sur mobile pour le confort tactile */
    }
}

/* ---------- Footer ---------- */
footer{
    /* Passage à un fond sombre premium pour clore le site de manière institutionnelle */
    background: #0B192C; /* Écho au bleu marine profond de votre marque */
    color: var(--paper);
    padding: 64px 32px 32px;
    max-width: 100%;     /* Prend toute la largeur de l'écran proprement */
    margin: 0;
    /* Ligne de séparation haute subtile qui utilise votre vert corporate */
    border-top: 3px solid #2AA362;
    display: flex;
    flex-direction: column;
}

.footer-inner {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.footer-top{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

footer .brand{
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.3rem; /* Légèrement augmenté */
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #FFFFFF; /* Éclatant dans le noir */
}

/* Ajout d'une petite barre orange sous la marque pour asseoir le logo */
footer .brand::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: var(--orange);
    margin-top: 6px;
}

footer .contact{
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.84rem;
    color: #BAC7D5; /* Gris lumineux pour une excellente lisibilité sur fond sombre */
    line-height: 2;
    text-align: right;
}

/* Au survol de l'adresse, les numéros se détachent légèrement */
footer .contact br + br + text {
    color: #FFFFFF;
}

/* Réseaux sociaux - Rétroéclairage premium */
.social-links{
    display: flex;
    gap: 14px;
    margin-top: 20px;
}
.social-links a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Cercles discrets intégrés au thème sombre */
    border: 1px solid rgba(247, 244, 238, 0.15);
    border-radius: 50%;
    color: #BAC7D5;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.social-links a svg{ width: 18px; height: 18px; }

/* Au survol : effet d'élévation et couleur verte logistique ou orange dynamique */
.social-links a:hover{
    background: var(--orange);
    border-color: var(--orange);
    color: #FFFFFF;
    transform: translateY(-2px);
}
/* Le bouton LinkedIn passe au bleu LinkedIn au survol pour le côté pro */
.social-links a[title="LinkedIn"]:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.social-links a:focus-visible{
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* Nettoyage complet du Copyright (Plus de hack vw instable) */
.copyright{
    font-size: 0.74rem;
    color: rgba(247, 244, 238, 0.4); /* Discret et élégant */
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center; /* Centré pour équilibrer la fin de page */
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(247, 244, 238, 0.08); /* Ligne fine de démarcation interne */
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

/* Ajustements réactifs pour les téléphones */
@media (max-width: 768px) {
    footer {
        padding: 48px 24px 24px;
    }
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    footer .contact {
        text-align: left; /* Aligné à gauche sur mobile pour une lecture naturelle */
    }
}

/* ---------- Volet RH Footer ---------- */
.footer-careers {
    margin-top: 14px;
}
.careers-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sand, #F7F4EE); /* Couleur claire et lisible */
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease;
}
.careers-link:hover {
    background: #2AA362; /* Passe au vert corporate au survol */
    border-color: #2AA362;
    color: #ffffff;
    transform: translateY(-1px);
}
/* Petite puce animée "Live/Ouvert" */
.pulse-icon {
    width: 6px;
    height: 6px;
    background-color: #2AA362;
    border-radius: 50%;
    position: relative;
}
.careers-link:hover .pulse-icon {
    background-color: #ffffff;
}
/* ---------- Quote modal ---------- */
.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(6,20,32,0.7);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:200;
    opacity:0;
    visibility:hidden;
    transition:opacity 0.25s ease, visibility 0.25s ease;
    padding:24px;
}
.modal-overlay.open{opacity:1; visibility:visible;}
.modal-panel{
    background:var(--paper);
    max-width:460px;
    width:100%;
    padding:38px 34px;
    border-radius:4px;
    position:relative;
    transform:translateY(12px);
    transition:transform 0.25s ease;
    max-height:88vh;
    overflow-y:auto;
}
.modal-overlay.open .modal-panel{transform:translateY(0);}
.modal-close{
    position:absolute;
    top:16px; right:16px;
    background:none;
    border:none;
    font-size:1.1rem;
    cursor:pointer;
    color:var(--steel);
    width:32px; height:32px;
    border-radius:50%;
}
.modal-close:hover{background:var(--sand); color:var(--ink);}
.modal-panel h2{
    font-family:'Oswald', sans-serif;
    text-transform:uppercase;
    font-size:1.3rem;
    letter-spacing:0.02em;
    margin-bottom:10px;
    padding-right:24px;
}
.modal-note{
    font-size:0.85rem;
    color:var(--steel);
    margin-bottom:26px;
}
.quote-form{display:flex; flex-direction:column; gap:6px;}
.quote-label{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.72rem;
    letter-spacing:0.05em;
    text-transform:uppercase;
    color:var(--steel);
    margin-top:14px;
}
.quote-input{
    font-family:'Inter', sans-serif;
    font-size:0.95rem;
    padding:11px 12px;
    border:1px solid rgba(18,24,31,0.2);
    border-radius:2px;
    background:#fff;
    color:var(--ink);
}
.quote-input:focus-visible{outline:2px solid var(--orange); outline-offset:1px;}
.quote-compute{margin-top:24px; width:100%; color:var(--navy-deep);}
.quote-result{
    margin-top:24px;
    padding-top:22px;
    border-top:1px solid rgba(18,24,31,0.12);
    text-align:center;
}
.quote-result-amount{
    font-family:'Oswald', sans-serif;
    font-size:2.2rem;
    font-weight:700;
    color:var(--orange-dim);
}
.quote-result-label{font-size:0.72rem; color:var(--steel); margin-top:4px;}
.quote-cta-link{
    display:inline-block;
    margin-top:16px;
    font-size:0.85rem;
    color:var(--navy-deep);
    text-decoration:underline;
}

/* ---------- Tracking section ---------- */
/* Ajout de la texture en petits points (effet réseau de transit) */
.tracking-section {
    background-color: #ffffff;
    background-image: radial-gradient(rgba(18, 24, 31, 0.04) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    border-top: 1px solid rgba(18, 24, 31, 0.06);
    border-bottom: 1px solid rgba(18, 24, 31, 0.06);
}

.tracking-intro{
    color:#3a4652;
    max-width:560px;
    margin-bottom:28px;
}

/* Transformation en bloc flottant premium */
.tracking-box{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    background: #ffffff;
    max-width: 680px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(18, 24, 31, 0.08);
    box-shadow: 0 12px 32px rgba(10, 34, 64, 0.05); /* Ombre douce pour le relief */
}

/* Épuration du champ de saisie intérieur */
.tracking-input{
    flex: 1;
    min-width: 220px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.95rem;
    padding: 12px 14px;
    border: none; /* Suppression de la bordure individuelle */
    background: transparent;
    color: var(--ink);
}

/* Focus harmonisé sur l'ensemble de la boîte */
.tracking-box:focus-within {
    border-color: var(--orange);
    box-shadow: 0 12px 32px rgba(226, 103, 46, 0.12);
}
.tracking-input:focus-visible{
    outline: none; /* Évite le double contour natif */
}

.tracking-result{
    margin-top:36px;
    padding-top:30px;
    border-top:1px solid rgba(18,24,31,0.12);
}
.tracking-code{
    font-size:0.85rem;
    color:var(--steel);
    margin-bottom:24px;
}
.tracking-timeline{
    display:flex;
    flex-direction:column;
    gap:0;
}
.tl-step{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:14px 0;
    position:relative;
}
.tl-step::before{
    content:"";
    position:absolute;
    left:6px; top:34px; bottom:-6px;
    width:1px;
    background:rgba(18,24,31,0.15);
}
.tl-step:last-child::before{display:none;}
.tl-dot{
    width:13px; height:13px;
    border-radius:50%;
    background:#fff;
    border:2px solid rgba(18,24,31,0.25);
    flex-shrink:0;
    margin-top:3px;
}

/* Intégration du vert corporate sur les étapes validées avec succès */
.tl-step.done .tl-dot{
    background: #2AA362;
    border-color: #2AA362;
}
.tl-step.active .tl-dot{
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(226, 103, 46, 0.18);
}

.tl-title{font-family:'Oswald', sans-serif; text-transform:uppercase; font-size:0.95rem; letter-spacing:0.02em;}
.tl-step:not(.done):not(.active) .tl-title{color:var(--steel);}
.tl-sub{font-size:0.76rem; color:var(--steel); margin-top:2px;}
.tracking-disclaimer{
    margin-top:26px;
    font-size:0.76rem;
    color:var(--steel);
    font-style:italic;
}

/* Version responsive pour les petits écrans */
@media (max-width: 560px) {
    .tracking-box {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 8px;
    }
    .tracking-input {
        background: #ffffff;
        border: 1px solid rgba(18, 24, 31, 0.15);
        border-radius: 4px;
        width: 100%;
    }
}
/* ---------- Testimonials section ---------- */
/* Application de la micro-teinte de fond pour rompre le blanc pur */
.testimonials-section {
    background-color: #F6F8FB;
    border-top: 1px solid rgba(18, 24, 31, 0.05);
}

/* Transformation de la ligne de statistiques en grand pavé flottant premium */
.satisfaction-row{
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 52px;
    padding: 32px 40px;
    background: #ffffff;
    border: 1px solid rgba(18, 24, 31, 0.06);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(10, 34, 64, 0.03); /* Ombre ultra-douce */
}
.satisfaction-score{
    text-align: center;
    padding-right: 48px;
    border-right: 1px solid rgba(18, 24, 31, 0.1);
}
/* Sur mobile, on retire la bordure verticale de séparation */
@media (max-width: 768px) {
    .satisfaction-score {
        padding-right: 0;
        border-right: none;
        width: 100%;
        text-align: left;
        margin-bottom: 12px;
    }
}
.score-number{
    font-family: 'Oswald', sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--orange-dim);
    line-height: 1;
}
.score-stars{ color: var(--orange); font-size: 1.1rem; margin-top: 6px; }
.score-label{ font-size: 0.72rem; color: var(--steel); margin-top: 6px; }

.satisfaction-stats{
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
    flex: 1;
}
.stat-item .stat-number{
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem; /* Légèrement augmenté pour asseoir les statistiques */
    font-weight: 700;
    color: #2AA362;    /* Votre vert corporate apporte de la puissance aux réussites */
}
.stat-item .stat-label{ font-size: 0.82rem; color: #3a4652; margin-top: 4px; }

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

/* Base de la carte des témoignages (Version statique/grille) */
.testimonial-card{
    background: #ffffff; /* Passe du sable au blanc pur pour détacher du fond gris-bleu */
    padding: 28px 26px;
    border-radius: 6px;
    border: 1px solid rgba(18, 24, 31, 0.05);
    box-shadow: 0 4px 20px rgba(10, 34, 64, 0.02);
}
.testimonial-card .stars{ color: var(--orange); font-size: 0.95rem; margin-bottom: 14px; }
.testimonial-quote{
    font-size: 0.92rem;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 18px;
}
.testimonial-author{
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: var(--steel);
    letter-spacing: 0.02em;
}
.testimonials-disclaimer{
    margin-top: 22px;
    font-size: 0.76rem;
    color: var(--steel);
    font-style: italic;
}

/* Effets pour le bandeau défilant (Marquee) */
.testimonials-marquee{
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testimonials-track{
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    animation-name: testimonialsScroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 48s;
}
.testimonials-marquee:hover .testimonials-track{
    animation-play-state: paused;
}

/* Cartes spécifiques à l'intérieur du défilé (Marquee) */
.testimonials-track .testimonial-card{
    flex: 0 0 auto;
    width: 340px;
    background: #ffffff; /* Uniformisé en blanc pur pour un aspect moderne */
    padding: 28px 26px;
    border-radius: 6px;  /* Angles lissés */
    border: 1px solid rgba(18, 24, 31, 0.06);
    box-shadow: 0 4px 20px rgba(10, 34, 64, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
/* Micro-interactivité discrète au survol d'un avis client */
.testimonials-track .testimonial-card:hover {
    border-color: rgba(42, 163, 98, 0.4); /* Halo vert subtil */
    box-shadow: 0 10px 24px rgba(10, 34, 64, 0.05);
}

.testimonials-track .testimonial-quote{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes testimonialsScroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
    .testimonials-track{ animation: none; }
    .testimonials-marquee{ overflow-x: auto; }
}
@media (max-width: 560px){
    .testimonials-track .testimonial-card{ width: 280px; }
}
@media (max-width: 900px){
    .testimonials-grid{ grid-template-columns: 1fr; }
}

/* Style du compteur de visiteurs */
.visitor-counter .stat-number {
    font-family: 'IBM Plex Mono', monospace; /* Style technique/compteur de données */
    letter-spacing: -0.02em;
}
/* ---------- Testimonial submission form ---------- */
.testimonial-form-wrap{
    margin-top: 56px;
    padding: 40px;
    background: #ffffff; /* Le formulaire devient lui aussi une boîte propre */
    border: 1px solid rgba(18, 24, 31, 0.06);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(10, 34, 64, 0.02);
    max-width: 560px;
}
/* Titres et labels du formulaire rafraîchis */
.testimonial-form-title{
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: var(--orange-dim);
    margin-bottom: 6px;
}
.testimonial-form-note{
    font-size: 0.85rem;
    color: var(--steel);
    margin-bottom: 20px;
}
.testimonial-form{
    display: flex;
    flex-direction: column;
    gap: 12px; /* Un poil plus d'espace entre les groupes de champs */
}
.quote-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: -4px;
}
.testimonial-form .quote-input{
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    padding: 12px 14px;
    border: 1px solid rgba(18, 24, 31, 0.15);
    border-radius: 4px;
    background: #F8FAFC; /* Arrière-plan légèrement grisé pour les inputs */
    color: var(--ink);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.testimonial-form .quote-input:focus {
    background: #ffffff;
    border-color: var(--orange);
    outline: none;
}
.testimonial-form textarea.quote-input{
    resize: vertical;
}
.testimonial-submit{
    margin-top: 12px;
    align-self: flex-start;
    color: #FFFFFF;
}
.testimonial-form-status{
    margin-top: 14px;
    font-size: 0.85rem;
}
.testimonial-form-status.success{ color: #1b7a3d; }
.testimonial-form-status.error{ color: #a33; }

.hp-field{
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.testimonial-card.dynamic{
    border: 1px solid rgba(18, 24, 31, 0.08);
}

/* ---------- Partners marquee ---------- */
.partners-section .section-head{
    margin-bottom: 48px;
}

.partners-section {
    background-color: #ffffff;
}

.partners-marquee{
    overflow: hidden;
    position: relative;
    /* Augmentation du padding pour accueillir de plus grands logos sans étouffer */
    padding: 48px 0;

    background: #ffffff;
    border: 1px solid rgba(18, 24, 31, 0.06);
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(10, 34, 64, 0.04);

    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partners-track{
    display: flex;
    align-items: center;
    gap: 80px; /* Espace optimal pour de grands logos */
    width: max-content;
    animation: partnersScroll 36s linear infinite; /* Légèrement ralenti pour que les grands logos restent agréables à regarder */
}

.partners-marquee:hover .partners-track{
    animation-play-state: paused;
}

.partner-logo{
    flex: 0 0 auto;
    height: 72px; /* Rehaussé à 72px : Vos logos retrouvent leur force et leur lisibilité */
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img{
    height: 100%;
    width: auto;
    max-width: 200px; /* Largeur max augmentée pour les logos horizontaux */
    object-fit: contain;
    /* Opacité remontée à 0.55 pour une visibilité immédiate sans survol */
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s ease;
}

/* Au survol d'un logo : couleur d'origine et focus net */
.partner-logo img:hover{
    filter: grayscale(0%) opacity(1);
    transform: scale(1.04);
}

@keyframes partnersScroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
    .partners-track{ animation: none; }
    .partners-marquee{ overflow-x: auto; }
}

/* Responsive équilibré pour les écrans tactiles */
@media (max-width: 768px) {
    .partners-marquee {
        padding: 38px 0;
    }
    .partners-track {
        gap: 56px;
    }
    .partner-logo {
        height: 54px; /* Reste bien lisible sur tablette */
    }
}

@media (max-width: 560px){
    .partners-marquee{
        padding: 28px 0;
    }
    .partners-track {
        gap: 40px;
    }
    .partner-logo{ height: 44px; } /* Ajusté pour ne pas déborder sur smartphone */
}


/* ==========================================================================
   apropos.css — vient EN COMPLÉMENT de index.css (charger les deux).
   Ne redéfinit aucune couleur/police : réutilise les variables de :root
   déjà déclarées dans index.css.
   ========================================================================== */

/* ---------- Page hero (bandeau + vidéo principale) ---------- */
.about-hero{
    background:linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color:var(--paper);
    padding:64px 32px 72px;
}
.about-hero-inner{
    max-width:1180px;
    margin:0 auto;
}
.about-hero h1{
    font-family:'Oswald', sans-serif;
    font-weight:700;
    font-size:clamp(2.2rem, 5vw, 3.4rem);
    line-height:1.08;
    max-width:16ch;
    margin-bottom:14px;
}
.about-hero p{
    max-width:560px;
    color:var(--sand);
    font-size:1.02rem;
    margin-bottom:36px;
}

.about-video-frame{
    max-width:900px;
    margin:0 auto;
    border-radius:6px;
    overflow:hidden;
    border:1px solid rgba(237,230,214,0.25);
    box-shadow:0 24px 60px rgba(4,20,40,0.45);
    background:#000;
}
.about-video-frame video{
    width:100%;
    height:auto;
    display:block;
}

/* ---------- Qui sommes-nous (badge d'expérience + texte) ---------- */
.about-intro-grid{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:56px;
    align-items:start;
}
.exp-badge{
    width:220px;
    height:220px;
    border-radius:50%;
    border:1px dashed rgba(18,24,31,0.25);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin:0 auto;
}
.exp-badge .number{
    font-family:'Oswald', sans-serif;
    font-weight:700;
    font-size:3.6rem;
    color:var(--orange-dim);
    line-height:1;
}
.exp-badge .text{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.78rem;
    letter-spacing:0.04em;
    color:var(--steel);
    text-transform:uppercase;
    margin-top:8px;
    text-align:center;
    max-width:120px;
}
.about-bullet-list{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-top:26px;
}
.about-bullet-list li{
    display:flex;
    gap:12px;
    font-size:0.95rem;
    line-height:1.6;
    color:#3a4652;
}
.about-bullet-list li::before{
    content:"";
    flex-shrink:0;
    width:8px; height:8px;
    border-radius:50%;
    background:var(--orange);
    margin-top:8px;
}
.about-bullet-list strong{color:var(--ink);}

@media (max-width:800px){
    .about-intro-grid{grid-template-columns:1fr; gap:32px;}
}

/* ---------- Frise chronologique (réutilise l'esprit de .tl-step) ---------- */
.about-timeline{
    display:flex;
    flex-direction:column;
    gap:0;
    max-width:720px;
    margin:0 auto;
}
.timeline-step{
    display:flex;
    gap:22px;
    padding:22px 0;
    position:relative;
}
.timeline-step::before{
    content:"";
    position:absolute;
    left:7px; top:44px; bottom:-6px;
    width:1px;
    background:rgba(18,24,31,0.15);
}
.timeline-step:last-child::before{display:none;}
.timeline-dot{
    width:15px; height:15px;
    border-radius:50%;
    background:var(--orange);
    flex-shrink:0;
    margin-top:5px;
}
.timeline-year{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.78rem;
    color:var(--orange-dim);
    font-weight:700;
    letter-spacing:0.03em;
    margin-bottom:4px;
}
.timeline-title{
    font-family:'Oswald', sans-serif;
    text-transform:uppercase;
    font-size:1rem;
    letter-spacing:0.02em;
    margin-bottom:4px;
}
.timeline-desc{font-size:0.88rem; color:#3a4652;}

/* ---------- Services (même grille que .activity-grid, icônes au lieu de photos) ---------- */
.service-icon-circle{
    width:64px; height:64px;
    border-radius:50%;
    background:var(--sand);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}
.service-icon-circle svg{width:30px; height:30px; stroke:var(--orange-dim);}
.service-card-list{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-top:14px;
}
.service-card-list li{
    font-size:0.86rem;
    color:#3a4652;
    padding-left:16px;
    position:relative;
    line-height:1.5;
}
.service-card-list li::before{
    content:"–";
    position:absolute;
    left:0;
    color:var(--steel);
}

/* ---------- Pourquoi nous (features) ---------- */
.features-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:32px;
}
.feature-item{text-align:left;}
.feature-icon-circle{
    width:52px; height:52px;
    border-radius:50%;
    border:1px solid rgba(18,24,31,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}
.feature-icon-circle svg{width:24px; height:24px; stroke:var(--orange-dim);}
.feature-item h4{
    font-family:'Oswald', sans-serif;
    text-transform:uppercase;
    font-size:0.95rem;
    letter-spacing:0.02em;
    margin-bottom:8px;
}
.feature-item p{font-size:0.86rem; color:#3a4652; line-height:1.55;}

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

/* ---------- Galerie photo ---------- */
.about-gallery{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    grid-auto-rows:180px;
    gap:6px;
}
.about-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.about-gallery .span-2{grid-column:span 2; grid-row:span 2;}

@media (max-width:800px){
    .about-gallery{grid-template-columns:repeat(2, 1fr);}
    .about-gallery .span-2{grid-column:span 2; grid-row:span 1;}
}
.tracking-status{
    margin-top:14px;
    font-size:0.85rem;
    color:var(--steel);
}
.tracking-status.error{color:#a33;}
.tracking-pending, .tracking-exception{
    font-size:0.9rem;
    padding:14px 16px;
    border-radius:4px;
    background:var(--sand);
}
.tracking-exception{background:#fde8e8; color:#a33;}
.tracking-events{margin-top:26px;}
.tracking-events-title{
    font-size:0.72rem;
    letter-spacing:0.05em;
    text-transform:uppercase;
    color:var(--steel);
    margin-bottom:12px;
}
.tracking-event-row{
    display:flex;
    gap:14px;
    padding:8px 0;
    border-bottom:1px solid rgba(18,24,31,0.06);
    font-size:0.85rem;
}
.tracking-event-date{color:var(--steel); flex-shrink:0; min-width:140px;}