/* ==========================================================================
   The Solid Manager — Stylesheet
   Charte : vert forêt + blanc, clean & professionnel, riche (pas minimaliste)
   ========================================================================== */

:root {
    /* Brand */
    --green-900: #122A1F;
    --green-800: #1A3A2A;
    --green-700: #1E3D2F;        /* primary */
    --green-600: #2A5240;
    --green-500: #3B6A53;
    --green-400: #5A8A73;
    --green-300: #A4C2B0;
    --green-100: #E1ECE5;
    --green-50:  #F1F6F2;

    /* Neutrals */
    --white: #FFFFFF;
    --cream: #FAFAF6;
    --paper: #F5F4EE;
    --stone-200: #E5E4DC;
    --stone-300: #C9C7BB;
    --stone-500: #7B7A70;
    --ink-700: #2C2C29;
    --ink-900: #15140F;

    /* Accents */
    --gold: #B89A5C;

    /* Typo */
    --font-sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;

    /* Layout */
    --container: 1240px;
    --gutter: 24px;
    --radius: 14px;
    --radius-sm: 8px;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Bilingual show/hide ------------------------------------------------- */
/* Bilingual masking rules removed during FR/EN URL split migration.
   Each page (/index.html FR, /en/index.html EN, etc.) now contains
   only one language, so conditional masking is no longer needed. */

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink-900);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }

/* --- Layout helpers ------------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-700);
    margin: 0 0 18px;
    background: rgba(0, 34, 34, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
}
.eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green-700);
    box-shadow: none;
}

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.08;
    color: var(--ink-900);
    letter-spacing: -0.02em;
}
.section-head h2 em {
    font-style: italic;
    color: var(--green-700);
}
.section-lead {
    margin-top: 20px;
    font-size: 18px;
    color: var(--stone-500);
    line-height: 1.65;
    max-width: 65ch;
}
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: transform 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease), box-shadow 0.22s var(--ease);
    white-space: nowrap;
    cursor: pointer;
}
.btn--primary {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 18px rgba(30, 61, 47, 0.18);
}
.btn--primary:hover { background: var(--green-800); transform: translateY(-1px); }
.btn--ghost {
    background: transparent;
    color: var(--ink-900);
    border: 1px solid var(--stone-300);
}
.btn--ghost:hover { background: var(--ink-900); color: var(--white); border-color: var(--ink-900); }
.btn--lg { padding: 16px 26px; font-size: 15px; }
.btn--block { width: 100%; }

/* --- Top bar ------------------------------------------------------------- */
.top-bar {
    background: var(--green-900);
    color: var(--green-100);
    font-size: 13px;
}
.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}
.top-bar__tagline { opacity: 0.85; }

/* --- Nav ----------------------------------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--stone-200);
}
.nav__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; }
.nav__brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    background: var(--green-700);
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.04em;
    border-radius: 8px;
}
.nav__brand-name {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    font-size: 14px;
    color: var(--ink-700);
}
.nav__links a { position: relative; transition: color 0.2s var(--ease); }
.nav__links a:hover { color: var(--green-700); }
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--green-700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { margin-left: 0; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink-900);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
    padding: 80px 0 100px;
    background:
        radial-gradient(1200px 600px at 80% -10%, var(--green-50) 0%, transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(30, 61, 47, 0.05) 0%, transparent 60%),
        var(--white);
    overflow: hidden;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 72px;
    align-items: center;
}
.hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--ink-900);
    margin-bottom: 28px;
}
.hero__title em {
    font-style: italic;
    color: var(--green-700);
    background-image: linear-gradient(180deg, transparent 60%, rgba(30, 61, 47, 0.10) 60%);
    padding: 0 0.05em;
}
.hero__title strong {
    font-weight: 500;
    background: radial-gradient(circle at center, #88c0bb 0%, #3a7570 15%, #002222 40%);
    background-size: 350% 350%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: hero-strong-infinity 10s linear infinite;
}
@keyframes hero-strong-infinity {
    0%      { background-position: 85% 50%; }
    8.33%   { background-position: 74.3% 57.3%; }
    16.67%  { background-position: 60% 55.2%; }
    25%     { background-position: 50% 50%; }
    33.33%  { background-position: 40% 44.8%; }
    41.67%  { background-position: 25.7% 42.7%; }
    50%     { background-position: 15% 50%; }
    58.33%  { background-position: 25.7% 57.3%; }
    66.67%  { background-position: 40% 55.2%; }
    75%     { background-position: 50% 50%; }
    83.33%  { background-position: 60% 44.8%; }
    91.67%  { background-position: 74.3% 42.7%; }
    100%    { background-position: 85% 50%; }
}
.hero__lead {
    font-size: 18px;
    color: var(--stone-500);
    line-height: 1.65;
    max-width: 60ch;
    margin-bottom: 36px;
}
.hero__lead strong {
    color: var(--ink-900);
    font-weight: 600;
}
.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}
.hero__bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: var(--stone-500);
}
.hero__bullets li {
    position: relative;
    padding-left: 22px;
}
.hero__bullets li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    color: var(--green-700);
    font-weight: 700;
}

.hero__portrait {
    position: relative;
    align-self: center;
    max-width: 380px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}
.hero__portrait-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--green-700);
    aspect-ratio: 4 / 5;
    box-shadow:
        0 30px 60px -20px rgba(30, 61, 47, 0.35),
        0 18px 30px -16px rgba(0,0,0,0.25);
    transform: rotate(0.4deg);
}
.hero__portrait-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero__portrait-frame::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    pointer-events: none;
    z-index: 2;
}
.hero__portrait-badge {
    position: absolute;
    bottom: -22px; left: -22px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 18px 30px -10px rgba(0,0,0,0.18);
    max-width: 280px;
    border-left: 3px solid var(--green-700);
}
.hero__portrait-badge strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--ink-900);
}
.hero__portrait-badge span {
    font-size: 13px;
    color: var(--stone-500);
    line-height: 1.45;
}

/* --- Logos / Marquee ----------------------------------------------------- */
.logos {
    padding: 60px 0 70px;
    background: var(--white);
    border-top: 1px solid var(--stone-200);
    border-bottom: 1px solid var(--stone-200);
    overflow: hidden;
}
.logos__title {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone-500);
    margin-bottom: 36px;
    font-weight: 600;
}

.marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 56px;
    padding-right: 56px;
    animation: marquee 50s linear infinite;
    white-space: nowrap;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 12px;
    white-space: nowrap;
    transition: opacity 0.25s var(--ease);
}
.logo-pill img {
    max-height: 44px;
    max-width: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* multiply sur fond blanc pur = supprime totalement les fonds blancs des PNG */
    opacity: 0.85;
    mix-blend-mode: multiply;
    transition: opacity 0.25s var(--ease);
}
.logo-pill:hover img { opacity: 1; }

/* Per-logo size tweaks (some source images have extra padding) */
.logo-pill img[src*="france-alzheimer"] { max-height: 56px; }

.logo-pill__text {
    display: none;
    color: var(--ink-700);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.01em;
    opacity: 0.7;
}
.logo-pill--text img { display: none; }
.logo-pill--text .logo-pill__text { display: inline; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Impact Stats -------------------------------------------------------- */
.impact-stats {
    padding: 48px 0 40px;
    background:
        linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 100%);
    color: var(--green-100);
}
.impact-stats__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.impact-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.impact-stats__num {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--cream);
}
.impact-stats__suffix {
    font-size: 0.6em;
    vertical-align: super;
    margin-left: 2px;
    color: var(--green-300);
    font-weight: 500;
}
.impact-stats__label {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(225, 236, 229, 0.75);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
@media (max-width: 720px) {
    .impact-stats {
        padding: 36px 0 32px;
    }
    .impact-stats__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }
    .impact-stats__num {
        font-size: 38px;
    }
}

/* --- For Whom ------------------------------------------------------------ */
.for-whom { padding: 120px 0; }
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.pain-card {
    position: relative;
    padding: 36px 32px 32px;
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pain-card:hover {
    transform: translateY(-3px);
    border-color: var(--green-300);
    box-shadow: 0 18px 40px -20px rgba(30, 61, 47, 0.20);
}
.pain-card__icon {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 28px;
    color: var(--green-400);
    margin-bottom: 18px;
}
.pain-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--ink-900);
}
.pain-card h3 em { font-style: italic; color: var(--green-700); }
.pain-card p { color: var(--stone-500); line-height: 1.6; font-size: 15px; }

/* --- Concept ------------------------------------------------------------- */
.concept {
    padding: 130px 0;
    background:
        linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 100%);
    color: var(--green-100);
}
.concept .eyebrow { color: var(--green-300); background: rgba(164, 194, 176, 0.18); }
.concept .eyebrow .dot { background: var(--green-300); }
.concept .section-head h2 { color: var(--white); }
.concept .section-head h2 em { color: var(--green-300); }
.concept .section-lead { color: rgba(225, 236, 229, 0.8); }
.concept .section-lead strong { color: var(--white); font-weight: 600; }
.concept-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.concept-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.concept-card--alt {
    background: rgba(255, 255, 255, 0.07);
}
.concept-card__head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 8px;
}
.concept-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    background: var(--green-300);
    color: var(--green-900);
}
.concept-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1;
    color: var(--white);
}
.concept-card__sub {
    font-size: 14px;
    color: var(--green-300);
    margin: 8px 0 22px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
}
.concept-card > p {
    color: rgba(225, 236, 229, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.concept-card > p strong { color: var(--white); font-weight: 600; }
.concept-card > p em { color: var(--green-300); font-style: italic; }
.concept-card__list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
}
.concept-card__list li {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: rgba(225, 236, 229, 0.85);
}
.concept-card__list li:last-child { border-bottom: 0; }
.concept-card__list li strong {
    color: var(--green-300);
    font-weight: 700;
    letter-spacing: 0.04em;
}
.concept__attribution {
    margin-top: 56px;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(225, 236, 229, 0.6);
    font-style: italic;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Method -------------------------------------------------------------- */
.method-steps {
    margin-top: 12px;
    display: grid;
    gap: 18px;
}
.method-step {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.method-step:hover {
    border-color: var(--green-400);
    box-shadow: 0 12px 30px -16px rgba(30, 61, 47, 0.18);
}
.method-step__num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 64px;
    line-height: 1;
    color: var(--green-700);
    letter-spacing: -0.04em;
}
.method-step__body h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--ink-900);
}
.method-step__body p {
    color: var(--stone-500);
    line-height: 1.7;
    font-size: 16px;
    max-width: 70ch;
}
.method-step__body p em { font-style: italic; color: var(--green-700); }
.method-step__body p strong { color: var(--ink-900); font-weight: 600; }

/* --- Solutions ----------------------------------------------------------- */
.solutions {
    padding: 130px 0;
    background: var(--cream);
}
/* Classes héritées, encore utilisées par la version EN (en/index.html) — conservées pour ne pas casser son rendu */
.solutions__walkthrough { margin-top: 64px; }
.solutions__standalone,
.solutions__formats,
.solutions__during {
    margin-top: 96px;
    padding-top: 80px;
    border-top: 1px solid var(--stone-200);
}
.solutions__subtitle {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--green-700);
    margin: 0 0 36px;
    letter-spacing: -0.02em;
}
@media (max-width: 700px) {
    .solutions__standalone,
    .solutions__formats,
    .solutions__during { margin-top: 64px; padding-top: 60px; }
    .solutions__subtitle { font-size: 24px; }
}

/* === Frise Protocole & Offres === */
.timeline {
    position: relative;
    padding: 24px 0 80px;
    margin-top: 24px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 24px;
    bottom: 80px;
    width: 2px;
    background: var(--green-300);
}
.timeline-step {
    position: relative;
    padding: 0 0 88px 96px;
}
.timeline-step:last-of-type { padding-bottom: 0; }
.timeline-step__dot {
    position: absolute;
    left: 0;
    top: -4px;
    width: 64px;
    height: 64px;
    background: var(--cream);
    border: 2px solid var(--green-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 26px;
    color: var(--green-700);
    z-index: 2;
}
.timeline-step__header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.timeline-step__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 36px;
    line-height: 1.1;
    color: var(--ink-900);
    letter-spacing: -0.01em;
}
.timeline-step__badge {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 999px;
}
.timeline-step__badge--free {
    background: var(--green-100);
    color: var(--green-700);
}
.timeline-step__badge--optional {
    background: var(--paper);
    color: var(--stone-500);
    border: 1px solid var(--stone-200);
}
.timeline-step__lead {
    font-size: 16px;
    line-height: 1.65;
    color: var(--stone-500);
    margin-bottom: 12px;
    max-width: 75ch;
}
.timeline-step__lead strong {
    color: var(--ink-900);
    font-weight: 600;
}
.timeline-step__optional-note {
    font-size: 15px;
    line-height: 1.65;
    color: var(--stone-500);
    margin-bottom: 32px;
    max-width: 75ch;
    padding: 14px 18px;
    background: var(--paper);
    border-left: 3px solid var(--stone-300);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.timeline-step__optional-note strong { color: var(--ink-900); }

/* Carte d'offre dans la frise */
.offer-card {
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}
.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px -22px rgba(30, 61, 47, 0.18);
}
.offer-card__eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--green-700);
    margin-bottom: 12px;
}
.offer-card__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    color: var(--ink-900);
    margin-bottom: 10px;
    line-height: 1.15;
}
.offer-card__pitch {
    font-size: 15px;
    line-height: 1.6;
    color: var(--stone-500);
    margin-bottom: 24px;
}
.offer-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    border-top: 1px solid var(--stone-200);
}
.offer-card__list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--stone-200);
}
.offer-card__list strong {
    display: block;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 4px;
    font-size: 14px;
}
.offer-card__list .desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--stone-500);
}
.offer-card__pricing {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.offer-card__pricing li {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--stone-200);
    font-size: 14px;
    text-align: right;
}
.offer-card__pricing li:last-child { border-bottom: none; }
.offer-card__pricing-label { color: var(--stone-500); }
.offer-card__pricing-amount { font-weight: 600; color: var(--ink-900); }
.offer-card__cta {
    display: inline-block;
    align-self: center;
    padding: 14px 32px;
    background: var(--green-700);
    color: var(--white);
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    text-align: center;
    transition: background 0.2s var(--ease);
}
.offer-card__cta:hover { background: var(--green-800); }
.offer-card__note {
    font-size: 13px;
    line-height: 1.5;
    color: var(--stone-500);
    margin-top: 12px;
    text-align: center;
}

/* Previews du livrable Épreuve */
.deliverable-previews { margin: 8px 0 24px; }
.deliverable-previews__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--stone-500);
    margin-bottom: 12px;
}
.deliverable-previews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.deliverable-preview {
    display: block;
    width: 100%;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    padding: 0;
    font: inherit;
    color: inherit;
    text-align: left;
    text-decoration: none;
    cursor: zoom-in;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.deliverable-preview:focus-visible {
    outline: 2px solid var(--green-700);
    outline-offset: 2px;
}
.deliverable-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -22px rgba(30, 61, 47, 0.25);
    border-color: var(--green-300);
}
.deliverable-preview img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: top center;
}
.deliverable-preview__caption {
    padding: 10px 14px;
    font-size: 12px;
    color: var(--stone-500);
    border-top: 1px solid var(--stone-200);
    background: var(--paper);
}

/* === Lightbox overlay (zoom des previews du livrable) === */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 18, 0.92);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 5vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease);
}
.lightbox-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s var(--ease);
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}
.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
    color: var(--stone-300);
    font-size: 14px;
    text-align: center;
    max-width: 60ch;
}

/* Lightbox navigation buttons (prev / next) */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 4px 0;
    transition: background 0.2s var(--ease);
    z-index: 2;
}
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}
.lightbox-nav--prev { left: 24px; }
.lightbox-nav--next { right: 24px; }
@media (max-width: 700px) {
    .lightbox-nav { width: 44px; height: 44px; font-size: 24px; }
    .lightbox-nav--prev { left: 12px; }
    .lightbox-nav--next { right: 12px; }
}

/* Cartes Déploiement côte à côte */
.deployment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* CTA final centré, conclusion de la frise */
.timeline-final {
    margin-top: 56px;
    padding: 40px 24px 8px;
    text-align: center;
}
.timeline-final p {
    font-size: 17px;
    line-height: 1.55;
    color: var(--stone-500);
    margin: 0 auto 24px;
    max-width: 55ch;
}
.timeline-final a {
    display: inline-block;
    padding: 16px 36px;
    background: var(--green-700);
    color: var(--white);
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.timeline-final a:hover {
    background: var(--green-800);
    transform: translateY(-1px);
}

/* Inclus avec le Déploiement */
.included {
    margin-top: 0;
    padding-top: 80px;
    border-top: 1px solid var(--stone-200);
    padding-bottom: 24px;
}
.included__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--green-700);
    margin: 0 0 40px;
    letter-spacing: -0.02em;
}
.included__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.included__item-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--green-700);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.included__item h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--ink-900);
    margin-bottom: 12px;
}
.included__item p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--stone-500);
}

@media (max-width: 900px) {
    .deployment-grid { grid-template-columns: 1fr; }
    .deliverable-previews__grid { grid-template-columns: 1fr; }
    .deliverable-preview img { height: 220px; }
    .included__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px) {
    .timeline-step { padding-left: 72px; padding-bottom: 64px; }
    .timeline::before { left: 24px; }
    .timeline-step__dot { width: 48px; height: 48px; font-size: 20px; }
    .timeline-step__title { font-size: 26px; }
    .offer-card { padding: 24px; }
    .offer-card__title { font-size: 22px; }
    .included__title { font-size: 24px; }
}

/* --- Pricing (cards reused inside Solutions) ----------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pricing-card:hover {
    transform: translateY(-3px);
    border-color: var(--green-300);
    box-shadow: 0 22px 50px -22px rgba(30, 61, 47, 0.22);
}
.pricing-card__head { margin-bottom: 28px; }
.pricing-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.15;
    color: var(--ink-900);
    margin-bottom: 10px;
}
.pricing-card__pitch {
    color: var(--stone-500);
    font-size: 15px;
    line-height: 1.55;
}

.pricing-card__list {
    flex: 1;
    border-top: 1px solid var(--stone-200);
    padding-top: 8px;
    margin-bottom: 24px;
}
.pricing-card__list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--stone-200);
    font-size: 14px;
    color: var(--stone-500);
    line-height: 1.55;
}
.pricing-card__list li:last-child { border-bottom: 0; }
.pricing-card__list li strong {
    display: block;
    color: var(--ink-900);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.pricing-card__foot { display: flex; flex-direction: column; gap: 16px; }

/* --- Solutions: Épreuve standalone (zone tampon) ----------------------- */
.pricing-card--standalone {
    background: var(--paper);
    border: none;
    padding: 48px;
}
.pricing-card--standalone:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px -22px rgba(30, 61, 47, 0.18);
    border: none;
}
.pricing-card--standalone .pricing-card__foot p {
    color: var(--stone-500);
    font-size: 14px;
    line-height: 1.5;
}

/* --- Solutions: dispositif (remplace les pricing-card de "Ce qui vient avec") --- */
.dispositif-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 8px;
}
.dispositif-item__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--green-700);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.dispositif-item h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: var(--ink-900);
    margin-bottom: 14px;
}
.dispositif-item p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--stone-500);
}
@media (max-width: 800px) {
    .dispositif-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --- About --------------------------------------------------------------- */
.about {
    padding: 130px 0;
    background: var(--paper);
}
.about__inner {
    display: grid;
    grid-template-columns: 0.8fr 1.25fr;
    gap: 64px;
    align-items: center;
}
.about__media {
    display: grid;
    gap: 20px;
    max-width: 320px;
}
.about__photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--green-800);
    box-shadow: 0 22px 40px -18px rgba(0,0,0,0.25);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.about__credentials li {
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about__credentials-num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    color: var(--green-700);
    line-height: 1;
}
.about__credentials li > span:not(.about__credentials-num) {
    font-size: 13px;
    color: var(--stone-500);
    line-height: 1.4;
}
.about__copy h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.12;
    margin: 0 0 24px;
    color: var(--ink-900);
}
.about__copy p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--stone-500);
    margin-bottom: 18px;
}
.about__signature {
    padding-top: 18px;
    border-top: 1px solid var(--stone-200);
    margin-top: 8px;
    font-size: 14px;
    color: var(--ink-900);
    font-weight: 500;
}

/* --- FAQ ----------------------------------------------------------------- */
.faq { padding: 130px 0; }
.faq__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: flex-start; }
.faq .section-head { margin-bottom: 0; }
.faq-list { display: grid; gap: 8px; }
.faq-item {
    border: 1px solid var(--stone-200);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.25s var(--ease);
}
.faq-item[open] { border-color: var(--green-300); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-weight: 600;
    font-size: 17px;
    color: var(--ink-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    flex: 0 0 auto;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--green-50) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E3D2F' stroke-width='2.4' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>") center/14px no-repeat;
    transition: transform 0.3s var(--ease), background-color 0.25s var(--ease);
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
    background-color: var(--green-100);
}
.faq-item summary:hover { color: var(--green-700); }
.faq-item__body {
    padding: 0 26px 26px;
    color: var(--stone-500);
    line-height: 1.7;
    font-size: 16px;
}
.faq-item__body strong { color: var(--ink-900); font-weight: 600; }
.faq-item__body em { font-style: italic; color: var(--green-700); }

/* --- CTA Final ----------------------------------------------------------- */
.cta-final {
    padding: 110px 0;
    background:
        radial-gradient(800px 400px at 50% 0%, rgba(255,255,255,0.06) 0%, transparent 70%),
        var(--green-700);
    color: var(--white);
    text-align: center;
}
.cta-final h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(32px, 4.4vw, 56px);
    line-height: 1.1;
    margin-bottom: 18px;
    max-width: 22ch;
    margin-left: auto; margin-right: auto;
}
.cta-final p {
    color: rgba(225, 236, 229, 0.85);
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 60ch;
    margin-left: auto; margin-right: auto;
}
.cta-final .btn--primary {
    background: var(--white);
    color: var(--green-800);
}
.cta-final .btn--primary:hover { background: var(--green-50); }

/* --- Footer -------------------------------------------------------------- */
.footer {
    background: var(--green-900);
    color: var(--green-100);
    padding-top: 72px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
}
.footer__brand-name {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}
.footer__brand p {
    color: rgba(225, 236, 229, 0.7);
    font-size: 14px;
    line-height: 1.6;
    max-width: 36ch;
}
.footer__col h4 {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-300);
    margin-bottom: 16px;
    font-weight: 600;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a {
    font-size: 14px;
    color: rgba(225, 236, 229, 0.85);
    transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    color: rgba(225, 236, 229, 0.5);
    font-size: 13px;
}

/* --- About credentials prefix (depuis / since) --------------------------- */
.about__credentials-prefix {
    font-family: var(--font-display);
    font-size: 60%;
    font-style: italic;
    font-weight: 400;
    color: var(--stone-500);
    margin-right: 0.25em;
    vertical-align: baseline;
}

/* --- Pain card kicker (italic punchline) --------------------------------- */
.pain-card__kicker {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--stone-200);
    color: var(--green-700);
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
}
.pain-card__kicker em { font-style: italic; }

/* --- Method step bullets (step 03 alternating sessions) ------------------ */
.method-step__bullets {
    display: grid;
    gap: 12px;
    margin-top: 4px;
}
.method-step__bullets li {
    padding: 14px 16px;
    background: var(--cream);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-sm);
    color: var(--stone-500);
    font-size: 15px;
    line-height: 1.6;
}
.method-step__bullets li strong {
    display: inline;
    color: var(--green-700);
    font-weight: 600;
    margin-right: 4px;
}

/* --- Program card pricing block ------------------------------------------ */
.pricing-card__pricing {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--stone-200);
    border-bottom: 1px solid var(--stone-200);
}
.pricing-card__pricing li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 14px;
    color: var(--stone-500);
}
.pricing-card__pricing-duration {
    font-weight: 500;
    color: var(--ink-900);
}
.pricing-card__pricing-amount {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 17px;
    color: var(--green-700);
    letter-spacing: -0.01em;
}

/* --- Case studies -------------------------------------------------------- */
.case-studies {
    padding: 130px 0;
    background: var(--cream);
}
/* Case carousel wrapper (replaces former .case-studies-grid) */
.case-carousel {
    position: relative;
    margin-top: 64px;
    padding: 0 16px;
}
.case-carousel__viewport {
    overflow: hidden;
    padding: 24px 0;
}
.case-carousel__track {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.case-carousel__track .case-study {
    flex: 0 0 72%;
    max-width: 880px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    transform: scale(0.86);
    opacity: 0.35;
    pointer-events: none;
}
.case-carousel__track .case-study.is-active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}
.case-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-700);
    color: var(--cream);
    border: none;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}
.case-carousel__nav:hover {
    background: var(--green-500);
    transform: translateY(-50%) scale(1.05);
}
.case-carousel__nav:focus-visible {
    outline: 2px solid var(--green-400);
    outline-offset: 3px;
}
.case-carousel__nav--prev { left: 8px; }
.case-carousel__nav--next { right: 8px; }
.case-carousel__indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}
.case-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(30, 61, 47, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.case-carousel__dot:hover { background: rgba(30, 61, 47, 0.5); }
.case-carousel__dot.is-active {
    background: var(--green-700);
    transform: scale(1.2);
}
.case-carousel__dot:focus-visible {
    outline: 2px solid var(--green-400);
    outline-offset: 3px;
}
@media (max-width: 1024px) {
    .case-carousel__track .case-study { flex: 0 0 82%; }
}
@media (max-width: 720px) {
    .case-carousel {
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    .case-carousel__viewport { order: 1; padding: 12px 0; }
    .case-carousel__indicator {
        order: 0;
        margin: 0 0 20px;
    }
    .case-carousel__track { gap: 16px; }
    .case-carousel__track .case-study {
        flex: 0 0 92%;
        transform: scale(0.95);
    }
    .case-carousel__nav { width: 40px; height: 40px; }
    .case-carousel__nav--prev { left: 4px; }
    .case-carousel__nav--next { right: 4px; }
}
@media (max-width: 480px) {
    .case-carousel__nav { display: none; }
}
.case-study {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.case-study:hover {
    transform: translateY(-3px);
    border-color: var(--green-300);
    box-shadow: 0 22px 50px -22px rgba(30, 61, 47, 0.22);
}
.case-study__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.case-study__main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}
.case-study__photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--paper);
}
.case-study__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) contrast(1.05);
    transition: filter 0.3s var(--ease);
    display: block;
}
.case-study__photo:hover {
    filter: grayscale(0%) contrast(1);
}
.case-study__header {
    display: flex;
    align-items: center;
    gap: 14px;
}
.case-study__logo {
    flex: 0 0 auto;
    height: 32px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}
.case-study__identity { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.case-study__name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: var(--ink-900);
}
.case-study__role {
    font-size: 13px;
    color: var(--green-700);
    font-weight: 500;
    line-height: 1.4;
}
.case-study__meta {
    font-size: 12px;
    color: var(--stone-500);
    line-height: 1.5;
    border-top: 1px solid var(--stone-200);
    padding-top: 12px;
    margin: 0;
}
@media (max-width: 880px) {
    .case-study {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }
    .case-study__sidebar {
        display: grid;
        grid-template-columns: 96px 1fr;
        grid-template-rows: auto auto;
        gap: 6px 14px;
        align-items: start;
    }
    .case-study__photo-wrap {
        grid-row: 1 / 3;
        width: 96px;
        height: 120px;
        aspect-ratio: auto;
        align-self: start;
    }
    .case-study__header {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        gap: 10px;
    }
    .case-study__logo {
        height: 24px;
        max-width: 60px;
    }
    .case-study__name {
        font-size: 16px;
    }
    .case-study__role {
        font-size: 12px;
    }
    .case-study__meta {
        grid-column: 2;
        grid-row: 2;
        border-top: none;
        padding-top: 4px;
        font-size: 11.5px;
        line-height: 1.45;
    }
    .case-study__main {
        gap: 14px;
    }
    .case-study__block-body {
        line-height: 1.55;
    }
}
@media (max-width: 480px) {
    .case-study {
        padding: 14px;
    }
    .case-study__sidebar {
        grid-template-columns: 84px 1fr;
        gap: 4px 12px;
    }
    .case-study__photo-wrap {
        width: 84px;
        height: 105px;
    }
    .case-study__name { font-size: 15px; }
    .case-study__role { font-size: 11.5px; }
    .case-study__meta { font-size: 11px; }
}
.case-study__block { margin-top: 0; }
.case-study__block-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-700);
    font-weight: 600;
    margin-bottom: 6px;
}
.case-study__block-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--stone-500);
}
.case-study__quote {
    margin: 8px 0 0;
    padding: 16px 18px;
    background: var(--paper);
    border-left: 3px solid var(--green-700);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink-900);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 56px; }
    .hero__portrait { max-width: 480px; margin: 0 auto; }
    .about__inner { grid-template-columns: 1fr; gap: 48px; }
    .faq__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
    .top-bar__tagline { display: none; }

    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__burger { display: inline-flex; margin-left: auto; }
    .nav.is-open .nav__links {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        border-bottom: 1px solid var(--stone-200);
        padding: 8px 0;
        box-shadow: 0 12px 30px -16px rgba(0,0,0,0.18);
    }
    .nav.is-open .nav__links a {
        padding: 14px 24px;
        border-bottom: 1px solid var(--stone-200);
        font-weight: 500;
    }
    .nav.is-open .nav__links a:last-child { border-bottom: 0; }
    .nav.is-open .nav__links a::after { display: none; }
    .nav.is-open .nav__cta { display: inline-flex; margin: 12px 24px 16px; }

    .hero { padding: 56px 0 80px; }
    .hero__portrait-badge { left: 16px; bottom: -16px; max-width: 70%; }

    .pain-grid { grid-template-columns: 1fr; }
    .concept-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }

    .method-step { grid-template-columns: 1fr; gap: 12px; padding: 28px; }
    .method-step__num { font-size: 48px; }

    .about__credentials { grid-template-columns: repeat(2, 1fr); }

    .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
    .for-whom, .concept, .solutions, .about, .case-studies, .faq { padding: 80px 0; }
}

@media (max-width: 520px) {
    :root { --gutter: 18px; }
    .hero__title { font-size: 34px; }
    .section-head h2 { font-size: 30px; }
    .footer__inner { grid-template-columns: 1fr; }
    .case-study__quote { font-size: 14px; }
    .concept { padding: 80px 0; }
    .concept-card { padding: 28px; }
    .pricing-card { padding: 28px; }
    .pain-card { padding: 28px 24px; }
}

/* --- Scroll reveal (fade + slight zoom-in) ------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
    transition:
        opacity 0.7s var(--ease),
        transform 0.7s var(--ease);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
/* Once revealed, drop will-change to free GPU resources */
.reveal.is-visible {
    will-change: auto;
}

/* Light stagger for direct children inside a .reveal-stagger container */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 350ms; }
.reveal-stagger > .reveal:nth-child(n+7) { transition-delay: 420ms; }

/* --- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .marquee__track {
        animation-name: marquee !important;
        animation-duration: 50s !important;
        animation-timing-function: linear !important;
        animation-iteration-count: infinite !important;
    }
    .recommendations__track {
        animation-duration: 0.01ms !important;
    }
    /* Neutralize scroll reveal for users who prefer reduced motion */
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   Legal pages (mentions légales, politique de confidentialité)
   ========================================================================== */

.legal-page {
    padding: 80px 0 96px;
    background: var(--cream);
    min-height: 60vh;
}
.legal-page__inner {
    max-width: 820px;
}
.legal-page__head {
    margin-bottom: 48px;
}
.legal-page__head h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    margin-bottom: 8px;
}
.legal-page__date {
    color: var(--stone-500);
    font-size: 14px;
    font-style: italic;
    margin-top: 12px;
}
.legal-page section {
    margin-bottom: 36px;
}
.legal-page section h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    color: var(--ink-900);
    margin-bottom: 16px;
}
.legal-page section h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 17px;
    color: var(--green-700);
    margin: 22px 0 10px;
}
.legal-page section p {
    color: var(--ink-700);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 12px;
}
.legal-page section p strong {
    color: var(--ink-900);
    font-weight: 600;
}
.legal-page section ul {
    list-style: disc;
    padding-left: 22px;
    margin: 8px 0 12px;
}
.legal-page section ul li {
    color: var(--ink-700);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 6px;
    list-style: disc;
}
.legal-page a {
    color: var(--green-700);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.2s var(--ease);
}
.legal-page a:hover { color: var(--green-900); }

.legal-page__inline-btn {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    color: var(--green-700);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    font: inherit;
}
.legal-page__inline-btn:hover { color: var(--green-900); }

.legal-page__back {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--stone-200);
    font-size: 15px;
}
.legal-page__back a {
    text-decoration: none;
    font-weight: 600;
}
.legal-page__back a:hover { text-decoration: underline; }

@media (max-width: 800px) {
    .legal-page { padding: 56px 0 72px; }
    .legal-page__head { margin-bottom: 32px; }
    .legal-page section { margin-bottom: 28px; }
    .legal-page section h2 { font-size: 22px; }
}

/* ==========================================================================
   Footer "Manage my cookies" button
   ========================================================================== */

.footer__cookie-btn {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    font-size: 14px;
    color: rgba(225, 236, 229, 0.85);
    cursor: pointer;
    transition: color 0.2s var(--ease);
    text-align: left;
}
.footer__cookie-btn:hover { color: var(--white); }

/* ==========================================================================
   Cookie consent banner + panel
   ========================================================================== */

.cookie-root {
    position: relative;
    z-index: 1000;
}

/* --- Banner -------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius);
    box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.22);
    animation: cookie-banner-in 0.35s var(--ease) both;
    max-width: 1180px;
    margin: 0 auto;
}
@keyframes cookie-banner-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner[hidden] { display: none; }

.cookie-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 22px 24px;
}
.cookie-banner__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--ink-900);
    margin: 0 0 6px;
}
.cookie-banner__text {
    color: var(--stone-500);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 8px;
    max-width: 70ch;
}
.cookie-banner__link {
    margin: 0;
    font-size: 13px;
}
.cookie-banner__link a {
    color: var(--green-700);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-banner__link a:hover { color: var(--green-900); }

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}
.cookie-btn {
    font-size: 13px;
    padding: 10px 16px;
}
/* CNIL: "refuse" must be as visible as "accept" */
.cookie-btn--equal {
    background: var(--ink-900);
    color: var(--white);
}
.cookie-btn--equal:hover { background: var(--ink-700); }

@media (max-width: 800px) {
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
    .cookie-banner__inner { grid-template-columns: 1fr; gap: 16px; padding: 18px; }
    .cookie-banner__actions { justify-content: stretch; }
    .cookie-btn { flex: 1 1 calc(50% - 4px); justify-content: center; }
}

/* --- Panel (preferences modal) ------------------------------------------ */
.cookie-panel {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cookie-panel[hidden] { display: none; }
.cookie-panel__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 20, 0.55);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    animation: cookie-fade-in 0.2s var(--ease) both;
}
@keyframes cookie-fade-in { from { opacity: 0; } to { opacity: 1; } }
.cookie-panel__dialog {
    position: relative;
    background: var(--white);
    width: min(560px, 100%);
    max-height: 85vh;
    overflow: auto;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    animation: cookie-panel-in 0.3s var(--ease) both;
}
@keyframes cookie-panel-in {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}
.cookie-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--stone-200);
}
.cookie-panel__head h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    margin: 0;
    color: var(--ink-900);
}
.cookie-panel__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--ink-700);
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.cookie-panel__close:hover { background: var(--stone-200); }
.cookie-panel__body {
    padding: 22px 24px;
    display: grid;
    gap: 18px;
}
.cookie-panel__intro {
    color: var(--stone-500);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 4px;
}
.cookie-panel__foot {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 16px 24px;
    border-top: 1px solid var(--stone-200);
}

body.cookie-panel-open { overflow: hidden; }

/* --- Cookie row (per category) ------------------------------------------ */
.cookie-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: flex-start;
    padding: 14px;
    background: var(--cream);
    border-radius: var(--radius-sm);
}
.cookie-row__label h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    color: var(--ink-900);
    margin: 0 0 4px;
}
.cookie-row__label p {
    color: var(--stone-500);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- Toggle ------------------------------------------------------------- */
.cookie-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    flex: 0 0 auto;
}
.cookie-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.cookie-toggle__slider {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
    background: var(--stone-300);
    border-radius: 999px;
    transition: background 0.25s var(--ease);
    flex: 0 0 auto;
}
.cookie-toggle__slider::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: transform 0.25s var(--ease);
}
.cookie-toggle input:checked + .cookie-toggle__slider {
    background: var(--green-700);
}
.cookie-toggle input:checked + .cookie-toggle__slider::after {
    transform: translateX(18px);
}
.cookie-toggle__state {
    font-size: 12px;
    color: var(--stone-500);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.cookie-toggle__on { display: none; }
.cookie-toggle input:checked ~ .cookie-toggle__state .cookie-toggle__off { display: none; }
.cookie-toggle input:checked ~ .cookie-toggle__state .cookie-toggle__on { display: inline; }

.cookie-toggle--locked { cursor: not-allowed; opacity: 0.85; }
.cookie-toggle--locked .cookie-toggle__slider { background: var(--green-300); }
.cookie-toggle--locked .cookie-toggle__slider::after { transform: translateX(18px); }
.cookie-toggle--locked .cookie-toggle__state { color: var(--green-700); }

@media (max-width: 520px) {
    .cookie-row { grid-template-columns: 1fr; }
    .cookie-toggle { justify-content: flex-start; }
    .cookie-banner__title { font-size: 18px; }
    .cookie-banner__text { font-size: 13px; }
}

/* ============ RECOMMENDATIONS ============ */
.recommendations {
    padding: 130px 0;
    background: var(--paper);
}
.recommendations__marquee {
    margin-top: 48px;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.recommendations__track {
    display: inline-flex;
    align-items: stretch;
    gap: 24px;
    padding-right: 24px;
    animation: recommendations-marquee-reverse 75s linear infinite !important;
    white-space: normal;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}
@keyframes recommendations-marquee-reverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}
/* No pause on hover for the recommendations carousel */
.recommendations__marquee:hover .recommendations__track { animation-play-state: running; }
.recommendations__track .recommendation {
    flex: 0 0 340px;
    width: 340px;
}
.recommendation {
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.recommendation__header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.recommendation__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.recommendation__identity { display: flex; flex-direction: column; gap: 2px; }
.recommendation__name { font-weight: 600; font-size: 14px; margin: 0; }
.recommendation__role { font-size: 12px; color: var(--stone-500); line-height: 1.3; margin: 0; }
.recommendation__quote {
    font-size: 14px;
    line-height: 1.5;
    color: var(--stone-700);
    font-style: italic;
    border-left: 2px solid var(--green-700);
    padding-left: 12px;
    margin: 0;
}
@media (max-width: 700px) {
    .recommendations__track .recommendation {
        flex: 0 0 280px;
        width: 280px;
    }
    .recommendations__track {
        animation-duration: 30s !important;
    }
}

/* ============================================================
   ARTICLES — règles à fusionner dans styles.css de TSM
   ============================================================ */

/* ---------- Page article ---------- */
.article-page main {
    padding-top: 2rem;
}

.article-header {
    max-width: 760px;
    margin: 0 auto;
    padding-block: 2rem 3rem;
    text-align: left;
}

.article-meta {
    color: var(--c-text-muted, #5a5d54);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-meta__sep {
    margin-inline: 0.5rem;
    opacity: 0.5;
}

.article-title {
    font-family: "Newsreader", serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    color: var(--c-primary, #1E3D2F);
    margin: 0;
}

/* ==========================================================================
   Sommaire navigable sticky (sticky TOC)
   - Génération HTML côté Python : <nav class="article-toc"> + <ol BEM>.
   - Sticky à gauche en desktop (>=1024px), collapsible en haut en mobile.
   - Comportement interactif (scroll-spy, smooth scroll, toggle) dans script.js.
   ========================================================================== */

/* Tokens locaux exposés pour ajustement rapide */
:root {
    --toc-width: 250px;
    --toc-gap: 4rem;
    --toc-sticky-top: 6rem;
    --toc-mobile-max: 70vh;
}

/* ---------- Layout sommaire + contenu ---------- */
.article-layout {
    display: grid;
    grid-template-columns: var(--toc-width) 1fr;
    gap: var(--toc-gap);
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding-block: 2rem 5rem;
}

/* Tablette + mobile : sommaire passe au-dessus, pleine largeur */
@media (max-width: 1023px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ---------- Sommaire (nav racine) ---------- */
.article-toc {
    position: sticky;
    top: var(--toc-sticky-top);
    align-self: start;
    max-height: calc(100vh - (var(--toc-sticky-top) + 2rem));
    overflow-y: auto;
    background: var(--paper);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ---------- Bouton mobile (caché en desktop) ---------- */
.article-toc__toggle {
    display: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    padding: 0;
}

/* Chevron simple via pseudo-élément, pivoté à l'ouverture */
.article-toc__toggle::after {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    margin-left: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s var(--ease);
}

.article-toc__toggle[aria-expanded="true"]::after {
    transform: translateY(1px) rotate(-135deg);
}

/* ---------- Liste ---------- */
.article-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}

.article-toc__item {
    margin: 0 0 0.5rem;
    line-height: 1.4;
    counter-increment: toc;
}

.article-toc__item:last-child {
    margin-bottom: 0;
}

/* ---------- Liens ---------- */
.article-toc__link {
    display: block;
    position: relative;
    padding: 0.25rem 0 0.25rem 0.75rem;
    color: var(--ink-700);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.article-toc__link:hover {
    color: var(--green-700);
}

.article-toc__link:focus-visible {
    outline: 2px solid var(--green-700);
    outline-offset: 2px;
    border-radius: 2px;
}

/* État actif (scroll-spy) — gras + indicateur vertical */
.article-toc__link--active {
    color: var(--green-700);
    font-weight: 600;
    border-left-color: var(--green-700);
}

/* ---------- Responsive : tablette + mobile ---------- */
@media (max-width: 1023px) {
    .article-toc {
        position: static;
        max-height: none;
        overflow: visible;
        margin-bottom: 1rem;
        padding: 1rem 1.25rem;
    }

    .article-toc__toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Liste fermée par défaut, animée par max-height */
    .article-toc__list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s var(--ease), margin-top 0.3s var(--ease);
        margin-top: 0;
    }

    .article-toc__list--open {
        max-height: var(--toc-mobile-max);
        overflow-y: auto;
        margin-top: 0.75rem;
    }
}

/* ---------- prefers-reduced-motion : désactive transitions douces ---------- */
@media (prefers-reduced-motion: reduce) {
    .article-toc__toggle::after,
    .article-toc__link,
    .article-toc__list {
        transition: none;
    }
}

/* ---------- Contenu de l'article ---------- */
.article-content {
    max-width: 720px;
    color: var(--c-text, #15140F);
    line-height: 1.7;
    font-size: 1.05rem;
}

.article-content > p:first-of-type {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--c-primary, #1E3D2F);
    font-weight: 500;
}

.article-content h2 {
    font-family: "Newsreader", serif;
    font-size: 1.7rem;
    line-height: 1.3;
    color: var(--c-primary, #1E3D2F);
    margin: 3rem 0 1rem;
    scroll-margin-top: 5rem;
}

.article-content h3 {
    font-size: 1.25rem;
    color: var(--c-primary, #1E3D2F);
    margin: 2rem 0 0.75rem;
    scroll-margin-top: 5rem;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

/* Restaure les puces/numéros (le reset global ul,ol applique list-style:none) */
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    font-weight: 600;
    color: var(--c-primary, #1E3D2F);
}

.article-content a {
    color: var(--c-primary, #1E3D2F);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-content a:hover {
    text-decoration-thickness: 2px;
}

.article-content em {
    font-family: "Newsreader", serif;
    font-style: italic;
    font-weight: 500;
}

.article-section {
    margin-bottom: 1rem;
}

/* ---------- CTA inline ---------- */
.article-cta {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--c-accent-light, #E1ECE5);
    border-left: 4px solid var(--c-primary, #1E3D2F);
    border-radius: 0.25rem;
}

.article-cta p {
    margin-bottom: 1rem;
}

.article-cta__fee {
    font-size: 0.95rem;
    color: var(--c-text-muted, #5a5d54);
    margin-bottom: 1.5rem !important;
}

.article-cta .btn {
    display: inline-block;
    text-decoration: none;     /* override .article-content a (underline) */
}

.article-cta .btn--primary {
    color: var(--white);       /* override .article-content a (vert primary -> texte invisible sur fond vert) */
}

/* ---------- FAQ ---------- */
.article-faq {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--c-border, #d4d2c8);
}

.article-faq h2 {
    font-family: "Newsreader", serif;
    font-size: 1.7rem;
    color: var(--c-primary, #1E3D2F);
    margin-bottom: 1.5rem;
}

.article-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.article-faq__item {
    border: 1px solid var(--c-border, #d4d2c8);
    border-radius: 0.5rem;
    overflow: hidden;
}

.article-faq__item summary {
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-weight: 500;
    color: var(--c-primary, #1E3D2F);
    background: var(--c-paper, #F5F4EE);
    user-select: none;
    list-style: none;
    position: relative;
    padding-right: 2.5rem;
}

.article-faq__item summary::-webkit-details-marker {
    display: none;
}

.article-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--c-primary, #1E3D2F);
    transition: transform 0.2s;
}

.article-faq__item[open] summary::after {
    content: "−";
}

.article-faq__answer {
    padding: 1rem 1.25rem;
    line-height: 1.6;
}

.article-faq__answer p {
    margin-bottom: 0.75rem;
}

.article-faq__answer p:last-child {
    margin-bottom: 0;
}

/* ---------- Désactivation du switch JS pour les articles ---------- */
/* Sur les pages article, le contenu est monolingue. On masque les spans
   lang qui ne correspondent pas à la langue de la page. */
.article-page [lang]:not(:lang(fr)):not(:lang(en)) {
    /* Cas générique, ne change rien */
}

/* La nav et le footer du template article ont déjà du texte monolingue
   (pas de spans lang FR/EN imbriqués), donc rien à masquer côté JS. */

/* ============================================================
   CASE TEASER CARD (under client logos)
   ============================================================ */
.case-teaser-wrapper {
    padding: 8px 24px 32px;
    display: flex;
    justify-content: center;
    background: transparent;
}

.case-teaser-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #FFFFFF;
    border: 0.5px solid #E5E2D9;
    border-radius: 8px;
    padding: 14px 18px;
    max-width: 720px;
    width: 100%;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease;
    cursor: pointer;
}

.case-teaser-card:hover {
    border-color: #1E3D2F;
}

.case-teaser-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.case-teaser-content {
    flex: 1;
    min-width: 0;
}

.case-teaser-eyebrow {
    font-size: 11px;
    font-weight: 500;
    color: #5F5E5A;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.case-teaser-name {
    font-size: 15px;
    font-weight: 500;
    color: #1E3D2F;
    line-height: 1.3;
}

.case-teaser-context {
    font-size: 13px;
    color: #5F5E5A;
    line-height: 1.4;
    margin-top: 2px;
}

.case-teaser-arrow {
    font-size: 22px;
    color: #1E3D2F;
    flex-shrink: 0;
    line-height: 1;
    font-weight: 300;
}

@media (max-width: 600px) {
    .case-teaser-card {
        padding: 12px 14px;
        gap: 12px;
    }
    .case-teaser-photo {
        width: 48px;
        height: 48px;
    }
    .case-teaser-name {
        font-size: 14px;
    }
    .case-teaser-context {
        font-size: 12px;
    }
}

/* ============================================================
   BOOK ANNOUNCE BANNER (top of page, pre-launch email capture)
   ============================================================ */
.book-announce-banner {
    background: #1E3D2F;
    color: #F1EFE8;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.book-announce-text {
    font-size: 14px;
    line-height: 1.4;
    color: #F1EFE8;
}

.book-announce-text em {
    font-style: italic;
    font-weight: 500;
}

.book-announce-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.book-announce-input {
    height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    border: none;
    background: #FFFFFF;
    color: #1E3D2F;
    font-size: 13px;
    font-family: inherit;
    width: 200px;
    -webkit-appearance: none;
    appearance: none;
}

.book-announce-input::placeholder {
    color: #5F5E5A;
    opacity: 1;
}

.book-announce-input::-webkit-input-placeholder {
    color: #5F5E5A;
    opacity: 1;
}

.book-announce-input::-moz-placeholder {
    color: #5F5E5A;
    opacity: 1;
}

.book-announce-input:focus {
    outline: 2px solid #F1EFE8;
    outline-offset: 1px;
}

.book-announce-button {
    height: 38px;
    padding: 0 22px;
    border-radius: 6px;
    border: none;
    background-color: #F1EFE8 !important;
    color: #1E3D2F !important;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    text-align: center;
    line-height: 1;
}

.book-announce-button:hover {
    background-color: #E5E1D3 !important;
}

.book-announce-confirmation {
    color: #F1EFE8;
    font-size: 14px;
    padding: 9px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .book-announce-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 16px;
    }

    .book-announce-form {
        width: 100%;
        justify-content: center;
    }

    .book-announce-input {
        flex: 1;
        width: auto;
    }
}

/* ============================================================
   LANG SWITCH (single anchor with globe icon, in nav after CTA)
   Replaces former FR · EN toggle.
   ============================================================ */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 1.25rem;
    padding: 0.4rem 0.6rem;
    color: #5F5E5A;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.lang-switch:hover,
.lang-switch:focus {
    color: #1E3D2F;
    background-color: rgba(30, 61, 47, 0.06);
    text-decoration: none;
    outline: none;
}

.lang-switch:focus-visible {
    outline: 2px solid #1E3D2F;
    outline-offset: 2px;
}

.lang-switch svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.lang-switch span {
    line-height: 1;
}

@media (max-width: 768px) {
    .lang-switch {
        margin-left: 0.5rem;
        padding: 0.3rem 0.5rem;
        font-size: 0.85rem;
    }
}
