/* ============================================================
   SHARED SECTION COMPONENTS — réutilisés sur toutes les pages
   (base + chargés avant accueil.css qui peut les surcharger)
   ============================================================ */
.section {
    position: relative;
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 99px;
    background: rgba(242, 142, 33, 0.08);
    border: 1px solid rgba(242, 142, 33, 0.25);
    color: var(--color-blue-primary);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text-primary);
    line-height: 1.2;
    max-width: 800px;
}

.section-lead {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--color-text-secondary);
    line-height: 1.65;
    max-width: 640px;
    margin: 0;
}

/* ── CTA BANNER partagé ──────────────────────────────────── */
.section-cta {
    padding: 5rem 2rem 6rem;
    background: transparent;
}

.cta-inner {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.2rem 2.5rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(34, 54, 80, 0.65) 0%, rgba(17, 29, 44, 0.75) 100%);
    border: 1px solid rgba(242, 142, 33, 0.18);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -80%;
    right: -10%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(242, 142, 33, 0.18), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    flex: 1 1 380px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-blue-primary);
    font-weight: 500;
    opacity: 0.85;
}

.cta-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 300;
    color: var(--color-text-primary);
    line-height: 1.5;
    margin: 0;
}

.cta-highlight {
    color: var(--color-blue-primary);
    font-weight: 500;
}

.cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 11px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-red));
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(242, 142, 33, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(242, 142, 33, 0.42);
}

.cta-btn i {
    font-size: 0.78rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i { transform: translateX(4px); }

@media (max-width: 720px) {
    .section-cta { padding: 3.5rem 1rem 4rem; }
    .cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    .cta-content { text-align: center; flex: 0 0 auto; }
    .cta-btn { justify-content: center; }
}

@media (max-width: 600px) {
    .section { padding: 4.5rem 1.2rem; }
}

/* ============================================================
   PAGE WIP — placeholder "en construction" sous le page-hero
   ============================================================ */
.page-wip {
    padding: 4rem 2rem 7rem;
}

.page-wip-inner {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: rgba(34, 54, 80, 0.35);
    border: 1px solid rgba(242, 142, 33, 0.15);
}

.page-wip-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(242, 142, 33, 0.1);
    color: var(--color-blue-primary);
    font-size: 1.3rem;
}

.page-wip-inner h2 {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 1.4rem;
    color: var(--color-text-primary);
    line-height: 1.25;
    margin: 0;
}

.page-wip-inner p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   PAGES STUB — placeholder partagé (ancien)
   ============================================================ */

.page-stub {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 6rem;
}

.page-stub-inner {
    text-align: center;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.page-stub-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 99px;
    background: rgba(242, 142, 33, 0.08);
    border: 1px solid rgba(242, 142, 33, 0.2);
    color: var(--color-blue-primary);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-stub-inner h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--color-text-primary);
    line-height: 1.15;
}

.page-stub-inner p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* ============================================================
   PAGE HERO — bandeau en-tête (thème comptable : lignes ledger
   + symboles financiers watermark, évite l'effet "tech/futuriste")
   ============================================================ */
.page-hero {
    position: relative;
    padding: 11rem 2rem 5rem;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(242, 142, 33, 0.10), transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 60%);
}

/* Lignes horizontales façon grand livre comptable (ledger) */
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        repeating-linear-gradient(
            180deg,
            transparent 0 39px,
            rgba(242, 142, 33, 0.055) 39px 40px
        );
    mask-image: radial-gradient(ellipse 90% 70% at 50% 45%, #000 25%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 45%, #000 25%, transparent 78%);
    pointer-events: none;
}

/* Symboles financiers watermark (Σ gauche, € droite) */
.page-hero::before,
.page-hero::after {
    position: absolute;
    top: 50%;
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: clamp(9rem, 18vw, 16rem);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(242, 142, 33, 0.13);
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.page-hero::before {
    content: '%';
    left: 3%;
    transform: translateY(-40%) rotate(-6deg);
    z-index: 1;
}

.page-hero::after {
    content: '€';
    right: 3%;
    transform: translateY(-40%) rotate(8deg);
    z-index: 1;
}

/* Glow orange central (derrière le titre) */
.page-hero-glow {
    position: absolute;
    top: 38%;
    left: 50%;
    width: 620px;
    height: 320px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(242, 142, 33, 0.28), transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

/* Double ligne "total" en bas du hero (style bilan comptable) */
.page-hero-inner::before,
.page-hero-inner::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 142, 33, 0.3), transparent);
    pointer-events: none;
}
.page-hero-inner::after { bottom: -2.6rem; opacity: 0.55; }

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.page-hero-inner h1 {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--color-text-primary);
    line-height: 1.15;
    margin: 0;
}

.page-hero-accent {
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-hero-lead {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 620px;
    margin: 0;
}

@media (max-width: 640px) {
    .page-hero { padding: 9rem 1.2rem 3.5rem; }
    .page-hero-glow { width: 110vw; height: 260px; }
}

/* ============================================================
   SECTION PILIERS — 3 cartes "Pourquoi choisir"
   ============================================================ */
.section-pillars {
    background:
        radial-gradient(ellipse 40% 50% at 15% 20%, rgba(249, 178, 51, 0.06), transparent 70%),
        radial-gradient(ellipse 40% 50% at 85% 80%, rgba(220, 38, 43, 0.05), transparent 70%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    width: 100%;
    margin-top: 2rem;
}

.pillar-card {
    position: relative;
    padding: 2.4rem 2rem 2.2rem;
    border-radius: 20px;
    background: rgba(34, 54, 80, 0.35);
    border: 1px solid rgba(242, 142, 33, 0.15);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(242, 142, 33, 0.12), transparent 65%);
    filter: blur(30px);
    pointer-events: none;
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 142, 33, 0.4);
    background: rgba(34, 54, 80, 0.55);
}

.pillar-number {
    position: absolute;
    top: 1rem;
    right: 1.4rem;
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 2.4rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(242, 142, 33, 0.28);
    line-height: 1;
    pointer-events: none;
}

.pillar-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(242, 142, 33, 0.12);
    color: var(--color-blue-primary);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.pillar-card h3 {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 1.35rem;
    color: var(--color-text-primary);
    line-height: 1.25;
    margin: 0 0 0.7rem;
}

.pillar-card p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .pillars-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ============================================================
   DÉTAIL DES MISSIONS — liste alternée + n° géant en filigrane
   (pattern emprunté du projet Synergyz.IA, adapté palette orange)
   ============================================================ */
.section-missions-detail {
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(242, 142, 33, 0.04), transparent 70%),
        linear-gradient(rgba(242, 142, 33, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 142, 33, 0.025) 1px, transparent 1px);
    background-size: auto, 64px 64px, 64px 64px;
    background-color: rgba(0, 0, 0, 0.15);
}

.sec-list {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sec-item + .sec-item {
    border-top: 1px solid rgba(242, 142, 33, 0.1);
    padding-top: 5rem;
    margin-top: 5rem;
}

.sec-item {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
    padding-bottom: 1rem;
}

.sec-item--reverse { direction: rtl; }
.sec-item--reverse > * { direction: ltr; }

/* Contenu */
.sec-item__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.sec-item__label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 6px 14px;
    border-radius: 99px;
    background: rgba(242, 142, 33, 0.08);
    border: 1px solid rgba(242, 142, 33, 0.22);
    color: var(--color-blue-primary);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    align-self: flex-start;
}

.sec-item__label i { font-size: 0.82rem; }

.sec-item__title {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: normal;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin: 0;
}

.sec-item__desc {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
    max-width: 540px;
    margin: 0;
}

/* Chips sous-services */
.sec-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
    padding: 0;
    margin: 0.4rem 0 0;
}

.sec-feature {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: var(--color-text-secondary);
    background: rgba(242, 142, 33, 0.05);
    border: 1px solid rgba(242, 142, 33, 0.14);
    border-radius: 99px;
    padding: 5px 14px;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.sec-feature:hover {
    background: rgba(242, 142, 33, 0.12);
    border-color: rgba(242, 142, 33, 0.32);
    color: var(--color-text-primary);
}

/* Bloc visuel à droite : grosse icône + halo */
.sec-item__visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}

.sec-item__visual::before {
    content: '';
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(242, 142, 33, 0.18) 0%, rgba(220, 38, 43, 0.06) 45%, transparent 70%);
    filter: blur(28px);
    z-index: -1;
    pointer-events: none;
}

.sec-item__icon {
    width: 75%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(242, 142, 33, 0.14), rgba(220, 38, 43, 0.05)),
        rgba(34, 54, 80, 0.45);
    border: 1px solid rgba(242, 142, 33, 0.22);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: var(--color-blue-primary);
    font-size: clamp(3rem, 5vw, 4.5rem);
    transition: transform 0.5s var(--ease-smooth);
}

.sec-item:hover .sec-item__icon {
    transform: translateY(-4px) rotate(-2deg);
}

@media (max-width: 900px) {
    .sec-list { padding: 0 1.2rem; margin-top: 2rem; }
    .sec-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sec-item--reverse { direction: ltr; }
    .sec-item + .sec-item {
        padding-top: 3.5rem;
        margin-top: 3.5rem;
    }
    .sec-item__visual {
        max-width: 220px;
        order: -1;
    }
    .sec-item__desc { max-width: 100%; }
}

/* ============================================================
   REVEAL ON SCROLL — apparition au défilement
   Activé par js/missions.js via IntersectionObserver.
   Usage : <element data-reveal="up|left|right|zoom|fade"
                    style="--reveal-delay:.2s">
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="zoom"]  { transform: translateY(20px) scale(0.94); }
[data-reveal="fade"]  { transform: none; }

/* On utilise une animation (et non une transition) : les transitions des
   éléments individuels (.recrut-perk { transition: ... }) ne peuvent pas
   l'écraser, donc le --reveal-delay reste fonctionnel. */
[data-reveal].is-visible {
    animation: revealIn 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0s) both;
}

@keyframes revealIn {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Sec-item : direction d'entrée selon la variante (alterné).
   L'animation revealIn animera depuis ce transform jusqu'à transform:none. */
.sec-item[data-reveal]          { transform: translateX(-50px); }
.sec-item--reverse[data-reveal] { transform: translateX(50px); }

/* Petites pastilles "features" : entrée plus discrète, plus rapide */
.sec-feature[data-reveal] {
    transform: translateY(10px) scale(0.94);
}
.sec-feature[data-reveal].is-visible {
    animation-duration: 0.55s;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================================
   SECTION AGENCES — 3 cartes "Nos cabinets"
   (déplacé depuis accueil.css pour usage partagé)
   ============================================================ */
.section-agences {
    background:
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(242, 142, 33, 0.06), transparent 70%),
        rgba(0, 0, 0, 0.10);
}

.agences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.agence-card {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: rgba(34, 54, 80, 0.4);
    border: 1px solid rgba(242, 142, 33, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.agence-name {
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 1.4rem;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.15;
}

.agence-info {
    margin-top: auto;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    text-align: left;
}

.agence-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 142, 33, 0.45);
    background: rgba(34, 54, 80, 0.55);
}

.agence-svg {
    width: 100%;
    max-width: 280px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.agence-svg svg {
    height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
    overflow: visible;
}

.agence-svg svg path {
    transition: fill 0.4s ease;
}

/* Variante "statique" (hors accueil) : pas de GSAP, on rend les paths
   visibles dès le chargement avec le rendu final de l'animation. */
.section-agences--static .agence-svg svg path {
    fill: rgba(242, 142, 33, 0.22);
    stroke: rgba(242, 142, 33, 0.7);
    stroke-width: 0.8;
    stroke-linejoin: round;
    stroke-linecap: round;
}

/* ill.svg — traits plus épais */
.section-agences--static .agence-card--illkirch .agence-svg svg path {
    stroke-width: 2.2 !important;
}

.agence-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-blue-primary);
    font-weight: 500;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.agence-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.agence-info li i {
    color: var(--color-blue-primary);
    font-size: 0.9rem;
    width: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    text-align: center;
}

.agence-info li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.agence-info li a:hover {
    color: var(--color-blue-primary);
}

.agence-soon {
    font-style: italic;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .agences-grid { grid-template-columns: repeat(2, 1fr); }
    .agence-card:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; width: 100%; }
}

@media (max-width: 720px) {
    .agences-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .agence-card:last-child { max-width: none; }
    .agence-card { padding: 2rem 1.5rem; }
}

/* ============================================================
   À PROPOS — INTRO "PROFILS MULTIDISCIPLINAIRES"
   ============================================================ */
.section-intro-team {
    position: relative;
    padding-bottom: 5rem;
    overflow: hidden;
}

/* Grille subtile en fond */
.ap-intro-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(242, 142, 33, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 142, 33, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* Orbe lumineuse derrière le titre */
.ap-intro-orb {
    position: absolute;
    top: 25%;
    left: 50%;
    width: 520px;
    height: 520px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(242, 142, 33, 0.18), transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.section-intro-team .section-inner { position: relative; z-index: 1; }

/* Titre split (mots animés en GSAP) */
.ap-split-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text-primary);
    line-height: 1.2;
    max-width: 800px;
    margin: 0;
}

.ap-split-title .ap-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.ap-split-title .ap-word__inner {
    display: inline-block;
    will-change: transform, opacity;
}

.intro-block {
    max-width: 800px;
    width: 100%;
    margin: 1rem auto 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    text-align: center;
}

/* ── 3 piliers d'expertise flottants ────────────────────── */
.ap-pillars-row {
    list-style: none;
    padding: 0;
    margin: 3rem 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    perspective: 1200px;
}

.ap-pillar {
    position: relative;
    padding: 2.2rem 1.4rem 1.6rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(34, 54, 80, 0.55), rgba(34, 54, 80, 0.30));
    border: 1px solid rgba(242, 142, 33, 0.18);
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: border-color 0.5s ease;
}

.ap-pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f28e21, transparent);
    opacity: 0.7;
}

.ap-pillar::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(242, 142, 33, 0.18), transparent 65%);
    filter: blur(35px);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.ap-pillar:hover {
    border-color: rgba(242, 142, 33, 0.45);
}

.ap-pillar__icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(242, 142, 33, 0.12);
    border: 1px solid rgba(242, 142, 33, 0.30);
    color: #f28e21;
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}

.ap-pillar__label {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 1.08rem;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.ap-pillar__hint {
    display: block;
    font-size: 0.72rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.75;
    position: relative;
    z-index: 1;
}

@media (max-width: 760px) {
    .ap-pillars-row { grid-template-columns: 1fr; }
}

/* ============================================================
   À PROPOS — "NOTRE TERRITOIRE" + carte SVG infographique
   ============================================================ */
.section-anchor {
    position: relative;
    background:
        radial-gradient(ellipse 60% 70% at 0% 50%, rgba(40, 91, 156, 0.06), transparent 70%),
        radial-gradient(ellipse 60% 70% at 100% 50%, rgba(220, 38, 43, 0.06), transparent 70%);
    padding-top: 4rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.ap-territory {
    display: grid;
    grid-template-columns: minmax(360px, 520px) minmax(300px, 1fr);
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 1180px;
    margin: 3rem auto 0;
    text-align: left;
}

.ap-map {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 26px;
    background:
        radial-gradient(ellipse 80% 80% at 55% 55%, rgba(242, 142, 33, 0.05), transparent 70%),
        rgba(34, 54, 80, 0.25);
    border: 1px solid rgba(242, 142, 33, 0.18);
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.ap-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(242, 142, 33, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 142, 33, 0.035) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 90%);
}

/* Outline France : pulse de glow au stroke */
.ap-france {
    filter: drop-shadow(0 0 12px rgba(242, 142, 33, 0.15));
}

.ap-map svg {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.ap-map-pin__pulse {
    transform-origin: center;
    transform-box: fill-box;
}

.ap-map-dots circle {
    animation: apMapDot 3.6s ease-in-out infinite;
}
.ap-map-dots circle:nth-child(2) { animation-delay: 0.5s; }
.ap-map-dots circle:nth-child(3) { animation-delay: 1.1s; }
.ap-map-dots circle:nth-child(4) { animation-delay: 1.6s; }
.ap-map-dots circle:nth-child(5) { animation-delay: 2.2s; }
.ap-map-dots circle:nth-child(6) { animation-delay: 2.8s; }

@keyframes apMapDot {
    0%, 100% { opacity: 0.2; }
    50%      { opacity: 1; }
}

.anchor-block {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 2.4rem 2.4rem 2.4rem 3rem;
    border-radius: 20px;
    background: rgba(34, 54, 80, 0.35);
    border: 1px solid rgba(242, 142, 33, 0.18);
    text-align: left;
    overflow: hidden;
}

.anchor-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    bottom: 1.2rem;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, #f28e21, var(--color-accent-red));
}

.anchor-block h3 {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--color-text-primary);
    margin: 0 0 0.9rem;
    line-height: 1.3;
}

.anchor-block p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 0.98rem;
}

/* ── Stats du territoire (counters animés) ──────────────── */
.ap-territory__stats {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.ap-territory__stats li {
    padding: 1rem 0.8rem;
    border-radius: 14px;
    background: rgba(34, 54, 80, 0.30);
    border: 1px solid rgba(242, 142, 33, 0.12);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ap-stat__value {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 1.7rem;
    line-height: 1;
    background: linear-gradient(135deg, #f28e21, var(--color-accent-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ap-stat__label {
    font-size: 0.72rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .ap-territory {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 600px;
    }
    .ap-map { max-width: 380px; }
    .ap-territory__stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
    .ap-territory__stats { grid-template-columns: 1fr; }
    .anchor-block { padding: 1.8rem 1.5rem 1.8rem 2rem; }
}

/* ============================================================
   ÉQUIPE SYNERGYZ — cartes membres style "Synergyz IA"
   (avatar circulaire, anneaux animés, glow pulsé, tag pill)
   ============================================================ */
.ap-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.8rem;
    width: 100%;
    margin-top: 3rem;
}

.ap-member-card {
    position: relative;
    padding: 2.6rem 1.6rem 1.8rem;
    border-radius: 22px;
    background: rgba(34, 54, 80, 0.30);
    border: 1px solid rgba(242, 142, 33, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.ap-member-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(242, 142, 33, 0.08), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.ap-member-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 142, 33, 0.40);
    background: rgba(34, 54, 80, 0.50);
}

/* ── Avatar : anneaux + glow + initiales ──────────────────── */
.ap-member-card__avatar {
    position: relative;
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    z-index: 1;
}

.ap-ring,
.ap-ring--2 {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(242, 142, 33, 0.22);
    animation: apMemRing 18s linear infinite;
    pointer-events: none;
}

.ap-ring--2 {
    inset: -22px;
    border-color: rgba(220, 38, 43, 0.10);
    border-style: dashed;
    animation: apMemRing 28s linear infinite reverse;
}

@keyframes apMemRing {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.ap-member-card__avatar-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(242, 142, 33, 0.22), rgba(220, 38, 43, 0.12));
    border: 2px solid rgba(242, 142, 33, 0.32);
    color: var(--color-text-primary);
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    z-index: 2;
}

.ap-member-card__avatar-glow {
    position: absolute;
    inset: -32px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 142, 33, 0.18), transparent 70%);
    z-index: 0;
    animation: apMemGlow 4.4s ease-in-out infinite;
    pointer-events: none;
}

.ap-member-card__avatar-photo {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(242, 142, 33, 0.32);
    z-index: 2;
    display: block;
}

@keyframes apMemGlow {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.10); }
}

/* ── Tag (rôle court) ─────────────────────────────────────── */
.ap-member-card__tag {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242, 142, 33, 0.95);
    background: rgba(242, 142, 33, 0.08);
    border: 1px solid rgba(242, 142, 33, 0.22);
    border-radius: 99px;
    padding: 5px 14px;
    font-weight: 500;
}

.ap-member-card__tag i { font-size: 0.72rem; }

/* ── Nom + rôle ───────────────────────────────────────────── */
.ap-member-card__name {
    position: relative;
    z-index: 1;
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.25;
    font-weight: normal;
}

.ap-member-card__name-last {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ap-member-card__role {
    position: relative;
    z-index: 1;
    font-size: 0.86rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
    font-style: italic;
    margin: 0;
    max-width: 240px;
}


@media (prefers-reduced-motion: reduce) {
    .ap-ring,
    .ap-ring--2,
    .ap-member-card__avatar-glow {
        animation: none !important;
    }
}

@media (max-width: 640px) {
    .ap-team-grid { grid-template-columns: 1fr; }
    .anchor-block { padding: 1.8rem 1.5rem 1.8rem 2rem; }
}

/* ============================================================
   RECRUTEMENTS — perks, liste d'offres (accordion), spontanée
   ============================================================ */

/* ── 4 perks : bandeau slim juste sous le hero ──────────── */
.section-recrut-perks {
    position: relative;
    padding: 1.5rem 2rem 1.5rem;
    background:
        radial-gradient(ellipse 50% 60% at 100% 20%, rgba(242, 142, 33, 0.06), transparent 70%);
}
.section-recrut-perks .section-inner {
    padding: 0;
    gap: 0;
}

.recrut-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    width: 100%;
}

.recrut-perk {
    position: relative;
    padding: 1.8rem 1.4rem;
    border-radius: 18px;
    background: rgba(34, 54, 80, 0.30);
    border: 1px solid rgba(242, 142, 33, 0.15);
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.recrut-perk:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 142, 33, 0.40);
    background: rgba(34, 54, 80, 0.50);
}

.recrut-perk__icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(242, 142, 33, 0.12);
    border: 1px solid rgba(242, 142, 33, 0.25);
    color: #f28e21;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.recrut-perk h3 {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 1.05rem;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.recrut-perk p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
    margin: 0;
}

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

/* ── Liste des offres (accordion) ───────────────────────── */
.section-recrut-offres {
    padding-top: 3rem;
    background:
        radial-gradient(ellipse 60% 60% at 0% 100%, rgba(40, 91, 156, 0.05), transparent 70%);
}

.recrut-list {
    list-style: none;
    margin: 2.8rem 0 0;
    padding: 0;
    width: 100%;
    max-width: 920px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.recrut-card {
    border-radius: 20px;
    background: rgba(34, 54, 80, 0.32);
    border: 1px solid rgba(242, 142, 33, 0.18);
    overflow: hidden;
    transition: border-color 0.4s ease, background 0.4s ease;
}
.recrut-card:hover {
    border-color: rgba(242, 142, 33, 0.40);
}
.recrut-card.is-open {
    background: rgba(34, 54, 80, 0.45);
    border-color: rgba(242, 142, 33, 0.50);
}

/* Bouton header (toggle) */
.recrut-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    padding: 1.6rem 1.8rem;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    transition: background 0.3s ease;
}
.recrut-card__head:hover { background: rgba(242, 142, 33, 0.04); }

.recrut-card__head-left {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-width: 0;
}

.recrut-card__title {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.25;
    font-weight: normal;
}

.recrut-card__genre {
    font-size: 0.8em;
    color: var(--color-text-secondary);
    margin-left: 0.3rem;
    opacity: 0.7;
}

.recrut-card__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
}

.recrut-card__meta li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.04em;
}
.recrut-card__meta li i {
    color: #f28e21;
    font-size: 0.78rem;
    width: 14px;
    text-align: center;
}

.recrut-card__chevron {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(242, 142, 33, 0.08);
    border: 1px solid rgba(242, 142, 33, 0.25);
    color: #f28e21;
    font-size: 0.85rem;
    transition: transform 0.4s var(--ease-smooth, cubic-bezier(0.22, 0.61, 0.36, 1)), background 0.3s ease;
}
.recrut-card.is-open .recrut-card__chevron {
    transform: rotate(180deg);
    background: rgba(242, 142, 33, 0.18);
}

/* Body collapsible */
.recrut-card__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.recrut-card.is-open .recrut-card__body {
    max-height: 1200px;
}

.recrut-card__body-inner {
    padding: 0.4rem 1.8rem 1.8rem;
    border-top: 1px dashed rgba(242, 142, 33, 0.15);
    margin-top: 0.4rem;
}

.recrut-card__intro {
    margin: 1.2rem 0 1.4rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.recrut-card__h4 {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    margin: 1.4rem 0 0.8rem;
    line-height: 1.3;
    letter-spacing: 0.04em;
}

.recrut-card__missions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.recrut-card__missions li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--color-text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}
.recrut-card__missions li i {
    color: #f28e21;
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.recrut-card__profil {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.recrut-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(242, 142, 33, 0.12);
}

.recrut-card__date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}
.recrut-card__date i { font-size: 0.78rem; }

.recrut-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f28e21, #f9b233);
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    box-shadow: 0 4px 18px rgba(242, 142, 33, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recrut-card__cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(242, 142, 33, 0.45);
}
.recrut-card__cta i { font-size: 0.78rem; }

@media (max-width: 640px) {
    .recrut-card__head { padding: 1.3rem 1.3rem; }
    .recrut-card__body-inner { padding: 0.4rem 1.3rem 1.4rem; }
    .recrut-card__chevron { width: 34px; height: 34px; }
    .recrut-card__footer { flex-direction: column; align-items: flex-start; }
    .recrut-card__cta { width: 100%; justify-content: center; }
}

/* État vide */
.recrut-empty {
    margin-top: 2.8rem;
    padding: 2.5rem;
    border-radius: 18px;
    background: rgba(34, 54, 80, 0.30);
    border: 1px dashed rgba(242, 142, 33, 0.30);
    text-align: center;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ── Candidature spontanée ──────────────────────────────── */
.section-recrut-spontanee {
    padding-top: 2rem;
}

.recrut-spontanee {
    width: 100%;
    max-width: 920px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2.2rem 2.4rem;
    border-radius: 22px;
    background:
        radial-gradient(ellipse 80% 100% at 0% 50%, rgba(242, 142, 33, 0.10), transparent 70%),
        rgba(34, 54, 80, 0.40);
    border: 1px solid rgba(242, 142, 33, 0.22);
    position: relative;
    overflow: hidden;
}
.recrut-spontanee::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(242, 142, 33, 0.10), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}

.recrut-spontanee__icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(242, 142, 33, 0.15);
    border: 1px solid rgba(242, 142, 33, 0.35);
    color: #f28e21;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.recrut-spontanee__content {
    position: relative;
    z-index: 1;
}

.recrut-spontanee__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f28e21;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.recrut-spontanee h3 {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-text-primary);
    margin: 0 0 0.6rem;
    line-height: 1.25;
}

.recrut-spontanee p {
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin: 0;
    font-size: 0.92rem;
}

.recrut-spontanee__actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.recrut-spontanee__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f28e21, #f9b233);
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    box-shadow: 0 4px 18px rgba(242, 142, 33, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}
.recrut-spontanee__cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(242, 142, 33, 0.45);
}

.recrut-spontanee__email {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

@media (max-width: 760px) {
    .recrut-spontanee {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.4rem;
        padding: 2rem 1.5rem;
    }
    .recrut-spontanee__icon { margin: 0 auto; }
    .recrut-spontanee__actions { align-items: center; }
}

/* ============================================================
   CONTACT — map animée + grid form/info
   ============================================================ */

/* ── Section map ─────────────────────────────────────── */
.section-contact-map {
    padding: 3rem 2rem 1.5rem;
}
.section-contact-map .section-inner { padding: 0; gap: 0; }

/* @property pour la rotation du border conic-gradient */
@property --map-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes mapBorderSpin {
    to { --map-angle: 360deg; }
}
@keyframes mapGlowPulse {
    0%, 100% { opacity: 0.6; }
    50%      { opacity: 1; }
}

.contact-map-wrap {
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 22px;
}

/* Contour animé via conic-gradient + mask */
.contact-map-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: conic-gradient(
        from var(--map-angle),
        transparent 0%,
        transparent 55%,
        rgba(242, 142, 33, 0.95) 65%,
        rgba(220, 38, 43, 0.75) 72%,
        rgba(242, 142, 33, 0.95) 80%,
        transparent 88%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: mapBorderSpin 5s linear infinite;
    pointer-events: none;
    z-index: 2;
}

/* Halo flou derrière le contour */
.contact-map-wrap::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 28px;
    background: conic-gradient(
        from var(--map-angle),
        transparent 0%,
        transparent 55%,
        rgba(242, 142, 33, 0.30) 65%,
        rgba(220, 38, 43, 0.20) 72%,
        rgba(242, 142, 33, 0.30) 80%,
        transparent 88%,
        transparent 100%
    );
    filter: blur(18px);
    animation: mapBorderSpin 5s linear infinite;
    z-index: -1;
    pointer-events: none;
}

.contact-map-wrap > * {
    position: relative;
    z-index: 1;
}

.contact-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #060e18;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    /* Filtre dark map : inversion + rotation teinte */
    filter: invert(1) hue-rotate(180deg) saturate(0.75) brightness(0.82) contrast(1.05);
}

.contact-map__overlay-top,
.contact-map__overlay-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 1;
}
.contact-map__overlay-top {
    top: 0;
    background: linear-gradient(to bottom, var(--color-bg-base, #111D2C), transparent);
}
.contact-map__overlay-bottom {
    bottom: 0;
    background: linear-gradient(to top, var(--color-bg-base, #111D2C), transparent);
}

.contact-map__label {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 99px;
    background: rgba(11, 22, 35, 0.88);
    border: 1px solid rgba(242, 142, 33, 0.30);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: var(--color-text-secondary);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(242, 142, 33, 0.10);
    animation: mapGlowPulse 3s ease-in-out infinite;
}
.contact-map__label i {
    color: #f28e21;
    font-size: 0.78rem;
}

/* ── Section formulaire + infos ──────────────────────── */
.section-contact {
    padding-top: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    text-align: left;
}

/* Formulaire */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.form-group label {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-select {
    padding: 12px 16px;
    background: rgba(242, 142, 33, 0.04);
    border: 1px solid rgba(242, 142, 33, 0.15);
    border-radius: 12px;
    color: var(--color-text-primary);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.55;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}
.form-group input:focus,
.form-group textarea:focus,
.form-select:focus {
    border-color: rgba(242, 142, 33, 0.50);
    background: rgba(242, 142, 33, 0.07);
    box-shadow: 0 0 0 3px rgba(242, 142, 33, 0.10);
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23f28e21' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}
.form-select option {
    background: #111D2C;
    color: var(--color-text-primary);
}

/* RGPD */
.form-rgpd {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(34, 54, 80, 0.30);
    border: 1px solid rgba(242, 142, 33, 0.10);
    cursor: pointer;
}
.form-rgpd input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #f28e21;
    flex-shrink: 0;
    cursor: pointer;
}
.form-rgpd span {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
}
.form-rgpd a {
    color: #f28e21;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Feedback */
.form-feedback {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
}
.form-feedback--success {
    background: rgba(50, 180, 100, 0.12);
    border: 1px solid rgba(50, 180, 100, 0.40);
    color: #6cd99a;
}
.form-feedback--error {
    background: rgba(220, 38, 43, 0.12);
    border: 1px solid rgba(220, 38, 43, 0.40);
    color: #ff8a8e;
}

/* Submit */
.contact-btn {
    margin-top: 0.4rem;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f28e21, #f9b233);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 400;
    font-size: 0.95rem;
    box-shadow: 0 6px 22px rgba(242, 142, 33, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.contact-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(242, 142, 33, 0.45);
}
.contact-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.contact-btn i { font-size: 0.82rem; }

/* Infos panel */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(242, 142, 33, 0.15);
    background: rgba(34, 54, 80, 0.30);
    position: sticky;
    top: 120px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(242, 142, 33, 0.10);
    border: 1px solid rgba(242, 142, 33, 0.25);
    display: grid;
    place-items: center;
    color: #f28e21;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin: 0 0 0.3rem;
    font-weight: 500;
}

.contact-info-value {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
    margin: 0;
}

.contact-info-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-info-link:hover {
    color: #f28e21;
}

/* Bloc 3 cabinets */
.contact-info-cabinets {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(242, 142, 33, 0.12);
}

.contact-info-label--big {
    font-size: 0.74rem !important;
    color: #f28e21 !important;
    margin-bottom: 0.4rem !important;
}

.contact-info-cabinet {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-cabinet__name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    margin: 0 0 0.3rem;
    line-height: 1.25;
    font-weight: normal;
}

.contact-info-cabinet__tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 99px;
    background: rgba(242, 142, 33, 0.10);
    border: 1px solid rgba(242, 142, 33, 0.25);
    color: #f28e21;
    font-family: 'Roboto', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-weight: 500;
}

.contact-info-cabinet__tag--soon {
    background: rgba(220, 38, 43, 0.10);
    border-color: rgba(220, 38, 43, 0.30);
    color: #ff8a8e;
}

.contact-info-cabinet__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.4rem;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-info-cabinet__phone i {
    font-size: 0.72rem;
    color: #f28e21;
}
.contact-info-cabinet__phone:hover {
    color: #f28e21;
}

.contact-info-cabinet--soon {
    opacity: 0.75;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-info { position: static; }
}

@media (max-width: 768px) {
    .contact-map iframe { height: 300px; }
    .contact-map__label { font-size: 0.68rem; padding: 6px 14px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-btn { width: 100%; justify-content: center; }
    .contact-info { padding: 1.5rem; }
}

/* ============================================================
   PAGES LÉGALES (mentions, confidentialité, cookies)
   ============================================================ */
.legal-section {
    padding: 4rem 0 6rem;
}

.legal-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.legal-block {
    border-left: 2px solid rgba(242, 142, 33, 0.25);
    padding-left: 1.75rem;
}

.legal-title {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 1.15rem;
    font-weight: normal;
    color: var(--color-text-primary);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.legal-block h3 {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 0.95rem;
    color: #f28e21;
    margin: 1.4rem 0 0.6rem;
    line-height: 1.3;
    font-weight: normal;
}

.legal-block p {
    font-size: 0.93rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-list li {
    font-size: 0.91rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    padding-left: 1rem;
    position: relative;
}

.legal-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: rgba(242, 142, 33, 0.45);
}

.legal-list li span:first-child {
    color: var(--color-text-primary);
    font-weight: 500;
    margin-right: 0.3rem;
}

.legal-block a {
    color: #f28e21;
    text-decoration: none;
    border-bottom: 1px solid rgba(242, 142, 33, 0.25);
    transition: border-color 0.2s, color 0.2s;
}

.legal-block a:hover {
    color: #f9b233;
    border-color: rgba(242, 142, 33, 0.7);
}

.legal-block strong {
    color: var(--color-text-primary);
    font-weight: 500;
}

.legal-update {
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.30) !important;
    margin-top: 1.6rem !important;
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-inner { padding: 0 1.5rem; gap: 2rem; }
    .legal-block { padding-left: 1.25rem; }
    .legal-title { font-size: 1rem; }
}

/* ── Tableau cookies (page cookies.php) ────────────────── */
.cookie-table-wrap {
    overflow-x: auto;
    margin: 1rem 0;
    border-radius: 12px;
    border: 1px solid rgba(242, 142, 33, 0.15);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.83rem;
}

.cookie-table th {
    background: rgba(242, 142, 33, 0.08);
    color: var(--color-text-primary);
    font-weight: 500;
    text-align: left;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(242, 142, 33, 0.15);
}

.cookie-table td {
    padding: 0.75rem 1rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: top;
    line-height: 1.55;
}

.cookie-table tbody tr:last-child td { border-bottom: none; }
.cookie-table td strong { color: var(--color-text-primary); }

/* ── Bloc préférences (page cookies.php) ──────────────── */
.cookie-pref-block {
    margin-top: 1.25rem;
    padding: 1.4rem 1.5rem;
    border-radius: 14px;
    background: rgba(34, 54, 80, 0.30);
    border: 1px solid rgba(242, 142, 33, 0.15);
}

.cookie-pref-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-pref-row strong {
    color: var(--color-text-primary);
    display: block;
    margin-bottom: 0.2rem;
}

.cookie-pref-row small {
    color: rgba(240, 246, 255, 0.6);
    font-size: 0.78rem;
}

.cookie-pref-actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-pref-status {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: #f28e21;
}

.cookie-pref-divider {
    border: none;
    border-top: 1px solid rgba(242, 142, 33, 0.10);
    margin: 1.2rem 0;
}

/* ============================================================
   MODALE DE CANDIDATURE — overlay + panneau + formulaire
   ============================================================ */
.postuler-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.postuler-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.postuler-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 22, 35, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.postuler-modal__panel {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(34, 54, 80, 0.98), rgba(17, 29, 44, 0.98));
    border: 1px solid rgba(242, 142, 33, 0.30);
    border-radius: 24px;
    padding: 2.4rem 2.4rem 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.postuler-modal[aria-hidden="false"] .postuler-modal__panel {
    transform: translateY(0) scale(1);
}

.postuler-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--color-text-secondary);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    z-index: 2;
}
.postuler-modal__close:hover {
    background: rgba(242, 142, 33, 0.15);
    border-color: rgba(242, 142, 33, 0.40);
    color: #f28e21;
}

.postuler-modal__header {
    margin-bottom: 1.6rem;
    padding-right: 2rem;
}

.postuler-modal__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f28e21;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.postuler-modal__header h3 {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    color: var(--color-text-primary);
    margin: 0 0 0.6rem;
    line-height: 1.3;
    font-weight: normal;
}
.postuler-modal__header h3 span[data-postuler-titre] {
    background: linear-gradient(135deg, #f28e21, #f9b233);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.postuler-modal__header p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

/* ── Formulaire ─────────────────────────────────────────── */
.postuler-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.postuler-form__row {
    display: grid;
    gap: 1rem;
}
.postuler-form__row--2 { grid-template-columns: 1fr 1fr; }
.postuler-form__row--3 { grid-template-columns: auto 1fr 1fr; }

.postuler-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}
.postuler-form__field--small { width: 90px; }

.postuler-form__label {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.04em;
    font-weight: 400;
}

.postuler-form__hint {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-left: 4px;
}

.postuler-form input[type="text"],
.postuler-form input[type="email"],
.postuler-form input[type="tel"],
.postuler-form select,
.postuler-form textarea {
    padding: 11px 14px;
    border-radius: 10px;
    background: rgba(11, 22, 35, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--color-text-primary);
    font-family: 'Roboto', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    transition: border-color 0.3s ease, background 0.3s ease;
    width: 100%;
}
.postuler-form textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
}
.postuler-form input:focus,
.postuler-form select:focus,
.postuler-form textarea:focus {
    outline: none;
    border-color: rgba(242, 142, 33, 0.50);
    background: rgba(11, 22, 35, 0.75);
}
.postuler-form input::placeholder,
.postuler-form textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* Upload file custom */
.postuler-form__field--file input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.postuler-form__file {
    position: relative;
    cursor: pointer;
    display: block;
}
.postuler-form__file-text {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    background: rgba(11, 22, 35, 0.55);
    border: 1px dashed rgba(242, 142, 33, 0.30);
    color: var(--color-text-secondary);
    font-size: 0.88rem;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.postuler-form__file:hover .postuler-form__file-text {
    border-color: rgba(242, 142, 33, 0.55);
    background: rgba(242, 142, 33, 0.05);
    color: var(--color-text-primary);
}
.postuler-form__file i {
    color: #f28e21;
    font-size: 0.85rem;
}
.postuler-form__file.has-file .postuler-form__file-text {
    border-style: solid;
    border-color: rgba(242, 142, 33, 0.50);
    color: var(--color-text-primary);
}

/* RGPD checkbox */
.postuler-form__rgpd {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(11, 22, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    margin-top: 0.4rem;
}
.postuler-form__rgpd input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #f28e21;
    flex-shrink: 0;
    cursor: pointer;
}
.postuler-form__rgpd span {
    font-size: 0.83rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
}
.postuler-form__rgpd a {
    color: #f28e21;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Feedback */
.postuler-form__feedback {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-top: 0.4rem;
}
.postuler-form__feedback--success {
    background: rgba(50, 180, 100, 0.12);
    border: 1px solid rgba(50, 180, 100, 0.40);
    color: #6cd99a;
}
.postuler-form__feedback--error {
    background: rgba(220, 38, 43, 0.12);
    border: 1px solid rgba(220, 38, 43, 0.40);
    color: #ff8a8e;
}

/* Actions */
.postuler-form__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 0.6rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.postuler-form__cancel {
    padding: 11px 20px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--color-text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.postuler-form__cancel:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.20);
}

.postuler-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f28e21, #f9b233);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.92rem;
    font-family: inherit;
    font-weight: 400;
    box-shadow: 0 4px 18px rgba(242, 142, 33, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.postuler-form__submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(242, 142, 33, 0.45);
}
.postuler-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .postuler-modal { padding: 1rem 0.6rem; }
    .postuler-modal__panel { padding: 1.8rem 1.4rem 1.4rem; max-height: 95vh; }
    .postuler-form__row--2,
    .postuler-form__row--3 { grid-template-columns: 1fr; }
    .postuler-form__field--small { width: 100%; }
    .postuler-form__actions { flex-direction: column-reverse; align-items: stretch; }
    .postuler-form__cancel,
    .postuler-form__submit { width: 100%; justify-content: center; }
}

/* ============================================================
   BLOG — liste + featured + pagination + article single
   ============================================================ */
.section-blog .section-inner { padding-top: 1.5rem; }

/* ── FEATURED (article à la une, page 1) ─────────────────── */
.blog-featured {
    width: 100%;
    margin-bottom: 2.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(34, 54, 80, 0.55), rgba(34, 54, 80, 0.30));
    border: 1px solid rgba(242, 142, 33, 0.30);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
}
.blog-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f28e21, #dc262b, transparent);
    opacity: 0.7;
    z-index: 1;
}
.blog-featured:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 142, 33, 0.55);
}

.blog-featured__link {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    text-decoration: none;
    color: inherit;
    align-items: stretch;
}

.blog-featured__media {
    position: relative;
    min-height: 320px;
    background: rgba(11, 22, 35, 0.5);
    overflow: hidden;
}
.blog-featured__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.blog-featured:hover .blog-featured__media img { transform: scale(1.04); }

.blog-featured__fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(242, 142, 33, 0.40);
    font-size: 4rem;
    background: linear-gradient(135deg, rgba(242, 142, 33, 0.08), rgba(220, 38, 43, 0.05));
}

.blog-featured__badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 99px;
    background: rgba(242, 142, 33, 0.20);
    border: 1px solid rgba(242, 142, 33, 0.50);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 4px 18px rgba(242, 142, 33, 0.35);
}
.blog-featured__badge i {
    font-size: 0.72rem;
    color: #f9b233;
}

.blog-featured__body {
    padding: 2.4rem 2.6rem 2.4rem 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.blog-featured__title {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.2;
    font-weight: normal;
}

.blog-featured__excerpt {
    font-size: 0.98rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.blog-featured__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.5rem;
    padding: 11px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f28e21, #f9b233);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 400;
    box-shadow: 0 4px 18px rgba(242, 142, 33, 0.30);
    transition: gap 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}
.blog-featured:hover .blog-featured__cta {
    gap: 14px;
    box-shadow: 0 8px 24px rgba(242, 142, 33, 0.45);
}
.blog-featured__cta i { font-size: 0.78rem; }

@media (max-width: 900px) {
    .blog-featured__link { grid-template-columns: 1fr; }
    .blog-featured__media { min-height: 220px; aspect-ratio: 16 / 9; }
    .blog-featured__body { padding: 1.8rem 1.6rem; }
}

/* ── PAGINATION ──────────────────────────────────────────── */
.blog-pagination {
    margin: 3rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 99px;
    background: rgba(34, 54, 80, 0.30);
    border: 1px solid rgba(242, 142, 33, 0.20);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.84rem;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}
.blog-pagination__btn:hover {
    background: rgba(242, 142, 33, 0.10);
    border-color: rgba(242, 142, 33, 0.50);
    color: #f28e21;
    transform: translateY(-1px);
}
.blog-pagination__btn.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
.blog-pagination__btn i { font-size: 0.72rem; }

.blog-pagination__pages {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 4px;
}
.blog-pagination__pages li { line-height: 1; }

.blog-pagination__page {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(242, 142, 33, 0.15);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.86rem;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.blog-pagination__page:hover {
    background: rgba(242, 142, 33, 0.08);
    border-color: rgba(242, 142, 33, 0.40);
    color: #f28e21;
}
.blog-pagination__page.is-current {
    background: linear-gradient(135deg, #f28e21, #f9b233);
    border-color: #f28e21;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(242, 142, 33, 0.35);
    cursor: default;
}

.blog-pagination__count {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}

@media (max-width: 540px) {
    .blog-pagination__btn span { display: none; }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.6rem;
    width: 100%;
    margin-top: 2.5rem;
}

.blog-card {
    border-radius: 20px;
    background: rgba(34, 54, 80, 0.30);
    border: 1px solid rgba(242, 142, 33, 0.15);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 142, 33, 0.45);
    background: rgba(34, 54, 80, 0.50);
}

.blog-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card__media {
    aspect-ratio: 16 / 9;
    background: rgba(11, 22, 35, 0.5);
    overflow: hidden;
    border-bottom: 1px solid rgba(242, 142, 33, 0.10);
    position: relative;
}
.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card__media img { transform: scale(1.05); }

.blog-card__media-fallback {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    color: rgba(242, 142, 33, 0.35);
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(242, 142, 33, 0.06), rgba(220, 38, 43, 0.04));
}

.blog-card__body {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex: 1;
}

.blog-card__date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}
.blog-card__date i { color: #f28e21; font-size: 0.72rem; }

.blog-card__title {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.3;
    font-weight: normal;
}

.blog-card__excerpt {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.blog-card__tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.blog-card__tags li {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 99px;
    background: rgba(242, 142, 33, 0.08);
    border: 1px solid rgba(242, 142, 33, 0.20);
    color: rgba(242, 142, 33, 0.95);
    letter-spacing: 0.04em;
}

.blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #f28e21;
    font-size: 0.85rem;
    transition: gap 0.3s ease;
}
.blog-card:hover .blog-card__more { gap: 12px; }
.blog-card__more i { font-size: 0.78rem; }

.section-blog--related { padding-top: 2rem; }

/* ── Article single ────────────────────────────────────── */
.article-hero { padding-bottom: 4rem; }
.article-hero-inner { gap: 1rem; }

.article-back {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-secondary);
    font-size: 0.78rem;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    margin-bottom: 0.6rem;
}
.article-back:hover {
    background: rgba(242, 142, 33, 0.10);
    border-color: rgba(242, 142, 33, 0.35);
    color: #f28e21;
}
.article-back i { font-size: 0.72rem; }

.article-tags {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.article-tags li {
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 99px;
    background: rgba(242, 142, 33, 0.08);
    border: 1px solid rgba(242, 142, 33, 0.25);
    color: rgba(242, 142, 33, 0.95);
}

.section-article {
    padding: 3rem 2rem 5rem;
}

.article-inner {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-media {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(242, 142, 33, 0.20);
    aspect-ratio: 16 / 9;
    background: rgba(11, 22, 35, 0.5);
}
.article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-body {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}
.article-body p {
    margin: 0 0 1.2rem;
}
.article-body p:last-child { margin-bottom: 0; }

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    color: var(--color-text-primary);
    line-height: 1.25;
    margin: 2rem 0 0.8rem;
    font-weight: normal;
}
.article-body h1 { font-size: 1.7rem; }
.article-body h2 { font-size: 1.4rem; }
.article-body h3 { font-size: 1.2rem; }
.article-body h4 { font-size: 1.05rem; }
.article-body h1:first-child,
.article-body h2:first-child,
.article-body h3:first-child { margin-top: 0; }

.article-body strong,
.article-body b {
    color: var(--color-text-primary);
    font-weight: 500;
}
.article-body em,
.article-body i { font-style: italic; }
.article-body u { text-decoration: underline; text-underline-offset: 3px; }

.article-body a {
    color: #f28e21;
    text-decoration: none;
    border-bottom: 1px solid rgba(242, 142, 33, 0.30);
    transition: border-color 0.2s, color 0.2s;
}
.article-body a:hover {
    color: #f9b233;
    border-bottom-color: rgba(242, 142, 33, 0.7);
}

.article-body ul,
.article-body ol {
    margin: 0 0 1.2rem;
    padding-left: 1.6rem;
}
.article-body li { margin-bottom: 0.4rem; }
.article-body ul li::marker { color: #f28e21; }
.article-body ol li::marker { color: #f28e21; font-weight: 500; }

.article-body blockquote {
    margin: 1.6rem 0;
    padding: 1rem 1.4rem;
    border-left: 3px solid #f28e21;
    background: rgba(242, 142, 33, 0.05);
    border-radius: 0 12px 12px 0;
    color: var(--color-text-primary);
    font-style: italic;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.2rem 0;
    display: block;
}

.article-body code {
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(11, 22, 35, 0.6);
    border: 1px solid rgba(242, 142, 33, 0.20);
    font-size: 0.88em;
    color: #f9b233;
}

.article-body hr {
    border: none;
    border-top: 1px solid rgba(242, 142, 33, 0.20);
    margin: 2rem 0;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(242, 142, 33, 0.15);
}

.article-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f28e21, #f9b233);
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 400;
    box-shadow: 0 4px 18px rgba(242, 142, 33, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 142, 33, 0.45);
}

.article-back-bottom {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.article-back-bottom:hover { color: #f28e21; }

@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
    .article-footer { flex-direction: column-reverse; align-items: stretch; }
    .article-cta { justify-content: center; }
}

/* ============================================================
   ESPACE CLIENT — page de connexion (démo)
   ============================================================ */
.ec-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 11rem 1.5rem 5rem;
    overflow: hidden;
}

@media (max-width: 900px) {
    .ec-section { padding: 8rem 1rem 3rem; }
}


/* Background : grille + 2 glows */
.ec-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.ec-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(242, 142, 33, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 142, 33, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 25%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 25%, transparent 80%);
}
.ec-bg-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 720px;
    height: 720px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(242, 142, 33, 0.18), transparent 65%);
    filter: blur(80px);
}
.ec-bg-glow--alt {
    top: 70%;
    left: 80%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(220, 38, 43, 0.10), transparent 65%);
}

/* Carte de login */
.ec-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    padding: 3rem 2.6rem 2rem;
    border-radius: 26px;
    background: rgba(34, 54, 80, 0.55);
    border: 1px solid rgba(242, 142, 33, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    overflow: hidden;
}
.ec-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f28e21, transparent);
    opacity: 0.7;
}

/* Pill cadenas */
.ec-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 14px;
    border-radius: 99px;
    background: rgba(242, 142, 33, 0.10);
    border: 1px solid rgba(242, 142, 33, 0.30);
    color: #f28e21;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
}
.ec-pill i { font-size: 0.78rem; }

/* Titre + lead */
.ec-title {
    font-family: 'Aquatico NoAccentsCaps', 'Aquatico', sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    color: var(--color-text-primary);
    margin: 1.2rem 0 0.9rem;
    line-height: 1.15;
    font-weight: normal;
}
.ec-title-accent {
    background: linear-gradient(135deg, #f28e21, #dc262b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ec-lead {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin: 0 0 2rem;
}

/* Form */
.ec-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.ec-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ec-field__label {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.04em;
    font-weight: 400;
}

.ec-field__wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.ec-field__wrap > i {
    position: absolute;
    left: 14px;
    color: rgba(242, 142, 33, 0.7);
    font-size: 0.85rem;
    pointer-events: none;
}
.ec-field__wrap input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border-radius: 12px;
    background: rgba(11, 22, 35, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--color-text-primary);
    font-family: 'Roboto', sans-serif;
    font-size: 0.93rem;
    font-weight: 300;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.ec-field__wrap input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}
.ec-field__wrap input:focus {
    outline: none;
    border-color: rgba(242, 142, 33, 0.55);
    background: rgba(11, 22, 35, 0.85);
}

.ec-field__toggle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: transparent;
    border: 0;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.ec-field__toggle:hover {
    color: #f28e21;
    background: rgba(242, 142, 33, 0.08);
}

/* Remember + forgot */
.ec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.2rem;
    flex-wrap: wrap;
}
.ec-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    cursor: pointer;
}
.ec-remember input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #f28e21;
    cursor: pointer;
}
.ec-forgot {
    font-size: 0.82rem;
    color: #f28e21;
    text-decoration: none;
    border-bottom: 1px solid rgba(242, 142, 33, 0.25);
    transition: color 0.2s, border-color 0.2s;
}
.ec-forgot:hover {
    color: #f9b233;
    border-bottom-color: rgba(242, 142, 33, 0.6);
}

/* Submit */
.ec-submit {
    margin-top: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f28e21, #f9b233);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 400;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 22px rgba(242, 142, 33, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.ec-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(242, 142, 33, 0.45);
}
.ec-submit:hover:not(:disabled) .ec-submit__arrow {
    transform: translateX(4px);
}
.ec-submit__arrow {
    font-size: 0.82rem;
    transition: transform 0.3s ease;
}
.ec-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Feedback */
.ec-feedback {
    margin-top: 0.6rem;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ec-feedback--info {
    background: rgba(242, 142, 33, 0.10);
    border: 1px solid rgba(242, 142, 33, 0.35);
    color: #f9b233;
}
.ec-feedback i { font-size: 0.95rem; flex-shrink: 0; }

/* Divider */
.ec-divider {
    margin: 2rem 0 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.ec-divider::before,
.ec-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(242, 142, 33, 0.15);
}

/* Help + démo note */
.ec-help {
    font-size: 0.86rem;
    color: var(--color-text-secondary);
    margin: 0 0 1.2rem;
    text-align: center;
}
.ec-help a {
    color: #f28e21;
    text-decoration: none;
    border-bottom: 1px solid rgba(242, 142, 33, 0.25);
    transition: border-color 0.2s, color 0.2s;
}
.ec-help a:hover {
    color: #f9b233;
    border-bottom-color: rgba(242, 142, 33, 0.6);
}

.ec-demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 14px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.10);
    color: var(--color-text-muted);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
}
.ec-demo i { color: rgba(242, 142, 33, 0.7); }


@media (max-width: 540px) {
    .ec-section { padding: 6rem 1rem 3rem; }
    .ec-card { padding: 2.4rem 1.6rem 1.8rem; }
    .ec-row { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}
