/* ============================================================
   EASY ACADEMY — SESSIONS EN DIRECT & EXPERTS (Phase 11)
   S'appuie sur les jetons de app.css : aucune couleur de marque
   n'est redéfinie ici, elles sont réutilisées. Le fichier n'apporte
   que les composants propres à ces deux univers.
   ============================================================ */

:root {
    --ea-live-red: #E5484D;
    --ea-live-glow: rgba(229, 72, 77, .28);
}

/* ============================================================
   1. BANDEAUX D'OUVERTURE
   ============================================================ */

.ea-hero-live,
.ea-hero-experts {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 72px);
    background:
        radial-gradient(900px 480px at 12% -10%, rgba(30, 94, 255, .5), transparent 62%),
        radial-gradient(680px 420px at 92% 8%, rgba(18, 155, 138, .42), transparent 60%),
        linear-gradient(160deg, #0A1F44 0%, #07162F 100%);
}

.ea-hero-live::after,
.ea-hero-experts::after {
    /* Halo animé : donne de la profondeur sans image à charger. */
    content: '';
    position: absolute;
    inset: auto -18% -55% auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 168, 32, .30), transparent 66%);
    pointer-events: none;
}

.ea-hero-live::before {
    content: '';
    position: absolute;
    inset: -40% auto auto -12%;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ea-live-glow), transparent 68%);
    pointer-events: none;
}

.ea-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ea-hero-eyebrow .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ea-live-red);
    box-shadow: 0 0 0 0 var(--ea-live-glow);
    animation: ea-pulse 1.9s infinite;
}

@keyframes ea-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(229, 72, 77, .55); }
    70%  { box-shadow: 0 0 0 12px rgba(229, 72, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 72, 77, 0); }
}

.ea-hero-h1 {
    font-size: clamp(2rem, 4.4vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 14px;
    max-width: 20ch;
}

.ea-hero-h1 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--ea-gold-light), var(--ea-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ea-hero-lead {
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    color: rgba(255, 255, 255, .78);
    max-width: 62ch;
    line-height: 1.65;
    margin-bottom: 0;
}

.ea-hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(18px, 4vw, 46px);
    margin-top: 30px;
}

.ea-hero-metric strong {
    display: block;
    font-size: clamp(1.5rem, 2.6vw, 2.05rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
}

.ea-hero-metric span {
    font-size: .82rem;
    color: rgba(255, 255, 255, .62);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* ============================================================
   2. FILTRES ET ONGLETS
   ============================================================ */

.ea-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--ea-border);
    border-radius: 999px;
    padding: 5px;
    box-shadow: var(--ea-shadow-soft);
}

.ea-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 17px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--ea-text-muted);
    text-decoration: none;
    transition: .18s ease;
    white-space: nowrap;
}

.ea-tabs a:hover { color: var(--ea-navy); background: var(--ea-bg); }

.ea-tabs a.active {
    background: var(--ea-navy);
    color: #fff;
    box-shadow: 0 6px 18px rgba(10, 31, 68, .22);
}

.ea-tabs .count {
    font-size: .74rem;
    padding: 1px 7px;
    border-radius: 999px;
    background: rgba(10, 31, 68, .08);
    color: inherit;
}

.ea-tabs a.active .count { background: rgba(255, 255, 255, .2); }

.ea-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
    background: #fff;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-lg);
    padding: 15px 17px;
    box-shadow: var(--ea-shadow-soft);
}

.ea-toolbar .field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 1 160px;
    min-width: 150px;
}

.ea-toolbar .field.grow { flex: 2 1 260px; }

.ea-toolbar label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ea-text-muted);
}

.ea-toolbar .form-control,
.ea-toolbar .form-select {
    border-radius: 12px;
    border: 1px solid var(--ea-border);
    padding: 10px 13px;
    font-size: .94rem;
}

.ea-toolbar .form-control:focus,
.ea-toolbar .form-select:focus {
    border-color: var(--ea-royal);
    box-shadow: 0 0 0 4px rgba(30, 94, 255, .12);
}

/* ============================================================
   3. CARTE DE SESSION
   ============================================================ */

.ea-session-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 22px;
}

.ea-session {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    height: 100%;
}

.ea-session:hover {
    transform: translateY(-4px);
    box-shadow: var(--ea-shadow-card);
    border-color: #C9D8FA;
    color: inherit;
}

.ea-session-cover {
    position: relative;
    aspect-ratio: 16 / 8.5;
    background:
        radial-gradient(420px 220px at 18% 0%, rgba(30, 94, 255, .55), transparent 65%),
        radial-gradient(320px 200px at 100% 100%, rgba(18, 155, 138, .5), transparent 62%),
        linear-gradient(150deg, #12305F, #0A1F44);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.ea-session-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ea-session-cover .glyph {
    font-size: 2.6rem;
    color: rgba(255, 255, 255, .32);
}

.ea-session-when {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 22px rgba(10, 31, 68, .24);
    line-height: 1;
}

.ea-session-when .d {
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--ea-navy);
}

.ea-session-when .m {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ea-text-muted);
    margin-top: 3px;
}

.ea-session-flags {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.ea-flag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .94);
    color: var(--ea-navy);
    backdrop-filter: blur(4px);
}

.ea-flag.live    { background: var(--ea-live-red); color: #fff; }
.ea-flag.replay  { background: rgba(10, 31, 68, .82); color: #fff; }
.ea-flag.members { background: var(--ea-gold); color: #3B2A03; }
.ea-flag.free    { background: var(--ea-emerald); color: #fff; }
.ea-flag.soon    { background: rgba(255, 255, 255, .94); color: var(--ea-royal); }

.ea-flag.live .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: ea-blink 1.4s infinite;
}

@keyframes ea-blink { 0%, 100% { opacity: 1 } 50% { opacity: .25 } }

.ea-session-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}

.ea-session-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--ea-text-muted);
    flex-wrap: wrap;
}

.ea-session-meta .sep { opacity: .45; }

.ea-session-title {
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.32;
    color: var(--ea-navy);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ea-session-summary {
    font-size: .88rem;
    color: var(--ea-text-muted);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ea-session-host {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--ea-border);
}

.ea-avatar-ring {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    object-fit: cover;
    display: grid;
    place-items: center;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--ea-royal), var(--ea-emerald));
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(30, 94, 255, .28);
}

.ea-session-host .who {
    min-width: 0;
    line-height: 1.25;
}

.ea-session-host .who strong {
    display: block;
    font-size: .87rem;
    color: var(--ea-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ea-session-host .who span {
    font-size: .76rem;
    color: var(--ea-text-muted);
}

.ea-seats {
    margin-inline-start: auto;
    font-size: .76rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.ea-seats.ok    { background: rgba(18, 155, 138, .12); color: #0B6E62; }
.ea-seats.low   { background: rgba(233, 168, 32, .16); color: #8A6108; }
.ea-seats.full  { background: rgba(229, 72, 77, .12); color: #A5262A; }
.ea-seats.open  { background: rgba(30, 94, 255, .1); color: var(--ea-royal-dark); }

/* --- Carte vedette : format large --- */
.ea-session-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    background: #fff;
    border: 1px solid var(--ea-border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--ea-shadow-card);
    margin-bottom: 26px;
}

@media (max-width: 767.98px) {
    .ea-session-featured { grid-template-columns: minmax(0, 1fr); }
}

.ea-session-featured .cover {
    position: relative;
    min-height: 250px;
    background:
        radial-gradient(520px 300px at 15% 0%, rgba(30, 94, 255, .6), transparent 64%),
        radial-gradient(420px 260px at 100% 100%, rgba(18, 155, 138, .52), transparent 60%),
        linear-gradient(150deg, #14356A, #0A1F44);
    display: grid;
    place-items: center;
}

.ea-session-featured .cover img { width: 100%; height: 100%; object-fit: cover; }
.ea-session-featured .cover .glyph { font-size: 3.4rem; color: rgba(255, 255, 255, .3); }

.ea-session-featured .body {
    padding: clamp(22px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ea-session-featured .body h2 {
    font-size: clamp(1.3rem, 2.3vw, 1.72rem);
    font-weight: 800;
    color: var(--ea-navy);
    letter-spacing: -.015em;
    line-height: 1.22;
    margin: 0;
}

/* ============================================================
   4. COMPTE À REBOURS
   ============================================================ */

.ea-countdown {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ea-countdown .unit {
    min-width: 60px;
    padding: 10px 8px;
    border-radius: 14px;
    background: var(--ea-bg);
    border: 1px solid var(--ea-border);
    text-align: center;
    line-height: 1;
}

.ea-countdown .unit strong {
    display: block;
    font-size: 1.42rem;
    font-weight: 800;
    color: var(--ea-navy);
    font-variant-numeric: tabular-nums;
}

.ea-countdown .unit span {
    display: block;
    margin-top: 5px;
    font-size: .66rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ea-text-muted);
    font-weight: 700;
}

.ea-countdown.on-dark .unit {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .18);
}

.ea-countdown.on-dark .unit strong { color: #fff; }
.ea-countdown.on-dark .unit span { color: rgba(255, 255, 255, .62); }

/* ============================================================
   5. FICHE DE SESSION
   ============================================================ */

.ea-session-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: clamp(34px, 5vw, 60px) 0;
    background:
        radial-gradient(760px 420px at 8% -20%, rgba(30, 94, 255, .5), transparent 62%),
        radial-gradient(560px 380px at 96% 10%, rgba(229, 72, 77, .3), transparent 60%),
        linear-gradient(155deg, #0A1F44, #07162F);
}

.ea-session-hero .breadcrumb-light a { color: rgba(255, 255, 255, .68); text-decoration: none; }
.ea-session-hero .breadcrumb-light a:hover { color: #fff; }

.ea-session-hero h1 {
    font-size: clamp(1.55rem, 3.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 12px 0 12px;
}

.ea-session-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: rgba(255, 255, 255, .8);
    font-size: .92rem;
}

.ea-session-facts span { display: inline-flex; align-items: center; gap: 7px; }
.ea-session-facts i { color: var(--ea-gold-light); }

.ea-booking {
    position: sticky;
    top: 88px;
    background: #fff;
    border: 1px solid var(--ea-border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: var(--ea-shadow-card);
}

.ea-booking .price-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.ea-booking .price-line strong {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--ea-emerald);
}

.ea-booking .capacity-bar {
    height: 7px;
    border-radius: 999px;
    background: var(--ea-bg);
    overflow: hidden;
    margin: 4px 0 8px;
}

.ea-booking .capacity-bar > span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ea-emerald), var(--ea-royal));
    transition: width .4s ease;
}

.ea-booking .capacity-bar.warn > span { background: linear-gradient(90deg, var(--ea-gold), #E5484D); }

.ea-registered-banner {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(18, 155, 138, .1);
    border: 1px solid rgba(18, 155, 138, .28);
    color: #0B6E62;
    font-size: .88rem;
    margin-bottom: 14px;
}

.ea-agenda { position: relative; padding-inline-start: 26px; }

.ea-agenda::before {
    content: '';
    position: absolute;
    inset-inline-start: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--ea-royal), var(--ea-emerald));
    opacity: .32;
}

.ea-agenda-step { position: relative; padding-bottom: 20px; }

.ea-agenda-step::before {
    content: '';
    position: absolute;
    inset-inline-start: -26px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--ea-royal);
    box-shadow: 0 0 0 3px rgba(30, 94, 255, .12);
}

.ea-agenda-step .t {
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ea-royal);
}

.ea-agenda-step strong {
    display: block;
    color: var(--ea-navy);
    font-size: 1rem;
    margin: 2px 0 3px;
}

.ea-agenda-step p {
    margin: 0;
    font-size: .9rem;
    color: var(--ea-text-muted);
    line-height: 1.6;
}

.ea-takeaway {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--ea-border);
}

.ea-takeaway:last-child { border-bottom: 0; }

.ea-takeaway i {
    color: var(--ea-emerald);
    font-size: 1.1rem;
    margin-top: 1px;
}

/* ============================================================
   6. ANNUAIRE DES EXPERTS
   ============================================================ */

.ea-expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
    gap: 22px;
}

.ea-expert {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    height: 100%;
}

.ea-expert:hover {
    transform: translateY(-4px);
    box-shadow: var(--ea-shadow-card);
    border-color: #C9D8FA;
    color: inherit;
}

.ea-expert-banner {
    height: 82px;
    background:
        radial-gradient(300px 160px at 20% 0%, rgba(30, 94, 255, .55), transparent 66%),
        radial-gradient(260px 150px at 100% 100%, rgba(18, 155, 138, .5), transparent 62%),
        linear-gradient(140deg, #14356A, #0A1F44);
}

.ea-expert-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    margin: -42px auto 0;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--ea-royal), var(--ea-emerald));
    border: 4px solid #fff;
    box-shadow: 0 10px 26px rgba(10, 31, 68, .18);
    position: relative;
    z-index: 1;
}

.ea-expert-body {
    padding: 12px 18px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
}

.ea-expert-name {
    font-size: 1.04rem;
    font-weight: 700;
    color: var(--ea-navy);
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ea-expert-name .verified { color: var(--ea-royal); font-size: .92rem; }

.ea-expert-headline {
    font-size: .86rem;
    color: var(--ea-text-muted);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.ea-expert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.ea-tag {
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--ea-bg);
    color: var(--ea-text-muted);
    border: 1px solid var(--ea-border);
}

.ea-expert-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--ea-border);
}

.ea-expert-stats div { line-height: 1.15; }

.ea-expert-stats strong {
    display: block;
    font-size: .98rem;
    font-weight: 800;
    color: var(--ea-navy);
}

.ea-expert-stats span {
    font-size: .68rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ea-text-muted);
}

.ea-ribbon {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    background: var(--ea-gold);
    color: #3B2A03;
    z-index: 2;
}

.ea-live-chip {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
    background: var(--ea-live-red);
    color: #fff;
    z-index: 2;
}

/* ============================================================
   7. PROFIL D'EXPERT
   ============================================================ */

.ea-profile-hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    padding: clamp(38px, 5vw, 68px) 0 clamp(28px, 4vw, 48px);
    background:
        radial-gradient(820px 440px at 10% -18%, rgba(30, 94, 255, .52), transparent 62%),
        radial-gradient(600px 380px at 94% 6%, rgba(18, 155, 138, .44), transparent 60%),
        linear-gradient(155deg, #0A1F44, #07162F);
}

.ea-profile-head {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(18px, 3vw, 30px);
    align-items: center;
}

.ea-profile-avatar {
    width: clamp(96px, 12vw, 130px);
    height: clamp(96px, 12vw, 130px);
    flex: 0 0 auto;
    border-radius: 30px;
    object-fit: cover;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--ea-royal), var(--ea-emerald));
    border: 4px solid rgba(255, 255, 255, .16);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
}

.ea-profile-head h1 {
    font-size: clamp(1.6rem, 3.4vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ea-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(30, 94, 255, .22);
    border: 1px solid rgba(120, 165, 255, .5);
    color: #CFE0FF;
}

.ea-profile-tagline {
    font-size: clamp(1rem, 1.6vw, 1.16rem);
    color: rgba(255, 255, 255, .82);
    max-width: 60ch;
    line-height: 1.6;
    margin: 0 0 12px;
}

.ea-profile-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ea-chip-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: .82rem;
    color: rgba(255, 255, 255, .88);
}

.ea-stat-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: clamp(22px, 3vw, 34px);
}

.ea-stat-tile {
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(6px);
}

.ea-stat-tile strong {
    display: block;
    font-size: clamp(1.25rem, 2vw, 1.62rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.015em;
}

.ea-stat-tile span {
    display: block;
    margin-top: 4px;
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.ea-panel-light {
    background: #fff;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-lg);
    padding: clamp(18px, 2.4vw, 26px);
    box-shadow: var(--ea-shadow-soft);
}

.ea-panel-light + .ea-panel-light { margin-top: 20px; }

.ea-panel-light h2 {
    font-size: 1.16rem;
    font-weight: 800;
    color: var(--ea-navy);
    letter-spacing: -.01em;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.ea-panel-light h2 i { color: var(--ea-royal); }

.ea-timeline { position: relative; padding-inline-start: 24px; }

.ea-timeline::before {
    content: '';
    position: absolute;
    inset-inline-start: 6px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--ea-border);
}

.ea-timeline-item { position: relative; padding-bottom: 18px; }

.ea-timeline-item:last-child { padding-bottom: 0; }

.ea-timeline-item::before {
    content: '';
    position: absolute;
    inset-inline-start: -24px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--ea-emerald);
}

.ea-timeline-item .period {
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--ea-emerald);
}

.ea-timeline-item strong {
    display: block;
    color: var(--ea-navy);
    margin: 2px 0 2px;
}

.ea-timeline-item span { font-size: .9rem; color: var(--ea-text-muted); }

.ea-rating-bars { display: flex; flex-direction: column; gap: 7px; }

.ea-rating-bar {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 9px;
    font-size: .82rem;
    color: var(--ea-text-muted);
}

.ea-rating-bar .track {
    height: 8px;
    border-radius: 999px;
    background: var(--ea-bg);
    overflow: hidden;
}

.ea-rating-bar .track > span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ea-gold-light), var(--ea-gold));
}

.ea-testimonial {
    background: var(--ea-bg);
    border: 1px solid var(--ea-border);
    border-radius: 18px;
    padding: 16px 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ea-testimonial .stars { color: var(--ea-gold); font-size: .88rem; letter-spacing: 1px; }

.ea-testimonial blockquote {
    margin: 0;
    font-size: .93rem;
    line-height: 1.62;
    color: var(--ea-text);
}

.ea-testimonial footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .82rem;
    color: var(--ea-text-muted);
}

.ea-highlight-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px solid var(--ea-border);
}

.ea-highlight-item:last-child { border-bottom: 0; }

.ea-highlight-item i { color: var(--ea-gold); font-size: 1.05rem; margin-top: 2px; }

.ea-sticky-side { position: sticky; top: 88px; }

/* ============================================================
   8. ÉTATS VIDES ET PAGINATION
   ============================================================ */

.ea-empty-state {
    text-align: center;
    padding: 54px 20px;
    background: #fff;
    border: 1px dashed var(--ea-border);
    border-radius: var(--ea-radius-lg);
}

.ea-empty-state i { font-size: 2.4rem; color: #C3CDE2; display: block; margin-bottom: 12px; }
.ea-empty-state strong { display: block; color: var(--ea-navy); font-size: 1.08rem; margin-bottom: 5px; }
.ea-empty-state span { color: var(--ea-text-muted); font-size: .92rem; }

.ea-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.ea-pagination a,
.ea-pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 13px;
    border-radius: 12px;
    border: 1px solid var(--ea-border);
    background: #fff;
    color: var(--ea-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: .16s ease;
}

.ea-pagination a:hover { border-color: var(--ea-royal); color: var(--ea-royal); }
.ea-pagination .current { background: var(--ea-navy); border-color: var(--ea-navy); color: #fff; }
.ea-pagination .gap { border: 0; background: transparent; color: var(--ea-text-muted); }

/* Bandeau d'appel final */
.ea-cta-band {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: clamp(26px, 4vw, 44px);
    color: #fff;
    background:
        radial-gradient(520px 300px at 12% 0%, rgba(233, 168, 32, .34), transparent 62%),
        linear-gradient(135deg, #12305F, #0A1F44);
}

@media (prefers-reduced-motion: reduce) {
    .ea-session, .ea-expert { transition: none; }
    .ea-session:hover, .ea-expert:hover { transform: none; }
    .ea-hero-eyebrow .pulse, .ea-flag.live .dot { animation: none; }
}
