@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800&family=Poppins:wght@600;700;800&display=swap');

:root {
    --z-ivory: #ffffff;
    --z-navy: #1A2B4C;
    --z-navy-2: #0f1d36;
    --navy-pro: #1A2B4C;
    --z-green: #2ECC71;
    --z-green-dark: #25a85d;
    --green-pro: #2ECC71;
    --z-text: #1A2B4C;
    --z-muted: #5b6478;
    --z-line: #e8ecf1;
    --z-soft: #f4f7f6;
    --tech-gray: #f4f7f6;
    --shadow: 0 24px 70px rgba(26, 43, 76, .12);
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    margin: 0;
    font-family: Inter, Lato, system-ui, -apple-system, sans-serif;
    color: var(--z-text);
    background: var(--z-ivory);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-container {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}

.site-shell {
    position: relative;
    z-index: 0;
    overflow-x: hidden;
    max-width: 100%;
}
.site-shell > main {
    position: relative;
    z-index: 1;
}

/* Header styles handled in css_header.css (glassmorphism) */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 15px 26px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.15;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: .01em;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary {
    color: #fff;
    background: var(--green-pro);
    box-shadow: 0 14px 30px rgba(46, 204, 113, .3);
}
.btn--primary:hover {
    background: var(--z-green-dark);
    color: #fff;
    box-shadow: 0 18px 36px rgba(46, 204, 113, .38);
}
.btn--ghost {
    color: var(--navy-pro);
    background: #fff;
    border: 1.5px solid var(--green-pro);
    box-shadow: 0 8px 22px rgba(46, 204, 113, .14);
}
.btn--ghost:hover {
    color: #fff;
    background: var(--green-pro);
    border-color: var(--green-pro);
    box-shadow: 0 14px 28px rgba(46, 204, 113, .28);
}
.btn--navy {
    color: #fff;
    background: var(--green-pro);
    border: 1px solid transparent;
    box-shadow: 0 14px 28px rgba(46, 204, 113, .3);
}
.btn--navy:hover {
    background: var(--z-green-dark);
    color: #fff;
    box-shadow: 0 18px 34px rgba(46, 204, 113, .38);
}
.btn--navy-solid {
    color: #fff;
    background: var(--navy-pro);
    border: 1px solid var(--navy-pro);
    box-shadow: 0 14px 28px rgba(26, 43, 76, .22);
}
.btn--navy-solid:hover {
    background: #0f1d36;
    color: #fff;
    box-shadow: 0 18px 34px rgba(26, 43, 76, .3);
}
.btn--small { padding: 12px 20px; font-size: 13px; }

.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    padding: clamp(96px, 13vh, 150px) 0 clamp(84px, 11vh, 132px);
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--navy-pro);
    isolation: isolate;
    /* Évite 100vw + margin négatif : sur mobile ça crée un scroll horizontal et décale le fixed (bouton RDV). */
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 17, 31, .78) 0%, rgba(8, 17, 31, .58) 48%, rgba(8, 17, 31, .24) 100%),
        linear-gradient(180deg, rgba(8, 17, 31, .18), rgba(8, 17, 31, .52)),
        url('/img/image_presentaion_1.jpg') center center / cover no-repeat;
    pointer-events: none;
}
.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 980px);
    gap: 64px;
    align-items: center;
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}
.page-hero__grid, .editorial {
    display: grid;
    grid-template-columns: minmax(0, 820px);
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 3;
    max-width: 940px;
    min-width: 0;
    padding-top: 18px;
}
.eyebrow {
    margin: 0 0 16px;
    color: var(--green-pro);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow--light { color: #5ee49b; }
h1, h2, h3 {
    margin: 0;
    color: var(--navy-pro);
    font-family: Montserrat, Poppins, Inter, sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(46px, 7vw, 96px); line-height: .98; max-width: 980px; font-weight: 800; }
h2 { font-size: clamp(28px, 3.6vw, 46px); line-height: 1.12; font-weight: 800; }
h3 { font-size: 22px; line-height: 1.25; font-weight: 700; }
p { line-height: 1.65; color: var(--z-text); }
.hero h1 {
    color: #fff;
    text-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}
.hero h1 span {
    color: var(--green-pro);
    display: block;
    text-shadow: 0 6px 24px rgba(46, 204, 113, .35);
}
.hero .eyebrow {
    color: #5ee49b;
    font-size: clamp(13px, 1.2vw, 16px);
    margin-bottom: 22px;
}
.hero p,
.hero .hero__lead {
    color: #ffffff;
}
.page-hero p, .section__intro p, .editorial__content p {
    color: var(--z-muted);
    max-width: 680px;
    font-size: 17.5px;
}
.hero__lead {
    max-width: 780px;
    font-size: clamp(19px, 1.6vw, 24px);
    line-height: 1.62;
    margin-top: 26px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 42px 0 38px; }
.hero .btn {
    min-height: 58px;
    padding: 18px 30px;
    font-size: 16px;
}
.hero .btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .35);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: none;
}
.hero .btn--ghost:hover {
    color: #0f172a;
    background: #fff;
    border-color: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.hero__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(28px, 5vw, 54px);
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    margin-top: 10px;
}
.hero__metrics strong {
    display: block;
    color: #fff;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 800;
    margin-bottom: 4px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}
.page-hero img, .editorial__media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.tech-marquee {
    display: block;
    align-items: center;
    padding: 18px clamp(20px, 5vw, 56px);
    background: linear-gradient(90deg, #f7faf8 0%, #eef8f2 50%, #f7faf8 100%);
    border-block: 1px solid rgba(26, 43, 76, .06);
    overflow: hidden;
}
.tech-marquee__track {
    position: relative;
    overflow: hidden;
    min-width: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.tech-marquee__row {
    display: flex;
    align-items: center;
    gap: 26px;
    width: max-content;
    animation: tech-marquee-scroll 120s linear infinite;
}
.tech-marquee__row span {
    display: inline-flex;
    align-items: center;
    color: #1f3558;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.tech-marquee__row span::after {
    content: "";
    width: 1px;
    height: 14px;
    margin-left: 26px;
    background: rgba(26, 43, 76, .18);
}
@keyframes tech-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.section { padding: 104px 0; }
.section--ivory { background: var(--z-soft); }
.split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; align-items: center; }
.section__head { max-width: 850px; margin-bottom: 42px; }

.landing-problem {
    background: #fff;
}
.landing-problem__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(36px, 6vw, 72px);
    align-items: start;
}
.landing-problem__intro {
    position: sticky;
    top: 118px;
}
.landing-problem__intro h2,
.landing-trust__head h2,
.landing-final-cta h2 {
    max-width: 860px;
}
.landing-problem__intro p,
.landing-trust__head p,
.landing-final-cta p {
    max-width: 720px;
    color: #4a5468;
    font-size: 18px;
}
.landing-problem__cards {
    display: grid;
    gap: 16px;
}
.problem-card,
.trust-card {
    background: #fff;
    border: 1px solid var(--z-line);
    padding: clamp(24px, 4vw, 34px);
    box-shadow: 0 18px 50px rgba(26, 43, 76, .07);
}
.problem-card span {
    display: inline-flex;
    color: var(--green-pro);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .12em;
    margin-bottom: 16px;
}
.problem-card h3,
.trust-card strong {
    display: block;
    color: var(--navy-pro);
    font-family: Montserrat, Poppins, Inter, sans-serif;
    font-size: 22px;
    font-weight: 800;
}
.problem-card p,
.trust-card p {
    margin: 12px 0 0;
    color: #5b6478;
}

.landing-solution {
    margin: 0;
    padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 10vw, 120px);
    background: #070d18;
    color: #fff;
    border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-solution__sticky-wrap {
    max-width: 100%;
}
.landing-solution__sticky-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
}
.landing-solution__col--text {
    position: sticky;
    top: max(88px, calc(env(safe-area-inset-top, 0px) + 72px));
    align-self: start;
    z-index: 2;
    padding-bottom: clamp(32px, 6vh, 64px);
}
.landing-solution__sticky-inner {
    max-width: 520px;
}
.landing-solution .eyebrow--solution {
    margin: 0 0 18px;
    color: var(--green-pro);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.landing-solution__sticky-inner h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(26px, 2.8vw, 38px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.landing-solution__title-accent {
    color: var(--green-pro);
}
.landing-solution__lead {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.65;
}
.solution-steps {
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
    counter-reset: solution-step;
}
.solution-steps__item {
    margin: 0;
    padding: 14px 0 14px 20px;
    border-left: 3px solid rgba(148, 163, 184, 0.35);
    color: rgba(148, 163, 184, 0.95);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    transition: color 0.35s ease, font-weight 0.25s ease, border-color 0.35s ease;
}
.solution-steps__item:focus-visible {
    outline: 2px solid var(--green-pro);
    outline-offset: 4px;
}
.solution-steps__item.is-active {
    border-left-color: #2ecc71;
    color: #2ecc71;
    font-weight: 800;
}
.landing-solution .btn--solution-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 16px 32px;
    border-radius: 999px;
    background: var(--green-pro);
    color: #fff;
    border: 2px solid var(--green-pro);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 36px rgba(46, 204, 113, 0.38);
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.landing-solution .btn--solution-primary:hover {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

/* Carrousel mobile (colonne texte) — masqué sur desktop */
.landing-solution__mobile-gallery {
    display: none;
}

/* Carrousel desktop (colonne droite) — masqué sur mobile */
.landing-solution__desktop-gallery {
    display: block;
    width: 100%;
}
.landing-solution__col--gallery {
    position: sticky;
    top: max(88px, calc(env(safe-area-inset-top, 0px) + 72px));
    align-self: start;
    z-index: 1;
    padding-bottom: clamp(32px, 6vh, 64px);
}
.landing-solution__desktop-gallery .landing-solution__mobile-slide img {
    max-height: min(78vh, 720px);
}
.landing-solution__desktop-gallery .landing-solution__mobile-slide[data-real-step="1"] img,
.landing-solution__desktop-gallery .landing-solution__mobile-slide[data-real-step="2"] img {
    transform: scale(1.1);
    transform-origin: center center;
}
.landing-solution__desktop-gallery .landing-solution__mobile-bar {
    margin-top: 18px;
}
.landing-solution__mobile-viewport {
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    /* pan-x seul empêchait le scroll vertical de la page au doigt sur l’image. */
    touch-action: pan-y pinch-zoom;
}
.landing-solution__mobile-track {
    display: flex;
    flex-direction: row;
    width: 500%;
    will-change: transform;
}
.landing-solution__mobile-slide {
    flex: 0 0 20%;
    width: 20%;
    box-sizing: border-box;
    padding: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing-solution__mobile-slide img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(42vh, 320px);
    object-fit: contain;
}
.landing-solution__mobile-slide[data-real-step="1"] img {
    transform: scale(1.1);
    transform-origin: center center;
}
.landing-solution__mobile-slide[data-real-step="2"] img {
    transform: scale(1.1);
    transform-origin: center center;
}
.landing-solution__mobile-hint {
    margin: 10px 0 0;
    padding: 0 4px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.01em;
}
.landing-solution__mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding: 0 2px;
}
.landing-solution__mobile-arrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.landing-solution__mobile-arrow:hover {
    color: #2ecc71;
}
.landing-solution__mobile-arrow:active {
    transform: scale(0.94);
}
.landing-solution__mobile-arrow:focus-visible {
    outline: 2px solid #2ecc71;
    outline-offset: 2px;
}
.landing-solution__mobile-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    margin-top: 0;
}
.landing-solution__mobile-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.landing-solution__mobile-dot.is-active {
    background: #2ecc71;
    width: 26px;
}
.landing-solution__mobile-dot:focus-visible {
    outline: 2px solid #2ecc71;
    outline-offset: 2px;
}

.landing-solution__col--scroller {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}
.solution-panel {
    min-height: min(100vh, 900px);
    min-height: min(100dvh, 900px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 3vw, 28px);
    box-sizing: border-box;
}
.solution-panel img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(78vh, 720px);
    object-fit: contain;
    opacity: 0.28;
    transform: scale(0.97);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.solution-panel.is-active img {
    opacity: 1;
    transform: scale(1);
}
/* 2e visuel (landing_2) : asset plus « léger » dans le cadre — léger zoom */
.solution-panel[data-step="1"] {
    overflow: hidden;
}
.solution-panel[data-step="1"] img {
    transform: scale(1.1);
    transform-origin: center center;
}
.solution-panel[data-step="1"].is-active img {
    transform: scale(1.23);
}
/* 3e visuel (landing_3) : même logique de cadrage / zoom */
.solution-panel[data-step="2"] {
    overflow: hidden;
}
.solution-panel[data-step="2"] img {
    transform: scale(1.1);
    transform-origin: center center;
}
.solution-panel[data-step="2"].is-active img {
    transform: scale(1.23);
}
@media (prefers-reduced-motion: reduce) {
    .solution-panel img {
        transition: opacity 0.25s ease;
        transform: none;
    }
    .solution-panel.is-active img {
        transform: none;
    }
    .solution-panel[data-step="1"] img {
        transform: scale(1.1);
    }
    .solution-panel[data-step="1"].is-active img {
        transform: scale(1.19);
    }
    .solution-panel[data-step="2"] img {
        transform: scale(1.1);
    }
    .solution-panel[data-step="2"].is-active img {
        transform: scale(1.19);
    }
    .solution-steps__item {
        transition: none;
    }
}

.landing-trust {
    background: #fff;
}
.landing-trust__head {
    max-width: 850px;
    margin-bottom: 38px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.trust-card {
    box-shadow: none;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.landing-final-cta {
    background: var(--navy-pro);
    color: #fff;
    padding: clamp(82px, 10vw, 124px) 0;
    text-align: center;
}
.landing-final-cta__inner {
    max-width: 880px;
}
.landing-final-cta h2 {
    color: #fff;
    margin-inline: auto;
}
.landing-final-cta p {
    color: rgba(255, 255, 255, .86);
    margin: 22px auto 0;
}
.landing-final-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.landing-final-cta .btn--ghost {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, .42);
    box-shadow: none;
}
.landing-final-cta .btn--ghost:hover {
    background: #fff;
    color: var(--navy-pro);
    border-color: #fff;
}

.duel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.duel-card, .service-card, .mission-grid article, .security-flow div, .article-list article, .flash-info {
    background: #fff;
    border: 1px solid var(--z-line);
    border-radius: 8px;
    padding: 28px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.service-card:hover, .duel-card:hover, .article-list article:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 204, 113, .75);
    box-shadow: var(--shadow);
}
.duel-card img { width: 46px; height: 46px; object-fit: contain; margin-bottom: 22px; }
.duel-card span { color: var(--z-muted); font-weight: 800; }
.duel-card strong { display: block; color: var(--z-navy); font-family: Poppins, sans-serif; font-size: 56px; margin: 8px 0; }
.duel-card--active { border-color: rgba(46, 204, 113, .7); }

.cards-3, .mission-grid, .security-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.line-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    color: var(--z-green);
    border: 1px solid rgba(46, 204, 113, .45);
    border-radius: 50%;
    font-size: 24px;
}
.text-link { display: inline-flex; margin-top: 18px; color: var(--z-green-dark); font-weight: 900; }

.newsletter-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}
.newsletter-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(120deg, rgba(15, 29, 54, .88) 0%, rgba(15, 29, 54, .72) 50%, rgba(15, 29, 54, .9) 100%),
        url('/img/image_presentation7.jpg') center/cover;
}
.newsletter-cta__inner { position: relative; z-index: 1; padding: 96px 0; }
.newsletter-cta h1, .newsletter-cta h2 { color: #fff; font-weight: 800; }
.page-hero--navy h1 { color: #fff; font-weight: 800; }
.newsletter-cta p, .page-hero--navy p:not(.expertise-page__hero-lead) { color: #ffffff; max-width: 720px; }
.page-hero--navy .expertise-page__hero-lead { color: rgba(255, 255, 255, .88); }
.lead-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}
.lead-form input {
    min-height: 52px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 8px;
    background: rgba(255,255,255,.96);
    padding: 0 16px;
    font: inherit;
}
.honeypot { position: absolute !important; left: -9999px !important; }
.form-feedback { grid-column: 1 / -1; margin: 0; font-weight: 700; }
.cf-turnstile { grid-column: 1 / -1; }

.eyebrow--on-navy {
    color: var(--green-pro);
}
.contact-section {
    background: var(--navy-pro);
    color: #fff;
    padding: 88px 0 96px;
    margin: 0;
}
.contact-section__inner {
    max-width: 820px;
    margin: 0 auto;
}
.contact-section h2 {
    color: #fff;
    margin-top: 8px;
}
.contact-section__intro {
    margin: 16px 0 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.65;
}
.contact-section__flash {
    margin: 18px 0 0;
    padding: 14px 18px;
    border-radius: 8px;
    background: rgba(46, 204, 113, .18);
    border: 1px solid rgba(46, 204, 113, .45);
    color: #d1fae5;
    font-weight: 700;
}

.contact-cta-banner {
    position: relative;
    background:
        radial-gradient(circle at 50% 0%, rgba(46, 204, 113, .14), transparent 55%),
        var(--navy-pro);
    color: #fff;
    padding: clamp(56px, 8vw, 88px) 0;
    margin: 0;
    overflow: hidden;
}

.contact-cta-banner__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 16px;
}

.contact-cta-banner__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--green-pro);
    padding: 6px 14px;
    border: 1px solid rgba(46, 204, 113, .35);
    border-radius: 999px;
    background: rgba(46, 204, 113, .08);
}

.contact-cta-banner__inner h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-cta-banner__inner p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.6;
    max-width: 560px;
}

.contact-cta-banner__actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.contact-cta-banner__btn {
    flex-shrink: 0;
    box-shadow: 0 12px 28px rgba(46, 204, 113, .32);
}

.contact-cta-banner__btn:hover {
    box-shadow: 0 16px 34px rgba(46, 204, 113, .4);
}

.contact-cta-banner__btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .35);
    box-shadow: none;
}

.contact-cta-banner__btn--ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
    box-shadow: none;
}

@media (max-width: 560px) {
    .contact-cta-banner__actions { width: 100%; flex-direction: column; }
    .contact-cta-banner__btn { width: 100%; justify-content: center; text-align: center; }
}
.contact-form {
    margin-top: 32px;
}
.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}
.contact-form__field--span2 {
    grid-column: 1 / -1;
}
.contact-form__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 8px;
}
.contact-form__control {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 10px;
    background: rgba(255, 255, 255, .96);
    padding: 12px 16px;
    font: inherit;
    color: var(--navy-pro);
}
.contact-form__control--textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-form__submit {
    margin-top: 22px;
}
.contact-form__feedback {
    margin-top: 14px;
    color: #fecaca;
    font-weight: 700;
}
.contact-form__feedback.is-success {
    color: #bbf7d0;
}

.site-footer {
    background: #14181f;
    color: rgba(255, 255, 255, .72);
    padding: 56px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}
.site-footer__grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 40px 36px; padding-bottom: 40px; }
.site-footer__brand p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .58);
    max-width: 360px;
}
.site-footer__tagline {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
}
.site-footer__logo { width: 150px; margin-bottom: 16px; }
.site-footer h4 {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .92);
    font-family: Montserrat, Poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.site-footer a,
.site-footer .site-footer__linkbtn {
    display: block;
    margin: 8px 0;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    color: rgba(255, 255, 255, .55);
    transition: color .18s ease;
    text-decoration: none;
}
.site-footer a:hover,
.site-footer .site-footer__linkbtn:hover {
    color: var(--green-pro);
}
.site-footer__bottom {
    margin-top: 0;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
}
.site-footer__bottom-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin-bottom: 10px;
}
.site-footer__sep { opacity: .35; }
.site-footer__legal {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .38);
    max-width: 920px;
}
.floating-rdv {
    position: fixed;
    right: max(20px, calc(env(safe-area-inset-right, 0px) + 12px));
    bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 14px));
    /* Au-dessus du header (400) et de la bannière cookies (10000), sous la modale préférences (11000). */
    z-index: 10009;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 56px;
    min-width: 56px;
    min-height: 56px;
    height: 56px;
    padding: 0;
    gap: 0;
    border-radius: 50%;
    color: #132238;
    text-decoration: none;
    background: #ffd54a;
    border: 1px solid rgba(19, 34, 56, 0.14);
    box-shadow:
        0 10px 26px rgba(224, 162, 24, 0.38),
        0 3px 10px rgba(19, 34, 56, 0.14);
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transform: translate3d(0, 0, 0);
    transition:
        min-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        gap 0.38s ease,
        box-shadow 0.22s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.floating-rdv::before {
    content: none;
}
.floating-rdv__icon {
    flex-shrink: 0;
    display: block;
    opacity: 0.92;
}
.floating-rdv__label {
    display: block;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(6px);
    transition:
        max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.28s ease 0.06s,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.floating-rdv:hover,
.floating-rdv:focus-visible {
    width: 56px;
    min-width: 56px;
    min-height: 86px;
    height: 86px;
    padding: 10px 6px 12px;
    gap: 6px;
    border-radius: 28px;
    transform: translate3d(0, -4px, 0);
    box-shadow:
        0 14px 32px rgba(224, 162, 24, 0.48),
        0 5px 14px rgba(19, 34, 56, 0.16);
    color: #0d1829;
}
.floating-rdv:hover .floating-rdv__label,
.floating-rdv:focus-visible .floating-rdv__label {
    max-height: 22px;
    opacity: 1;
    transform: translateY(0);
}
.floating-rdv:focus-visible {
    outline: 3px solid rgba(19, 34, 56, 0.35);
    outline-offset: 3px;
}
.floating-rdv:active {
    transform: translate3d(0, -2px, 0);
}
@media (prefers-reduced-motion: reduce) {
    .floating-rdv {
        transition: opacity 0.2s ease, box-shadow 0.2s ease;
    }
    .floating-rdv__label {
        transition: opacity 0.2s ease;
    }
    .floating-rdv:hover,
    .floating-rdv:focus-visible {
        transform: none;
        filter: none;
    }
    .floating-rdv:active {
        transform: none;
    }
}

.page-main { padding-top: 0; }
.page-hero { padding: 92px 0; background: #fff; }
.page-hero--navy {
    background: var(--navy-pro);
    color: #fff;
}
.page-hero--navy .eyebrow { color: var(--green-pro); }
.page-hero--navy h1 span { color: #5ee49b; }

.page-hero--soft {
    background: var(--z-soft);
    color: var(--z-text);
    padding: clamp(72px, 10vw, 104px) 0 clamp(52px, 7vw, 80px);
    border-bottom: 1px solid var(--z-line);
}
.page-hero--soft h1 {
    color: var(--navy-pro);
    font-size: clamp(30px, 3.8vw, 44px);
    line-height: 1.18;
    max-width: 38rem;
    font-weight: 800;
}
.page-hero--soft h1 span {
    color: var(--navy-pro);
    background: linear-gradient(180deg, transparent 64%, rgba(46, 204, 113, .28) 64%);
    padding-inline: 2px;
}
.eyebrow--soft {
    color: var(--z-muted) !important;
    font-weight: 700;
    letter-spacing: .12em;
}
.staircase-grid__intro {
    grid-column: 1 / -1;
    position: relative;
    padding: clamp(72px, 9vw, 120px) 0 clamp(64px, 8vw, 100px);
    background: #fff;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    min-height: 0;
}
.staircase-grid__intro::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .96), rgba(255, 255, 255, .98)),
        var(--staircase-intro-image, url('/img/image_presentation4.jpg')) center / cover no-repeat;
    pointer-events: none;
}
.staircase-grid__intro::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: var(--z-line);
}
.staircase-grid__intro-inner {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    margin: 0 auto;
    padding-inline: clamp(16px, 4vw, 32px);
}
.staircase-grid__intro h1 {
    margin: 0 auto;
    color: var(--navy-pro);
    font-weight: 800;
}
.staircase-grid__intro h1 span,
.staircase-grid__copy h2 span {
    color: var(--navy-pro);
    background: linear-gradient(180deg, transparent 62%, rgba(46, 204, 113, .34) 62%);
    padding-inline: 2px;
}
.staircase-grid__copy--navy h2 span {
    color: #fff;
    background: linear-gradient(180deg, transparent 62%, rgba(46, 204, 113, .42) 62%);
}
.staircase-grid__intro p {
    max-width: 760px;
    margin: 24px auto 0;
    color: #4a5468;
    font-size: 1.1rem;
    line-height: 1.75;
}
.staircase-grid__intro .eyebrow { color: var(--green-pro); }
[id^="svc-"] { scroll-margin-top: 96px; }
.staircase-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--navy-pro);
    overflow: hidden;
    isolation: isolate;
}
.staircase-grid--pricing {
    grid-auto-rows: minmax(420px, auto);
}
.staircase-grid--pricing .staircase-grid__media,
.staircase-grid--pricing .staircase-grid__copy {
    min-height: min(58vh, 620px);
}
.staircase-grid__row {
    display: contents;
}
.staircase-grid__media,
.staircase-grid__copy {
    box-sizing: border-box;
    width: 100%;
    min-height: 80vh;
    margin: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background-clip: padding-box;
}
.staircase-grid__media {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 0;
    background: var(--navy-pro);
}
.staircase-grid__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 1.4s cubic-bezier(.2, .8, .2, 1);
    transform: scale(1.001);
}
.staircase-grid__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(15, 29, 54, .52) 0%, rgba(15, 29, 54, .22) 42%, rgba(15, 29, 54, .68) 100%);
    pointer-events: none;
    transition: opacity .4s ease;
}
.staircase-grid__media:hover img { transform: scale(1.04); }
.staircase-grid__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 15%;
    background: #fff;
    color: var(--navy-pro);
}
.staircase-grid__copy .eyebrow {
    color: var(--green-pro);
}
.staircase-grid__copy h2 {
    color: var(--navy-pro);
    font-weight: 800;
}
.staircase-grid__copy p {
    color: #4a5468;
    font-size: 17px;
    line-height: 1.7;
    max-width: 560px;
}
.staircase-grid__row--soft .staircase-grid__copy,
.staircase-grid__copy--soft {
    background: #f6f8fa;
}
.staircase-grid__copy--navy {
    background: var(--navy-pro);
    color: #fff;
}
.staircase-grid__copy--navy h2,
.staircase-grid__copy--navy h2 span {
    color: #fff;
}
.staircase-grid__copy--navy p { color: rgba(255, 255, 255, .85); }
.staircase-grid__copy--navy .eyebrow { color: var(--green-pro); }
.staircase-grid__copy h2 {
    max-width: 660px;
    font-size: clamp(28px, 3.6vw, 46px);
    margin: 0 0 6px;
}
.staircase-grid__copy p {
    max-width: 600px;
    margin: 18px 0 0;
}
.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 28px;
    padding-bottom: 4px;
    color: var(--navy-pro);
    font-weight: 800;
    border-bottom: 2px solid var(--green-pro);
    transition: color .2s ease, transform .2s ease, gap .2s ease;
}
.staircase-grid__copy--navy .arrow-link {
    color: #fff;
    border-bottom-color: var(--green-pro);
}
.arrow-link span {
    transition: transform .22s ease;
    color: var(--green-pro);
}
.arrow-link:hover {
    color: var(--green-pro);
    gap: 14px;
}
.arrow-link:hover span {
    transform: translateX(6px);
}
.newsletter-cta--compact .newsletter-cta__inner {
    padding: 82px 0;
}
.blog-layout { display: grid; grid-template-columns: 310px 1fr; gap: 30px; align-items: start; }
.flash-info { position: sticky; top: 104px; border-left: 4px solid var(--z-green); }
.flash-info span, .article-list span { color: var(--z-green-dark); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .1em; }
.article-list { display: grid; gap: 18px; }
.article-list h2 { font-size: clamp(24px, 3vw, 36px); margin-top: 10px; }

/* ── Veille & ressources (style article, sobre) ─────────────────────── */
.site-container.site-container--veille-wide {
    width: min(100% - 28px, 1440px);
    max-width: 1440px;
}
.veille-card-surface {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.veille-card-surface:hover {
    border-color: #2ecc71;
    box-shadow: 0 8px 20px -6px rgba(46, 204, 113, 0.22), 0 4px 12px -2px rgba(15, 23, 42, 0.08);
}
.veille-portal-page .veille-portal {
    padding: 120px 0 80px;
    background: #fff;
}
@media (max-width: 720px) {
    .veille-portal-page .veille-portal {
        padding: 72px 0 56px;
    }
}
.veille-portal__grid {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(0, 2fr) minmax(200px, 1fr);
    gap: 32px;
    align-items: start;
}
.veille-portal__col {
    min-width: 0;
}
.veille-portal__col-head {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}
.veille-aside-panel .veille-portal__col-head {
    border-bottom-color: #e5e7eb;
}
.veille-portal__col-title {
    margin: 0 0 4px;
    font-family: inherit;
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--z-navy);
    letter-spacing: -0.02em;
}
.veille-portal__col-sub {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: #64748b;
    font-weight: 400;
}
.veille-portal__stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.veille-legif-badge {
    display: block;
    padding: 14px 16px 16px;
    text-decoration: none;
    color: inherit;
}
.veille-legif-badge__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.veille-legif-badge__type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}
.veille-legif-badge__date {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    white-space: nowrap;
}
.veille-legif-badge__title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--z-navy);
}
.veille-legif-badge__cta {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #cbd5e1;
}
.veille-legif-badge:hover .veille-legif-badge__cta {
    color: var(--z-navy);
    text-decoration-color: #94a3b8;
}
.veille-carousel {
    margin-top: 4px;
}
.veille-carousel__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 16px;
    margin-bottom: 12px;
}
.veille-carousel__arrows {
    display: flex;
    gap: 6px;
}
.veille-carousel__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
    color: #475569;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.15s ease, background 0.15s ease;
}
.veille-carousel__arrow:hover:not(:disabled) {
    border-color: #2ecc71;
    color: var(--z-navy);
    background: #fafafa;
}
.veille-carousel__arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.veille-carousel__arrow:focus-visible {
    outline: 2px solid #2ecc71;
    outline-offset: 2px;
}
.veille-carousel__viewport {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 12px;
    padding: 8px 4px 18px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    outline: none;
    scrollbar-color: #cbd5e1 #f8fafc;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
}
.veille-carousel__viewport:focus-visible {
    outline: 2px solid #2ecc71;
    outline-offset: 3px;
}
.veille-carousel__viewport::-webkit-scrollbar {
    height: 6px;
}
.veille-carousel__viewport::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 6px;
}
.veille-carousel__viewport::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 6px;
}
.veille-carousel__slide {
    flex: 0 0 min(calc(100% - 40px), 22rem);
    scroll-snap-align: center;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
}
@media (min-width: 720px) {
    .veille-carousel__slide {
        flex: 0 0 min(calc(100% - 24px), 24rem);
    }
}
@media (min-width: 1080px) {
    .veille-carousel__slide {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}
.veille-article-card {
    display: flex;
    flex-direction: column;
    padding: 22px 22px 24px;
    height: 100%;
    margin: 0;
}
.veille-article-card__meta {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}
.veille-article-card__title {
    margin: 0 0 16px;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--z-navy);
}
.veille-article-card__list {
    margin: 0 0 20px;
    padding-left: 1.15rem;
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
    flex: 1 1 auto;
}
.veille-article-card__list li {
    margin-bottom: 8px;
}
.veille-article-card__list li:last-child {
    margin-bottom: 0;
}
.veille-article-card__more {
    display: inline-block;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--z-navy);
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2px;
    align-self: flex-start;
    transition: border-color 0.2s ease, color 0.15s ease;
}
.veille-article-card__more:hover {
    color: #15803d;
    border-bottom-color: #2ecc71;
}
.veille-carousel__pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}
.veille-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.veille-carousel__dot:hover {
    border-color: #94a3b8;
}
.veille-carousel__dot.is-active {
    background: var(--z-navy);
    border-color: var(--z-navy);
}
.veille-carousel__dot:focus-visible {
    outline: 2px solid #2ecc71;
    outline-offset: 2px;
}
.veille-aside-panel {
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    padding: 20px 18px 18px;
}
.veille-aside-panel__head {
    margin-bottom: 14px;
    padding-bottom: 12px;
}
.veille-article-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.veille-article-links > li {
    margin: 0;
    padding: 0;
}
.veille-article-links__rule {
    height: 1px;
    margin: 14px 0;
    background: #e5e7eb;
    list-style: none;
    padding: 0;
}
.veille-article-links__a {
    display: block;
    padding: 12px 4px;
    text-decoration: none;
    color: var(--z-navy);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.15s ease, background 0.15s ease;
}
.veille-article-links > li:last-child .veille-article-links__a {
    border-bottom: 0;
}
.veille-article-links__a:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.7);
}
.veille-article-links__desc {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
}
.veille-aside-note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
}
.veille-aside-note a {
    color: var(--z-navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.veille-aside-note a:hover {
    color: #15803d;
}
@media (max-width: 1100px) {
    .veille-portal__grid {
        grid-template-columns: 1fr 1fr;
    }
    .veille-portal__col--aside {
        grid-column: 1 / -1;
    }
}
@media (max-width: 720px) {
    .veille-portal__grid {
        grid-template-columns: 1fr;
    }
    .veille-portal__col--aside {
        grid-column: auto;
    }
}

.security-flow div { position: relative; }
.security-flow div::after {
    content: "";
    position: absolute;
    top: 48px;
    right: -23px;
    width: 24px;
    height: 1px;
    background: var(--z-green);
}
.security-flow div:last-child::after { display: none; }
.security-flow span { color: var(--z-green); font-weight: 900; }
.security-flow strong { display: block; margin: 14px 0 8px; color: var(--z-navy); font-family: Poppins, sans-serif; font-size: 24px; }
.newsletter-page .newsletter-cta__inner { min-height: 62vh; display: flex; flex-direction: column; justify-content: center; }

.flash { padding: 14px 18px; border-radius: 8px; background: #eafaf1; color: #11753e; font-weight: 800; }

/* ── Scroll reveal (voir /js/landing-reveal.js, classe .is-visible) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal:not(.reveal--children) {
        opacity: 0;
        transform: translate3d(0, 32px, 0);
        transition:
            opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.reveal--soft:not(.reveal--children) {
        transform: translate3d(0, 14px, 0);
        transition-duration: 0.7s;
    }

    .reveal.reveal--from-right:not(.reveal--children) {
        transform: translate3d(40px, 16px, 0);
    }

    .reveal.reveal--from-left:not(.reveal--children) {
        transform: translate3d(-40px, 16px, 0);
    }

    .reveal:not(.reveal--children).is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .reveal--delay:not(.reveal--children) {
        transition-delay: 0.12s;
    }

    .reveal--delay-2:not(.reveal--children) {
        transition-delay: 0.22s;
    }

    /* Conteneur : seuls les enfants apparaissent en cascade */
    .reveal--children {
        opacity: 1;
        transform: none;
    }

    .reveal--children > * {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
        transition:
            opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal--children.is-visible > * {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .reveal--children.is-visible > *:nth-child(1) { transition-delay: 0ms; }
    .reveal--children.is-visible > *:nth-child(2) { transition-delay: 75ms; }
    .reveal--children.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
    .reveal--children.is-visible > *:nth-child(4) { transition-delay: 0.22s; }
    .reveal--children.is-visible > *:nth-child(5) { transition-delay: 0.29s; }
    .reveal--children.is-visible > *:nth-child(6) { transition-delay: 0.36s; }
    .reveal--children.is-visible > *:nth-child(7) { transition-delay: 0.43s; }
    .reveal--children.is-visible > *:nth-child(8) { transition-delay: 0.5s; }

    /* Blocs photo pleine hauteur */
    .reveal--media {
        opacity: 0;
        clip-path: inset(3% 2.5% 3% 2.5%);
        transition:
            opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
            clip-path 1.05s cubic-bezier(0.33, 1, 0.68, 1);
    }

    .reveal--media.is-visible {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }

    .staircase-grid__media.reveal--media:not(.is-visible) img {
        transform: scale(1.09);
        transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .staircase-grid__media.reveal--media.is-visible img {
        transform: scale(1.001);
    }

    .staircase-grid__media.reveal--media.is-visible:hover img {
        transform: scale(1.04);
    }

    /* Cartes / placeholders : léger scale */
    .problem-card.reveal:not(.is-visible),
    .trust-card.reveal:not(.is-visible) {
        transform: translate3d(0, 26px, 0) scale(0.98);
    }

    .problem-card.reveal.is-visible,
    .trust-card.reveal.is-visible {
        transform: translate3d(0, 0, 0) scale(1);
    }

    .landing-final-cta__inner.reveal:not(.reveal--children):not(.is-visible) {
        transform: translate3d(0, 24px, 0);
    }

    .contact-section__inner.reveal:not(.reveal--children):not(.is-visible),
    .contact-cta-banner__inner.reveal:not(.reveal--children):not(.is-visible) {
        transform: translate3d(0, 28px, 0);
    }
    .newsletter-cta__inner.reveal:not(.reveal--children):not(.is-visible) {
        transform: translate3d(0, 28px, 0);
    }

    .page-hero .site-container.reveal:not(.reveal--children):not(.is-visible) {
        transform: translate3d(0, 24px, 0);
    }

    .flash-info.reveal:not(.is-visible),
    .article-list article.reveal:not(.is-visible),
    .veille-legif-badge.reveal:not(.is-visible),
    .veille-article-card.reveal:not(.is-visible),
    .veille-carousel.reveal:not(.is-visible),
    .veille-aside-note.reveal:not(.is-visible) {
        transform: translate3d(0, 22px, 0);
    }

    .security-flow > div.reveal:not(.is-visible) {
        transform: translate3d(0, 20px, 0);
    }

    .site-footer__grid.reveal:not(.reveal--children):not(.is-visible) {
        transform: translate3d(0, 18px, 0);
    }
}

@media (max-width: 940px) {
    .tech-marquee {
        padding-inline: 20px;
    }
    .landing-problem__grid,
    .landing-solution__sticky-grid {
        grid-template-columns: 1fr;
    }
    .landing-solution__col--gallery,
    .landing-solution__desktop-gallery {
        display: none !important;
    }
    .landing-solution__mobile-gallery {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 4px 0 22px;
    }
    .landing-solution .btn--solution-primary {
        display: flex;
        width: fit-content;
        max-width: 100%;
        margin-inline: auto;
        justify-content: center;
        text-align: center;
        white-space: normal;
        box-sizing: border-box;
    }
    .landing-solution__mobile-slide[data-real-step="1"] img,
    .landing-solution__mobile-slide[data-real-step="2"] img {
        transform: none;
    }
    .landing-solution .solution-steps {
        margin-bottom: 14px;
    }
    .landing-solution__col--text {
        position: static;
        padding-bottom: clamp(24px, 5vw, 40px);
    }
    .solution-panel {
        min-height: min(88vh, 720px);
        min-height: min(88dvh, 720px);
    }
    .landing-problem__intro {
        position: static;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .hero__grid, .page-hero__grid, .editorial, .split, .blog-layout { grid-template-columns: 1fr; }
    .staircase-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .staircase-grid__row {
        display: contents;
    }
    .staircase-grid__row .staircase-grid__media { order: 1; }
    .staircase-grid__row .staircase-grid__copy { order: 2; }
    .staircase-grid__media,
    .staircase-grid__copy { min-height: min(62vh, 560px); height: auto; }
    .staircase-grid__media { min-height: min(52vh, 480px); height: min(52vh, 480px); }
    .staircase-grid__copy { padding: clamp(1.5rem, 10vw, 3rem) clamp(1.25rem, 8vw, 2.5rem); }
    .cards-3, .mission-grid, .security-flow, .duel, .site-footer__grid { grid-template-columns: 1fr; }
    .lead-form { grid-template-columns: 1fr; }
    .security-flow div::after { display: none; }
}

@media (max-width: 620px) {
    :root {
        --amiantix-mobile-header-stack: calc(66px + 1.1rem + env(safe-area-inset-top, 0px));
    }
    .site-container { width: min(100% - 28px, 1180px); }
    .site-header__inner { min-height: 66px; }
    .brand img { width: 132px; }
    .hero { min-height: calc(100vh - 66px); padding: 72px 0 64px; }
    .hero__grid { width: min(100% - 28px, 1180px); }
    .hero .eyebrow { font-size: 11px; margin-bottom: 12px; letter-spacing: 0.12em; }
    .hero h1 {
        font-size: clamp(24px, 6.8vw, 32px);
        line-height: 1.08;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .hero .hero__lead {
        font-size: 15px;
        line-height: 1.55;
        margin-top: 14px;
        max-width: 100%;
    }
    .hero .btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-height: 46px;
        padding: 11px 16px;
        font-size: 14px;
        min-width: 0;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }
    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 20px 0 22px;
    }
    .hero__metrics span:nth-child(3) {
        flex: 1 1 100%;
        text-align: center;
    }
    .hero__metrics { gap: 20px; font-size: 13px; }
    .hero__metrics strong { font-size: 24px; }
    .section, .page-hero { padding: 64px 0; }
    h1 { font-size: 40px; }
    h2 { font-size: 30px; }
    .staircase-grid__intro { padding: 58px 0; }
    .staircase-grid__media { height: min(48vh, 400px); min-height: min(48vh, 400px); }
    .staircase-grid__copy { padding: 10% 12%; min-height: min(52vh, 520px); }
    .staircase-grid__copy p,
    .staircase-grid__intro p { font-size: 1rem; }
    .floating-rdv {
        right: max(14px, calc(env(safe-area-inset-right, 0px) + 10px));
        bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 12px));
        z-index: 10009;
        width: 52px;
        min-width: 52px;
        min-height: 52px;
        height: 52px;
    }
    .floating-rdv:hover,
    .floating-rdv:focus-visible {
        width: 52px;
        min-width: 52px;
        min-height: 82px;
        height: 82px;
        padding: 8px 4px 10px;
        gap: 5px;
        border-radius: 26px;
    }
    .floating-rdv__icon {
        width: 22px;
        height: 22px;
    }
    .floating-rdv__label {
        font-size: 9px;
        letter-spacing: 0.07em;
    }
}

/* ── Page Qui sommes-nous (mise en page dédiée, visuels asymétriques) ── */
.about-page .about-hero {
    padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 7vw, 88px);
    background: linear-gradient(180deg, #f8fafc 0%, #fff 42%);
    border-bottom: 1px solid var(--z-line);
}

.about-page .about-hero__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-page .about-hero h1 {
    color: var(--navy-pro);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
}

.about-page .about-hero h1 span {
    color: var(--green-pro);
}

.about-page .about-hero__lead {
    margin: 22px auto 0;
    max-width: 700px;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.65;
    color: var(--z-muted);
}

.about-page .about-origins__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}

.about-page .about-origins__intro h2 {
    margin-top: 8px;
}

.about-page .about-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--z-line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}

.about-page .about-stats li {
    display: grid;
    gap: 4px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--z-line);
}

.about-page .about-stats li:last-child {
    border-bottom: 0;
}

.about-page .about-stats strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy-pro);
}

.about-page .about-stats span {
    font-size: 14px;
    color: var(--z-muted);
    line-height: 1.45;
}

.about-page .about-split {
    display: grid;
    grid-template-columns: minmax(0, 1.26fr) minmax(0, 0.74fr);
    width: 100%;
    margin: 0;
    align-items: stretch;
    min-height: min(72vh, 760px);
    background: var(--navy-pro);
}

.about-page .about-split--media-right {
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
}

.about-page .about-split__media {
    position: relative;
    overflow: hidden;
    min-height: min(52vh, 520px);
    background: var(--navy-pro);
}

.about-page .about-split__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page .about-split__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 29, 54, .45) 0%, rgba(15, 29, 54, .12) 45%, rgba(15, 29, 54, .38) 100%);
    pointer-events: none;
}

.about-page .about-split__media:hover img {
    transform: scale(1.03);
}

.about-page .about-split__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 3.25rem);
    background: #fff;
    color: var(--navy-pro);
}

.about-page .about-split--media-right .about-split__copy {
    background: #f6f8fa;
}

.about-page .about-split__copy .eyebrow {
    color: var(--green-pro);
}

.about-page .about-split__copy h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.12;
    font-weight: 800;
    max-width: 520px;
}

.about-page .about-split__copy h2 span {
    color: var(--navy-pro);
    background: linear-gradient(180deg, transparent 62%, rgba(46, 204, 113, .34) 62%);
    padding-inline: 2px;
}

.about-page .about-split__copy p {
    margin: 16px 0 0;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.68;
    color: #4a5468;
}

.about-page .about-split__muted {
    font-size: 15px !important;
    color: var(--z-muted) !important;
}

.about-page .about-method__inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-page .about-method__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    margin-top: 22px;
}

.about-page .about-method__cols p {
    margin: 0;
    color: var(--z-muted);
    font-size: 17px;
    line-height: 1.7;
}

.about-page .about-fullbleed {
    background: var(--navy-pro);
}

.about-page .about-fullbleed__frame {
    position: relative;
    width: 100%;
    min-height: min(48vh, 520px);
    max-height: min(58vh, 640px);
    overflow: hidden;
}

.about-page .about-fullbleed__frame img {
    display: block;
    width: 100%;
    height: min(58vh, 640px);
    object-fit: cover;
}

.about-page .about-fullbleed__caption {
    margin: 0;
    padding: 18px 24px 28px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .88);
    max-width: 920px;
}

.about-page .about-ecosystem__head {
    max-width: 720px;
    margin-bottom: 28px;
}

.about-page .about-ecosystem__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.about-page .about-eco-card {
    background: #fff;
    border: 1px solid var(--z-line);
    border-radius: 12px;
    padding: 24px 22px;
    box-shadow: 0 8px 28px rgba(26, 43, 76, .06);
}

.about-page .about-eco-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--navy-pro);
}

.about-page .about-eco-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--z-muted);
}

@media (max-width: 940px) {
    .about-page .about-origins__layout {
        grid-template-columns: 1fr;
    }

    .about-page .about-split,
    .about-page .about-split--media-right {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .about-page .about-split--media-left .about-split__media,
    .about-page .about-split--media-right .about-split__media {
        order: -1;
    }

    .about-page .about-split__media {
        min-height: min(44vh, 380px);
    }

    .about-page .about-method__cols {
        grid-template-columns: 1fr;
    }

    .about-page .about-ecosystem__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Pages expertise, références, blog, FAQ ── */
.expertise-crosslinks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    align-items: center;
    margin-top: 16px;
}

.split h2 span,
.landing-trust__head h2 span {
    color: var(--navy-pro);
    background: linear-gradient(180deg, transparent 62%, rgba(46, 204, 113, .34) 62%);
    padding-inline: 2px;
}

.ref-corpus__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.ref-corpus__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}

.ref-corpus__table th,
.ref-corpus__table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--z-line);
    vertical-align: top;
}

.ref-corpus__table thead th {
    background: var(--navy-pro);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ref-corpus__table tbody tr:hover {
    background: #fafbfb;
}

.ref-corpus__note {
    margin-top: 24px;
    font-size: 15px;
    color: var(--z-muted);
    max-width: 720px;
    line-height: 1.65;
}

.ref-corpus__note a {
    color: var(--green-pro-dark);
    font-weight: 700;
}

.blog-hub__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.blog-hub__card {
    background: #fff;
    border: 1px solid var(--z-line);
    border-radius: 12px;
    padding: 24px 22px;
    box-shadow: 0 8px 28px rgba(26, 43, 76, .06);
    transition: border-color .2s ease, box-shadow .22s ease;
}

.blog-hub__card:hover {
    border-color: rgba(46, 204, 113, .35);
    box-shadow: 0 14px 36px rgba(26, 43, 76, .1);
}

.blog-hub__status {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green-pro-dark);
    margin-bottom: 12px;
}

.blog-hub__card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    color: var(--navy-pro);
}

.blog-hub__card p {
    margin: 0;
    color: var(--z-muted);
    font-size: 15px;
    line-height: 1.55;
}

.blog-hub__cta .btn {
    margin-top: 18px;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-list__item {
    border: 1px solid var(--z-line);
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 0 18px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(26, 43, 76, .04);
}

.faq-list__item summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
    padding: 16px 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--navy-pro);
}

.faq-list__item summary::-webkit-details-marker {
    display: none;
}

.faq-list__item summary::after {
    content: "+";
    font-weight: 300;
    font-size: 22px;
    color: var(--green-pro);
    flex-shrink: 0;
}

.faq-list__item[open] summary::after {
    content: "−";
}

.faq-list__item p {
    margin: 0 0 18px;
    color: var(--z-muted);
    font-size: 15px;
    line-height: 1.65;
}

.faq-list__item p a {
    color: var(--green-pro-dark);
    font-weight: 700;
}

@media (max-width: 940px) {
    .blog-hub__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Pages expertise (mise en page dédiée, visuels non dupliqués avec le reste du site) ── */
.expertise-page__hero-lead {
    max-width: 46rem;
    font-size: clamp(16px, 1.9vw, 18px);
    line-height: 1.65;
    margin-top: 0;
    color: var(--z-muted);
}

.expertise-lede__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}

.expertise-lede__copy h2 {
    font-size: clamp(26px, 3.2vw, 34px);
    line-height: 1.2;
    margin: 10px 0 16px;
}

.expertise-lede__copy p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--z-muted);
    margin: 0 0 14px;
}

.expertise-lede__muted {
    font-size: 15px;
    color: var(--z-muted);
    margin: 0;
    line-height: 1.6;
}

.expertise-lede__figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--z-line);
    background: var(--z-soft);
}

.expertise-lede__figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.expertise-band {
    padding-block: clamp(48px, 8vw, 72px);
}

.expertise-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 40px);
}

.expertise-kpi {
    padding-top: 18px;
    border-top: 3px solid var(--green-pro);
}

.expertise-kpi__value {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--z-muted);
    margin-bottom: 8px;
}

.expertise-kpi strong {
    display: block;
    font-size: 18px;
    color: var(--navy-pro);
    margin-bottom: 8px;
}

.expertise-kpi p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--z-muted);
}

.expertise-deliverables__head {
    max-width: 640px;
    margin-bottom: 28px;
}

.expertise-deliverables__head h2 {
    font-size: clamp(24px, 2.8vw, 30px);
    margin: 10px 0 0;
}

.expertise-deliverables__list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--z-line);
}

.expertise-deliverables__list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px 22px;
    align-items: baseline;
    padding: 22px 0;
    border-bottom: 1px solid var(--z-line);
    font-size: 16px;
    line-height: 1.6;
    color: var(--z-text);
}

.expertise-deliverables__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--navy-pro);
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.expertise-epc-board {
    background: var(--z-soft);
    color: var(--z-text);
    padding: clamp(56px, 8vw, 88px) 0;
    border-bottom: 1px solid var(--z-line);
}

.expertise-epc-board__title {
    font-size: clamp(22px, 2.6vw, 30px);
    margin: 0 0 12px;
    font-weight: 800;
    color: var(--navy-pro);
}

.expertise-epc-board__intro {
    margin: 0 0 36px;
    max-width: 42rem;
    font-size: 17px;
    line-height: 1.65;
    color: var(--z-muted);
}

.expertise-epc-board__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.expertise-epc-board__cell {
    margin: 0;
    padding: 24px 22px;
    border: 1px solid var(--z-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(26, 43, 76, .05);
}

.expertise-epc-board__cell h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy-pro);
}

.expertise-epc-board__cell p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--z-muted);
}

.expertise-epc-prose {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}

.expertise-epc-prose__col h2 {
    font-size: clamp(24px, 2.8vw, 30px);
    margin: 10px 0 14px;
}

.expertise-epc-prose__mark {
    background: linear-gradient(180deg, transparent 64%, rgba(46, 204, 113, .26) 64%);
    padding-inline: 2px;
}

.expertise-epc-prose__col p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--z-muted);
    margin: 0 0 12px;
}

.expertise-epc-prose__pull {
    margin: 0 0 16px;
    padding-left: 18px;
    border-left: 3px solid var(--z-line);
    font-size: 18px;
    line-height: 1.55;
    color: var(--navy-pro);
    font-weight: 600;
}

.expertise-flow__head {
    margin-bottom: 28px;
}

.expertise-flow__head h2 {
    margin: 10px 0 0;
    font-size: clamp(22px, 2.6vw, 28px);
}

.expertise-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.expertise-flow__step {
    margin: 0;
    padding: 20px 18px;
    border: 1px solid var(--z-line);
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100%;
}

.expertise-flow__n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--green-pro);
    font-weight: 800;
    font-size: 14px;
    color: var(--navy-pro);
}

.expertise-flow__label {
    font-weight: 800;
    font-size: 15px;
    color: var(--navy-pro);
}

.expertise-flow__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--z-muted);
}

.expertise-flow--article {
    grid-template-columns: 1fr;
    max-width: 40rem;
    margin: 0;
    gap: 0;
}

.expertise-flow--article .expertise-flow__step {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 6px;
    padding: 22px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid var(--z-line);
    align-items: start;
    min-height: 0;
}

.expertise-flow--article .expertise-flow__step:first-child {
    padding-top: 0;
}

.expertise-flow--article .expertise-flow__n {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    width: auto;
    height: auto;
    min-width: 0;
    border: 0;
    border-radius: 0;
    justify-content: flex-start;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--z-muted);
    line-height: 1.4;
}

.expertise-flow--article .expertise-flow__label {
    grid-column: 2;
    grid-row: 1;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-pro);
}

.expertise-flow--article .expertise-flow__desc {
    grid-column: 2;
    grid-row: 2;
    font-size: 15px;
    line-height: 1.6;
}

.expertise-twin {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
}

.expertise-twin__intro h2 {
    font-size: clamp(24px, 2.8vw, 30px);
    margin: 10px 0 14px;
}

.expertise-twin__intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: var(--z-muted);
    max-width: 40rem;
}

.expertise-twin__aside {
    background: var(--z-soft);
    border: 1px solid var(--z-line);
    border-radius: 12px;
    padding: 22px 22px 20px;
}

.expertise-twin__aside-title {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy-pro);
}

.expertise-twin__bullets {
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--z-muted);
    font-size: 15px;
    line-height: 1.65;
}

.expertise-twin__bullets li {
    margin-bottom: 8px;
}

.expertise-twin__bullets li:last-child {
    margin-bottom: 0;
}

.expertise-timeline__heading {
    font-size: clamp(22px, 2.6vw, 28px);
    margin: 0 0 28px;
}

.expertise-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 720px;
}

.expertise-timeline__item {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 18px;
    padding-bottom: 28px;
    position: relative;
}

.expertise-timeline__item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 22px;
    bottom: 0;
    width: 2px;
    background: var(--z-line);
}

.expertise-timeline__marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--green-pro);
    background: #fff;
    margin-top: 6px;
    z-index: 1;
}

.expertise-timeline__item h3 {
    margin: 0 0 6px;
    font-size: 17px;
    color: var(--navy-pro);
}

.expertise-timeline__item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--z-muted);
}

.expertise-callout {
    margin: 0;
    padding: 0 0 0 22px;
    border-left: 4px solid var(--green-pro);
    font-size: clamp(17px, 2vw, 19px);
    line-height: 1.6;
    color: var(--z-muted);
    max-width: 52rem;
}

.expertise-callout p {
    margin: 0;
}

@media (max-width: 940px) {
    .expertise-lede__grid {
        grid-template-columns: 1fr;
    }

    .expertise-kpis {
        grid-template-columns: 1fr;
    }

    .expertise-deliverables__list li {
        grid-template-columns: 1fr;
    }

    .expertise-epc-board__grid {
        grid-template-columns: 1fr;
    }

    .expertise-epc-prose {
        grid-template-columns: 1fr;
    }

    .expertise-flow {
        grid-template-columns: 1fr;
    }

    .expertise-twin {
        grid-template-columns: 1fr;
    }
}


/* ── Newsletter (page simple) ──────────────────────────────────── */
.newsletter-simple-page {
    position: relative;
    background:
        linear-gradient(135deg, #0f1d36 0%, #1a2b4c 45%, #0b1426 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: clamp(48px, 9vw, 96px) 16px;
    overflow: hidden;
    isolation: isolate;
}

.newsletter-simple-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/img/image_presentation7.jpg');
    background-size: cover;
    background-position: center;
    opacity: .14;
    filter: saturate(.65) contrast(1.05);
    z-index: -2;
    pointer-events: none;
}

.newsletter-simple-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(46, 204, 113, .35), transparent 42%),
        radial-gradient(circle at 88% 82%, rgba(46, 204, 113, .22), transparent 48%),
        radial-gradient(circle at 70% 12%, rgba(94, 228, 155, .18), transparent 40%),
        linear-gradient(180deg, rgba(11, 20, 38, .35) 0%, rgba(11, 20, 38, .55) 100%);
    z-index: -1;
    pointer-events: none;
}

.newsletter-simple {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.newsletter-simple__card {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 18px;
    padding: clamp(28px, 5vw, 44px);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, .35),
        0 12px 28px rgba(0, 0, 0, .18),
        0 0 0 1px rgba(46, 204, 113, .08);
}


.newsletter-simple__eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green-pro);
}

.newsletter-simple__title {
    margin: 0 0 10px;
    font-family: Poppins, Montserrat, Inter, sans-serif;
    font-size: clamp(24px, 3.6vw, 30px);
    line-height: 1.2;
    color: var(--navy-pro);
    font-weight: 800;
}

.newsletter-simple__intro {
    margin: 0 0 24px;
    color: var(--z-muted);
    font-size: 15px;
    line-height: 1.55;
}

.newsletter-simple__feedback {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.newsletter-simple__feedback svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.newsletter-simple__feedback--success {
    background: rgba(46, 204, 113, .12);
    color: #15703f;
    border: 1px solid rgba(46, 204, 113, .35);
}

.newsletter-simple__feedback--error {
    background: rgba(220, 53, 69, .08);
    color: #b02a37;
    border: 1px solid rgba(220, 53, 69, .25);
}

.newsletter-simple__form { margin: 0; }

.newsletter-simple__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.newsletter-simple__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-pro);
    margin-bottom: 8px;
    letter-spacing: .01em;
}

.newsletter-simple__row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-simple__input {
    flex: 1 1 240px;
    min-width: 0;
    height: 50px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1.5px solid var(--z-line);
    background: #fff;
    color: var(--z-text);
    font-size: 15px;
    font-family: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.newsletter-simple__input:focus {
    outline: none;
    border-color: var(--green-pro);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, .18);
}

.newsletter-simple__submit {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 50px;
    padding: 0 22px;
    border-radius: 10px;
    background: var(--green-pro);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 6px 16px rgba(46, 204, 113, .28);
}

.newsletter-simple__submit:hover {
    background: var(--z-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, .35);
}

.newsletter-simple__submit:active { transform: translateY(0); }

.newsletter-simple__submit:focus-visible {
    outline: 2px solid var(--navy-pro);
    outline-offset: 2px;
}

.newsletter-simple__captcha {
    margin-top: 16px;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.newsletter-simple__captcha-fallback {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 12.5px;
    color: var(--z-muted);
    background: var(--z-soft);
    border: 1px dashed var(--z-line);
    padding: 8px 12px;
    border-radius: 8px;
    line-height: 1.3;
}

.newsletter-simple__legal {
    margin: 18px 0 0;
    font-size: 12.5px;
    color: var(--z-muted);
    line-height: 1.5;
}

.newsletter-simple__legal a {
    color: var(--green-pro-dark, var(--z-green-dark));
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 520px) {
    /* Colonne : flex-basis en px = hauteur → champ énorme sans flex:none sur l’input. */
    .newsletter-simple__row {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    .newsletter-simple__input {
        flex: none;
        width: 100%;
        height: 50px;
        min-height: 50px;
        box-sizing: border-box;
    }
    .newsletter-simple__submit { width: 100%; justify-content: center; }
    /* Turnstile « flexible » = barre horizontale ; scale uniquement sur mobile. */
    .newsletter-simple__captcha .cf-turnstile {
        transform: scale(0.88);
        transform-origin: top center;
        margin-bottom: calc(-1 * (1 - 0.88) * 72px);
    }
}
