/* ============================================================
   BTP 360 — Design System & page d'accueil
   Dark #030303 · Accent #FF5443 · Satoshi (titres) + Inter (texte)
   ============================================================ */

:root {
    --bg: #030303;
    --bg-soft: #0a0a0a;
    --card: rgba(13, 13, 13, 0.72);
    --card-hover: rgba(24, 24, 24, 0.92);
    --accent: #FF5443;
    --accent-hover: #ff6b5a;
    --accent-soft: rgba(255, 84, 67, 0.1);
    --accent-border: rgba(255, 84, 67, 0.3);
    --gold: #E5C07B;
    --success: #10b981;
    --text: #ffffff;
    --text-soft: #d1d5db;
    --dim: #9ca3af;
    --dim-2: #71717a;
    --border: rgba(255, 255, 255, 0.08);
    --border-soft: rgba(255, 255, 255, 0.05);
    --radius: 20px;
    --radius-lg: 28px;
    --font-title: 'Satoshi', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1200px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: clamp(15px, 14px + 0.25vw, 18px);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }

/* Les ancres tiennent compte du header fixe */
section[id] { scroll-margin-top: 100px; }

/* Navigation clavier visible */
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 950px; }

/* ---------- Typographie ---------- */
.h-display, .h-section {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0;
}
.h-display { font-size: clamp(36px, 6.5vw, 78px); }
.h-section { font-size: clamp(28px, 4.2vw, 50px); }
.h-section .accent, .h-display .accent { color: var(--accent); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}
.section-label .dot {
    width: 6px; height: 6px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
    animation: pulse 2s infinite;
}
@media (max-width: 480px) {
    .section-label { font-size: 9.5px; letter-spacing: 1.6px; padding: 7px 14px; }
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .45; transform: scale(.8);} }

.lead {
    color: var(--dim);
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.65;
    margin: 18px 0 0;
}
.lead strong { color: #fff; font-weight: 700; }

section { padding: clamp(56px, 7vw, 92px) 0; position: relative; }

/* Équilibrage typographique : pas de mot orphelin, pas de coupe moche */
h1, h2, h3, h4, .h-display, .h-section { text-wrap: balance; }
p, li, figcaption { text-wrap: pretty; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto clamp(40px, 6vw, 70px); }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    padding: 18px 38px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn .arr { transition: transform 0.3s ease; }
.btn:hover .arr { transform: translateX(5px); }

.btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 84, 67, 0.3);
}
.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 84, 67, 0.45);
}
.btn--light { background: #fff; color: #030303; }
.btn--light:hover { background: var(--accent); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,84,67,0.4); }
.btn--ghost {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn--ghost:hover { background: var(--accent-soft); transform: translateY(-2px); }

.cta-note {
    margin-top: 16px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.cta-note span { display: inline-flex; align-items: center; gap: 6px; }
.cta-note svg { color: var(--success); }

/* Anneau orbital autour du CTA hero */
.cta-ring {
    position: relative;
    display: inline-block;
    padding: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
}
.cta-ring::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent, var(--accent), transparent);
    animation: rotateRing 3.5s linear infinite;
}
@keyframes rotateRing { to { transform: rotate(360deg); } }
.cta-ring .btn { position: relative; z-index: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 12px; left: 20px; right: 20px;
    z-index: 9999;
    transition: transform 0.35s ease;
}
.site-header.is-hidden { transform: translateY(calc(-100% - 30px)); }
.site-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.site-header__logo { display: flex; align-items: center; text-decoration: none; }
.site-header__logo img { height: 46px; width: auto; border-radius: 8px; }
.site-header__nav { display: none; align-items: center; gap: 4px; }
.site-header__nav a {
    color: var(--dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.25s ease;
    position: relative;
}
.site-header__nav a::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 14px; right: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.site-header__nav a:hover { color: #fff; }
.site-header__nav a:hover::after { transform: scaleX(1); }
.site-header__cta {
    display: inline-flex;
    margin-left: auto;
    font-size: 10.5px;
    padding: 9px 12px;
    letter-spacing: 0.4px;
}
.burger {
    width: 44px; height: 44px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}
.burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 1px; transition: all 0.3s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 96px; left: 20px; right: 20px;
    z-index: 9998;
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 24px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 22px; }
.mobile-menu nav a {
    color: var(--dim);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
}
.mobile-menu nav a:hover { color: #fff; background: var(--accent-soft); }
.mobile-menu .btn { width: 100%; max-width: 320px; margin: 0 auto; display: flex; }

@media (min-width: 1024px) {
    .site-header { left: 40px; right: 40px; }
    .site-header__inner { height: 82px; padding: 0 32px; }
    .site-header__logo img { height: 54px; }
    .site-header__nav { display: flex; }
    .site-header__cta { margin-left: 0; font-size: 13px; padding: 12px 24px; }
    .burger, .mobile-menu { display: none; }
}
@media (max-width: 480px) {
    .site-header { left: 12px; right: 12px; top: 10px; }
    .site-header__inner { height: 60px; padding: 0 12px; gap: 8px; }
    .site-header__logo img { height: 38px; }
    .mobile-menu { left: 12px; right: 12px; top: 84px; }
}

/* CTA mobile qui suit le lecteur après le manifeste */
.mobile-sticky-cta {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 6px 20px rgba(255, 84, 67, 0.35);
    transform: translateY(130%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
}
.mobile-sticky-cta.is-on { transform: translateY(0); opacity: 1; }
@media (min-width: 900px) { .mobile-sticky-cta { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 0 90px;
    position: relative;
    overflow: hidden;
}
/* Fond 100% CSS : grille + halos — remplace l'image de 500 Ko */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 25%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 25%, transparent 78%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 42% at 22% 18%, rgba(255, 84, 67, 0.10), transparent 65%),
        radial-gradient(ellipse 45% 38% at 82% 75%, rgba(255, 84, 67, 0.07), transparent 60%),
        linear-gradient(to bottom, transparent 75%, var(--bg) 100%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.hero h1 { margin-bottom: 26px; }
.hero h1 .line-sub {
    display: block;
    font-size: clamp(20px, 3.2vw, 40px);
    margin-top: 18px;
    color: var(--text-soft);
}
.hero h1 .morph {
    color: var(--accent);
    text-shadow: 0 0 35px rgba(255, 84, 67, 0.35);
    white-space: nowrap;
}
.hero h1 .morph .cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--accent);
    margin-left: 5px;
    vertical-align: baseline;
    animation: blink 0.75s infinite;
    box-shadow: 0 0 8px var(--accent);
}
@keyframes blink { 0%,100% { opacity: 1;} 50% { opacity: 0.25;} }

.hero-divider {
    width: 230px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 84, 67, 0.55), transparent);
    margin: 26px auto;
    box-shadow: 0 0 12px rgba(255, 84, 67, 0.3);
}
.hero .lead { max-width: 660px; margin-bottom: 0; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: clamp(46px, 6vw, 64px);
    width: 100%;
    max-width: 900px;
    border-top: 1px solid var(--border-soft);
    padding-top: 38px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    font-size: clamp(26px, 3.4vw, 44px);
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.hero-stat .num em { color: var(--accent); font-style: italic; }
.hero-stat .lbl {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--dim);
}
@media (max-width: 700px) {
    .hero { padding-top: 120px; min-height: auto; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
}

/* Ligne de qualification sous le CTA hero */
.hero-for {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dim);
    letter-spacing: 0.4px;
}
.hero-for strong { color: var(--text-soft); font-weight: 800; }

/* ============================================================
   MANIFESTO (la big idea)
   ============================================================ */
.manifesto { max-width: 860px; margin: 0 auto; }
.manifesto .m-body {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--text-soft);
    line-height: 1.75;
    margin: 0 0 26px;
}
.manifesto .m-body strong { color: #fff; }
.manifesto .m-body .neg { color: var(--accent); font-weight: 700; }
.manifesto .m-future {
    border-left: 3px solid var(--accent);
    padding: 10px 0 10px 28px;
    margin: 40px 0;
}
.manifesto .m-future p {
    font-size: clamp(18px, 2.2vw, 23px);
    color: #fff;
    line-height: 1.65;
    margin: 0;
    font-weight: 500;
}
.manifesto .m-future strong { color: var(--accent); font-weight: 800; }
.manifesto .m-final {
    text-align: center;
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(22px, 3.4vw, 38px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 52px 0 0;
}
.manifesto .m-final span { color: var(--accent); }

/* ============================================================
   SECTION PROBLÈME (Pour qui)
   ============================================================ */
.pains { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 900px) { .pains { grid-template-columns: repeat(4, 1fr); gap: 22px; } }
.pain {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: all 0.35s ease;
}
.pain:hover { border-color: var(--accent-border); transform: translateY(-4px); background: var(--card-hover); }
.pain .ico {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.pain h3 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0 0 8px;
}
.pain p { font-size: 15px; color: var(--dim); margin: 0; line-height: 1.6; }
@media (max-width: 600px) {
    .pains { grid-template-columns: 1fr; }
    .pain { display: flex; gap: 18px; align-items: flex-start; padding: 22px 20px; }
    .pain .ico { flex-shrink: 0; margin-bottom: 0; }
}
.pain-punch {
    text-align: center;
    margin-top: clamp(40px, 6vw, 60px);
}
.pain-punch p {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.25;
    margin: 0;
}
.pain-punch p span { color: var(--accent); }
.pain-punch .sub { font-family: var(--font-body); font-style: normal; font-weight: 500; text-transform: none; font-size: 16px; color: var(--dim); margin-top: 14px; }

/* ============================================================
   EXPERTISE (bento)
   ============================================================ */
.bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.bento > .b-profile, .bento > .b-story, .bento > .b-cta { grid-column: span 2; }
@media (min-width: 1024px) {
    .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(235px, auto); gap: 22px; }
    .bento > .b-profile { grid-column: 1 / -1; grid-row: span 2; }
    .bento > .b-story { grid-column: span 2; }
    .bento > .b-cta { grid-column: span 2; }
}
.b-card {
    background: var(--card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}
.b-card:hover { border-color: var(--accent-border); transform: translateY(-4px); }

/* Bannière Momento Travaux (au-dessus du bento) */
.momento-banner {
    margin: 0 0 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease;
}
.momento-banner:hover { border-color: var(--accent-border); }
.momento-banner .m-shot { position: relative; aspect-ratio: 3 / 2; }
.momento-banner img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 42%;
    filter: contrast(1.04);
    transition: transform 0.6s ease;
}
.momento-banner:hover img { transform: scale(1.02); }
.momento-banner .m-veil { display: none; }
.momento-banner .m-info { padding: 16px 18px; border-top: 1px solid var(--border-soft); }
.momento-banner .tag {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    display: block;
    margin-bottom: 6px;
}
.momento-banner .name {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1;
    margin: 0 0 6px;
}
.momento-banner .role { font-size: 13.5px; color: var(--dim); margin: 0; }
@media (min-width: 900px) {
    .momento-banner { margin-bottom: 22px; }
    .momento-banner .m-shot { aspect-ratio: 1.85 / 1; }
    .momento-banner .m-veil {
        display: block;
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.18) 26%, transparent 45%);
    }
    .momento-banner .m-info {
        position: absolute;
        right: 0; bottom: 0;
        border-top: none;
        padding: 26px 28px;
        text-align: right;
        max-width: 620px;
        z-index: 2;
    }
    .momento-banner .name { font-size: 30px; }
    .momento-banner .role { font-size: 14px; color: rgba(255, 255, 255, 0.82); }
}

.b-profile { min-height: 250px; padding: 0; background: #000; }
@media (min-width: 700px) { .b-profile { min-height: 400px; } }
.b-profile img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: contrast(1.04);
    transition: transform 0.6s ease;
}
.b-profile:hover img { transform: scale(1.02); }
.b-profile .veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.25) 28%, transparent 50%);
}
.b-profile .info {
    position: relative;
    margin-top: auto;
    margin-left: auto;
    padding: 28px;
    z-index: 2;
    text-align: right;
    max-width: 580px;
}
.b-profile .tag {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}
.b-profile .name {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1;
    margin: 0 0 6px;
}
.b-profile .role { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0; }
@media (max-width: 700px) {
    .b-profile .info { padding: 14px 16px; max-width: 100%; }
    .b-profile .tag { font-size: 8.5px; letter-spacing: 1.3px; margin-bottom: 5px; }
    .b-profile .name { font-size: 18px; }
    .b-profile .role { font-size: 11.5px; }
}

.b-stat { align-items: center; justify-content: center; text-align: center; }
.b-stat .num {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    font-size: 46px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}
.b-stat .lbl { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.3px; margin-bottom: 6px; }
.b-stat .dsc { font-size: 14px; color: var(--dim); line-height: 1.5; }
.b-stat--hl { border-color: var(--accent-border); background: rgba(255, 84, 67, 0.05); }
@media (max-width: 600px) {
    .b-card { padding: 22px 18px; }
    .b-stat .num { font-size: 40px; }
}

.b-story { justify-content: center; }
.story-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-soft);
}
.story-head img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-border);
}
.story-head b { display: block; font-size: 15px; font-weight: 800; }
.story-head span { font-size: 12.5px; color: var(--dim); }
.b-story p { font-size: 15.5px; color: var(--text-soft); line-height: 1.7; margin: 0; }
.b-story strong { color: #fff; }
.b-story .hl { color: var(--accent); font-weight: 900; font-style: italic; }

.b-cta {
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #080808;
    text-decoration: none;
    cursor: pointer;
}
.b-cta .t {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.b-cta .s { font-size: 14px; color: var(--dim); margin-bottom: 22px; max-width: 420px; }

/* ============================================================
   MÉTHODE (6 piliers)
   ============================================================ */
.method-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 22px;
    background: rgba(255, 84, 67, 0.05);
    border: 1px solid rgba(255, 84, 67, 0.15);
    border-radius: 16px;
    padding: 16px 28px;
    margin: 0 auto clamp(36px, 5vw, 54px);
    max-width: 760px;
}
.method-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}
.method-info svg { color: var(--accent); flex-shrink: 0; }
.method-info .hl { color: var(--accent); }
@media (max-width: 600px) {
    .method-info { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 22px; }
    .method-info span { align-items: flex-start; text-align: left; }
    .method-info svg { margin-top: 3px; }
}

.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 900px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.pillar {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.72), rgba(10, 10, 10, 0.92));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pillar:hover {
    border-color: rgba(255, 84, 67, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}
.pillar .num {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    color: var(--accent);
    font-size: 15px;
    margin-bottom: 14px;
    opacity: 0.9;
}
.pillar .ico {
    width: 52px; height: 52px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 13px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.pillar h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; font-style: italic; margin: 0; line-height: 1.3; }
.pillar .bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px; width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.pillar:hover .bar { width: 100%; }
@media (max-width: 600px) {
    .pillars { grid-template-columns: 1fr; }
    .pillar { flex-direction: row; text-align: left; align-items: center; gap: 16px; padding: 18px 20px; }
    .pillar .num { margin: 0; min-width: 30px; }
    .pillar .ico { margin: 0; width: 44px; height: 44px; flex-shrink: 0; }
    .pillar h3 { font-size: 15px; }
}

.not-a-formation {
    text-align: center;
    margin-top: clamp(48px, 7vw, 80px);
    padding-top: clamp(40px, 6vw, 60px);
    border-top: 1px solid var(--border-soft);
}
.not-a-formation h3 {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(24px, 3.6vw, 40px);
    margin: 0 0 14px;
}
.not-a-formation h3 span { color: var(--accent); }
.not-a-formation p { color: var(--text-soft); font-size: 17px; max-width: 760px; margin: 0 auto; }
.not-a-formation p strong { color: #fff; }

/* ============================================================
   ACCOMPAGNEMENT (offre unique 12 mois)
   ============================================================ */
.offer-wrap {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.8), rgba(5, 5, 5, 0.92));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(36px, 5vw, 60px);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 20px rgba(255, 255, 255, 0.02), 0 40px 100px -20px rgba(0, 0, 0, 0.9);
}
.offer-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.85;
}
.offer-head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.offer-tempo {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 14px;
    flex-wrap: wrap;
    margin: 26px 0 28px;
}
.offer-tempo .tempo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 14px 24px;
}
.offer-tempo .tempo .n {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    font-size: 46px;
    line-height: 1;
    letter-spacing: -2px;
}
.offer-tempo .tempo--lead {
    border-color: var(--accent-border);
    background: rgba(255, 84, 67, 0.06);
}
@media (max-width: 600px) {
    .offer-tempo { flex-direction: column; align-items: center; gap: 10px; }
    .offer-tempo .tempo { width: 100%; max-width: 300px; }
}
.offer-tempo .tempo--lead .n { color: var(--accent); }
.offer-tempo .tempo .t { text-align: left; }
.offer-tempo .tempo .t b { display: block; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; }
.offer-tempo .tempo .t small { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--dim); line-height: 1.45; margin-top: 2px; }
.offer-head h3 {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(24px, 3.4vw, 38px);
    margin: 0 0 14px;
    line-height: 1.15;
}
.offer-head p { color: var(--dim); max-width: 700px; margin: 0 auto; font-size: 16px; }
.offer-head p strong { color: #fff; }

/* Timeline jalons */
.milestones { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: clamp(36px, 5vw, 56px); position: relative; }
@media (min-width: 900px) {
    .milestones { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .milestone:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -19px;
        top: 50%;
        transform: translateY(-50%);
        font-family: var(--font-title);
        font-weight: 900;
        font-style: italic;
        font-size: 17px;
        color: var(--accent);
        opacity: 0.8;
        z-index: 2;
    }
}
.milestone {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    position: relative;
    transition: all 0.35s ease;
}
.milestone:hover { border-color: var(--accent-border); transform: translateY(-4px); }
.milestone .phase {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.milestone h4 {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 19px;
    margin: 0 0 12px;
    line-height: 1.2;
}
.milestone ul { list-style: none; padding: 0; margin: 0; }
.milestone li {
    font-size: 15px;
    color: var(--dim);
    padding-left: 22px;
    position: relative;
    margin-bottom: 9px;
    line-height: 1.5;
}
.milestone li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 12px; height: 12px;
    border-radius: 4px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.4);
}
.milestone li::after {
    content: '✓';
    position: absolute;
    left: 2.5px; top: 4px;
    font-size: 8px;
    font-weight: 900;
    color: var(--success);
}

/* Inclusions */
.includes-title {
    text-align: center;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 28px;
}
.includes { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 980px; margin: 0 auto; }
@media (min-width: 720px) { .includes { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.include {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 18px 20px;
    transition: border-color 0.3s ease;
}
.include:hover { border-color: var(--border); }
.include--hl {
    border-color: rgba(255, 84, 67, 0.28);
    background: rgba(255, 84, 67, 0.045);
}
.include--hl:hover { border-color: var(--accent-border); }
.include .sq {
    width: 22px; height: 22px;
    border-radius: 6px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--success);
    font-size: 12px;
    font-weight: 900;
}
.include .tx b { display: block; font-size: 15px; font-weight: 800; color: #fff; line-height: 1.35; margin-bottom: 5px; }
.include .tx p { margin: 0; font-size: 14px; color: var(--dim); line-height: 1.55; }

.offer-custom {
    margin-top: clamp(34px, 5vw, 50px);
    text-align: center;
    border: 1px solid rgba(229, 192, 123, 0.22);
    background: rgba(229, 192, 123, 0.04);
    border-radius: 16px;
    padding: 22px 28px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.offer-custom p { margin: 0; font-size: 15px; color: var(--dim); line-height: 1.65; }
.offer-custom strong { color: var(--gold); font-weight: 800; }

.offer-foot { text-align: center; margin-top: clamp(34px, 5vw, 50px); }
.offer-foot .note { margin-top: 18px; font-size: 14.5px; color: var(--dim); }
.offer-foot .note strong { color: var(--accent); }

/* ============================================================
   RÉSULTATS / PREUVES
   ============================================================ */
.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: clamp(36px, 5vw, 54px);
}
@media (max-width: 700px) { .proof-stats { grid-template-columns: 1fr; gap: 12px; } }
.proof-stat {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 20px;
}
.proof-stat .num {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    font-size: clamp(36px, 4.5vw, 54px);
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}
.proof-stat .lbl { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.3px; color: var(--text-soft); }

.proof-stat .num sup { font-size: 0.45em; vertical-align: super; }

/* Témoignage vidéo + note côte à côte */
.proof-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}
@media (min-width: 900px) {
    .proof-row { grid-template-columns: 1.25fr 1fr; gap: 22px; }
    .proof-row .proof-note {
        max-width: none;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
.video-card {
    margin: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}
.video-card:hover { border-color: var(--accent-border); }
.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(3, 3, 3, 0.55), rgba(3, 3, 3, 0.12));
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.video-play:hover { background: linear-gradient(to top, rgba(3, 3, 3, 0.65), rgba(3, 3, 3, 0.2)); }
.video-play .pp {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(255, 84, 67, 0.45);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.video-play .pp::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 84, 67, 0.55);
    animation: ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    75%, 100% { transform: scale(1.55); opacity: 0; }
}
.video-play .pp svg { margin-left: 4px; }
.video-play:hover .pp { transform: scale(1.1); }
.video-play.is-hidden { display: none; }
.video-card figcaption {
    padding: 16px 22px;
    font-size: 14px;
    color: var(--dim);
    border-top: 1px solid var(--border-soft);
}
.video-card figcaption b { color: #fff; }
.proof-note {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    padding: clamp(30px, 4vw, 44px) clamp(24px, 4vw, 48px);
}
.proof-note h3 {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(20px, 2.6vw, 28px);
    margin: 0 0 16px;
}
.proof-note p { color: var(--text-soft); font-size: 16px; line-height: 1.7; margin: 0; }
.proof-note p strong { color: #fff; }
.proof-note .sig {
    margin-top: 18px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quotes { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.quote {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}
.quote:hover { border-color: var(--accent-border); transform: translateY(-4px); }
.quote .mark {
    font-family: var(--font-title);
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    line-height: 0.6;
    margin-bottom: 18px;
    font-style: italic;
}
.quote p { font-size: 15.5px; color: var(--text-soft); line-height: 1.65; font-style: italic; margin: 0 0 20px; flex-grow: 1; }
.quote .who { font-size: 12.5px; font-weight: 700; color: var(--dim-2); text-transform: uppercase; letter-spacing: 0.6px; }
.quote .who b { color: var(--accent); }

/* ============================================================
   PROCESS + CLOSING
   ============================================================ */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: clamp(40px, 6vw, 60px); }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 22px;
    text-align: center;
    position: relative;
}
.step .n {
    width: 38px; height: 38px;
    margin: 0 auto 14px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
    font-family: var(--font-title);
    font-style: italic;
}
.step h4 { font-size: 15px; font-weight: 800; text-transform: uppercase; margin: 0 0 6px; }
.step p { font-size: 14px; color: var(--dim); margin: 0; line-height: 1.55; }
@media (max-width: 600px) {
    .steps { grid-template-columns: 1fr 1fr; }
    .step { padding: 20px 14px; }
    .step h4 { font-size: 13.5px; }
    .step p { font-size: 13px; }
}

.closing-box {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), #050505);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 6vw, 60px) clamp(24px, 5vw, 56px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(255, 84, 67, 0.05);
}
.closing-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.closing-box h3 {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(24px, 3.6vw, 38px);
    margin: 0 0 16px;
    line-height: 1.15;
}
.closing-box > p { color: var(--text-soft); font-size: 16px; max-width: 640px; margin: 0 auto 34px; }
.closing-box .capacity {
    font-size: 14px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: -16px auto 30px;
}
.closing-box .capacity strong { font-weight: 900; }
.closing-box .stakes {
    font-size: 15px;
    color: var(--dim);
    font-style: italic;
    max-width: 560px;
    margin: 26px auto 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 900px) {
    .faq-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 20px; }
    .faq-item:last-child { grid-column: 1 / -1; }
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}
.faq-item.is-open {
    background: var(--card-hover);
    border-color: var(--accent-border);
}
.faq-item.is-open::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--accent);
}
.faq-q {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    line-height: 1.4;
}
.faq-q .ic {
    width: 28px; height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 800;
}
.faq-item.is-open .faq-q .ic { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-a-inner {
    padding: 0 24px 24px;
    color: var(--dim);
    font-size: 15px;
    line-height: 1.7;
}
.faq-a-inner strong { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    padding: clamp(50px, 6vw, 80px) 0 0;
    position: relative;
    overflow: hidden;
}
.footer-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: clamp(36px, 5vw, 56px);
    position: relative;
    z-index: 2;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 44px;
}
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; } }
.footer-brand img { height: 60px; border-radius: 10px; margin-bottom: 20px; }
.footer-brand p { color: var(--dim); font-size: 15px; line-height: 1.6; max-width: 340px; margin: 0 0 26px; }
.footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 22px;
    opacity: 0.85;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 13px; }
.footer-col a { color: var(--dim); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 12px;
    color: #52525b;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim-2);
    transition: all 0.3s ease;
}
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.giant-sign {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    font-size: 17vw;
    line-height: 0.78;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 84, 67, 0.32) 0%, rgba(255, 84, 67, 0.05) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -1vw;
    position: relative;
    z-index: 1;
}
@media (max-width: 900px) {
    .footer-brand, .footer-col { text-align: center; }
    .footer-brand img { margin-left: auto; margin-right: auto; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .footer-bottom { flex-direction: column; }
}

/* ============================================================
   BANNIÈRE CONSENTEMENT
   ============================================================ */
.consent {
    position: fixed;
    bottom: 16px; left: 16px; right: 16px;
    z-index: 99999;
    background: rgba(10, 10, 10, 0.97);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 22px;
    display: none;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}
.consent.is-visible { display: flex; }
.consent p { margin: 0; font-size: 13px; color: var(--dim); flex: 1 1 320px; line-height: 1.5; }
.consent p a { color: var(--text-soft); }
.consent .actions { display: flex; gap: 10px; }
.consent button {
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
.consent .ok { background: var(--accent); color: #fff; }
.consent .ok:hover { background: var(--accent-hover); }
.consent .no { background: rgba(255, 255, 255, 0.06); color: var(--dim); }
.consent .no:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ============================================================
   PAGES INTÉRIEURES (parcours, pages légales)
   ============================================================ */
.page-hero { padding: 150px 0 20px; text-align: center; }
.page-hero .lead { max-width: 720px; margin-left: auto; margin-right: auto; }
@media (max-width: 700px) { .page-hero { padding-top: 120px; } }

/* Timeline du parcours */
.timeline { max-width: 860px; margin: 0 auto; }
.tl-step { position: relative; padding: 0 0 clamp(40px, 6vw, 64px) clamp(70px, 9vw, 96px); }
.tl-step::before {
    content: '';
    position: absolute;
    left: 26px; top: 56px; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 84, 67, 0.45), rgba(255, 255, 255, 0.05));
}
.tl-step:last-of-type::before { display: none; }
.tl-step .n {
    position: absolute;
    left: 0; top: 0;
    width: 53px; height: 53px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 900;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tl-step .phase {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.tl-step h3 {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(20px, 2.8vw, 28px);
    margin: 0 0 10px;
    line-height: 1.15;
}
.tl-step p { color: var(--dim); font-size: 16px; line-height: 1.7; margin: 0; max-width: 660px; }
.tl-step .fact {
    margin-top: 16px;
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 9px 16px;
    border-radius: 50px;
}
.tl-quote {
    margin: 0 0 clamp(40px, 6vw, 64px) clamp(70px, 9vw, 96px);
    border-left: 3px solid var(--accent);
    padding: 8px 0 8px 24px;
    font-size: clamp(17px, 2.1vw, 22px);
    color: #fff;
    font-weight: 500;
    line-height: 1.6;
}
.tl-quote strong { color: var(--accent); font-weight: 800; }
@media (max-width: 600px) {
    .tl-step { padding-left: 58px; }
    .tl-step::before { left: 20px; }
    .tl-step .n { width: 42px; height: 42px; font-size: 14px; }
    .tl-quote { margin-left: 58px; padding-left: 16px; }
}

/* Prose des pages légales */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(19px, 2.4vw, 24px);
    color: #fff;
    margin: 42px 0 14px;
}
.prose h3 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    margin: 24px 0 6px;
}
.prose p, .prose li { font-size: 15.5px; line-height: 1.75; color: var(--dim); margin: 0 0 12px; }
.prose ul { padding-left: 20px; margin: 0 0 12px; }
.prose strong { color: var(--text-soft); }
.prose a { color: var(--text-soft); }
.prose .maj { font-size: 12.5px; color: var(--dim-2); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   RÉVÉLATIONS AU SCROLL & ACCESSIBILITÉ
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
