/* =====================================================================
   FORMAQUIZ — Design System
   Style : éditorial premium, magazine sportif
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
    /* Palette */
    --ink: #0E0E0C;
    --ink-soft: #1A1A17;
    --ink-mid: #3A3A34;
    --paper: #F5EFE4;
    --paper-soft: #FBF6EC;
    --paper-deep: #EBE3D3;
    --flame: #E74C1F;
    --flame-deep: #B83A13;
    --flame-soft: #F8D4C3;
    --line: rgba(14, 14, 12, 0.12);
    --line-strong: rgba(14, 14, 12, 0.25);

    /* Typography */
    --display: 'Instrument Serif', 'Playfair Display', Georgia, serif;
    --sans: 'Geist', -apple-system, 'SF Pro Display', sans-serif;
    --mono: 'Geist Mono', 'SF Mono', Monaco, monospace;

    /* Rythme */
    --container: 1360px;
    --pad-x: clamp(1.25rem, 4vw, 3rem);
    --section-pad: clamp(4rem, 9vw, 7.5rem);

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================================
   RESET
   ===================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

::selection {
    background: var(--flame);
    color: var(--paper);
}

/* =====================================================================
   BANDEAU PROTECTION CONTENU
   ===================================================================== */

.protection-banner {
    background: var(--ink);
    color: var(--paper);
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(245, 239, 228, 0.1);
    position: relative;
    z-index: 101;
}

.protection-banner-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(245, 239, 228, 0.85);
}

.protection-banner-dot {
    width: 6px;
    height: 6px;
    background: var(--flame);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.protection-banner-sep {
    opacity: 0.3;
}

.protection-banner strong {
    color: var(--flame);
    font-weight: 500;
}

/* Le nav fixe doit se décaler sous le bandeau */
body.has-banner .nav {
    top: 36px;
}

@media (max-width: 768px) {
    .protection-banner-inner {
        font-size: 0.6875rem;
    }
    .protection-banner-sep {
        display: none;
    }
    .protection-banner-text-long {
        display: none;
    }
    body.has-banner .nav {
        top: 48px;
    }
}

/* =====================================================================
   TYPOGRAPHIE
   ===================================================================== */

.display-xxl {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.display-xl {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.025em;
}

.display-l {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.display-m {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.italic {
    font-style: italic;
    font-feature-settings: "ss01";
}

.mono {
    font-family: var(--mono);
    letter-spacing: -0.01em;
}

.label {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mid);
}

.label-flame {
    color: var(--flame-deep);
}

/* =====================================================================
   LAYOUT
   ===================================================================== */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 0;
}

/* =====================================================================
   NAVIGATION
   ===================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.125rem 0;
    background: rgba(245, 239, 228, 0.88);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease-soft);
}

.nav.scrolled {
    border-bottom-color: var(--line);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.logo-glyph {
    width: 36px;
    height: 36px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.25rem;
    font-style: italic;
    transition: transform 0.4s var(--ease);
}

.logo:hover .logo-glyph {
    background: var(--flame);
    transform: rotate(-6deg);
}

.logo-type {
    font-size: 1.375rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-type small {
    font-family: var(--mono);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--flame-deep);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--ink-mid);
    position: relative;
    transition: color 0.25s var(--ease-soft);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: -6px;
    height: 2px;
    background: var(--flame);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--ink);
    color: var(--paper) !important;
    border-radius: 999px;
    font-size: 0.8125rem !important;
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--flame);
    transform: translateY(-1px);
}

.nav-cta .arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

.nav-cta:hover .arrow {
    transform: translateX(3px);
}

.menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 4px;
    right: 4px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s var(--ease), opacity 0.2s;
}

.menu-toggle span:nth-child(1) { top: 11px; }
.menu-toggle span:nth-child(2) { top: 19px; }

.menu-toggle.open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* =====================================================================
   BOUTONS
   ===================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.9375rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 999px;
    border: 1.5px solid transparent;
    transition: all 0.35s var(--ease);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--ink);
    color: var(--paper);
}

.btn-primary:hover {
    background: var(--flame);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(231, 76, 31, 0.4);
}

.btn-flame {
    background: var(--flame);
    color: var(--paper);
}

.btn-flame:hover {
    background: var(--flame-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(231, 76, 31, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--paper);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}

.btn-ghost:hover {
    border-color: var(--ink);
    background: var(--paper-deep);
}

.btn .arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* =====================================================================
   HERO
   ===================================================================== */

.hero {
    padding: 7.5rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: var(--paper);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: flex-end;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeRise 0.8s var(--ease) both;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--flame);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 2rem;
    animation: fadeRise 0.9s var(--ease) 0.1s both;
}

.hero-title .italic {
    color: var(--flame-deep);
}

.hero-title .underlined {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.hero-title .underlined::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.1em;
    height: 0.12em;
    background: var(--flame);
    opacity: 0.35;
    z-index: -1;
}

.hero-sub {
    font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
    color: var(--ink-mid);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.65;
    animation: fadeRise 0.9s var(--ease) 0.2s both;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    animation: fadeRise 0.9s var(--ease) 0.3s both;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    animation: fadeRise 0.9s var(--ease) 0.4s both;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-meta-num {
    font-family: var(--display);
    font-size: 2.25rem;
    line-height: 0.9;
    color: var(--ink);
}

.hero-meta-label {
    font-family: var(--mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mid);
}

/* --- Visuel hero : composition éditoriale --- */

.hero-visual {
    position: relative;
    aspect-ratio: 3/4;
    animation: fadeRise 1s var(--ease) 0.3s both;
}

.hero-card-main {
    position: absolute;
    inset: 0;
    background: var(--ink);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(14, 14, 12, 0.25);
}

.hero-card-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(231, 76, 31, 0.4), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(248, 212, 195, 0.15), transparent 50%);
}

.hero-illustration {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-card-header {
    position: absolute;
    top: 1.75rem;
    left: 1.75rem;
    right: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--paper);
    z-index: 2;
}

.hero-card-header .label {
    color: rgba(245, 239, 228, 0.6);
}

.hero-card-header .num {
    font-family: var(--display);
    font-size: 2.5rem;
    line-height: 0.9;
    font-style: italic;
}

.hero-card-footer {
    position: absolute;
    bottom: 1.75rem;
    left: 1.75rem;
    right: 1.75rem;
    z-index: 2;
}

.hero-card-footer p {
    color: var(--paper);
    font-family: var(--display);
    font-size: 1.5rem;
    line-height: 1.15;
    max-width: 280px;
}

.hero-float {
    position: absolute;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 16px 40px -12px rgba(14, 14, 12, 0.18);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    z-index: 3;
}

.hero-float strong {
    display: block;
    color: var(--ink);
    font-weight: 500;
}

.hero-float small {
    display: block;
    color: var(--ink-mid);
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 1px;
}

.hero-float.top {
    top: 8%;
    left: -10%;
    animation: floatY 5s ease-in-out infinite;
}

.hero-float.bottom {
    bottom: 10%;
    right: -8%;
    animation: floatY 5s ease-in-out infinite 2.5s;
}

.hero-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--flame);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-icon svg {
    width: 16px;
    height: 16px;
}

/* Marquee de logos ou marqueurs sous le hero */

.hero-ticker {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}

.hero-ticker-label {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mid);
    margin-bottom: 1.5rem;
}

.hero-ticker-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 3rem;
    align-items: center;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--ink);
    font-family: var(--display);
    font-size: 1.25rem;
    font-style: italic;
}

.ticker-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--flame);
    border-radius: 50%;
}

/* =====================================================================
   SECTION : APPROCHE / MANIFESTO
   ===================================================================== */

.manifesto {
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 76, 31, 0.15), transparent 60%);
    pointer-events: none;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: flex-start;
}

.manifesto-left .label {
    color: var(--flame-soft);
    margin-bottom: 1.5rem;
}

.manifesto-left h2 {
    color: var(--paper);
    margin-bottom: 2rem;
}

.manifesto-stat {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 239, 228, 0.1);
}

.manifesto-stat-num {
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 4rem);
    font-style: italic;
    color: var(--flame);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.manifesto-stat-label {
    font-size: 0.9375rem;
    color: rgba(245, 239, 228, 0.7);
    max-width: 320px;
    line-height: 1.5;
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pillar {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 1.5rem;
    padding: 2.25rem 0;
    border-top: 1px solid rgba(245, 239, 228, 0.12);
    align-items: flex-start;
    transition: padding 0.4s var(--ease);
}

.pillar:last-child {
    border-bottom: 1px solid rgba(245, 239, 228, 0.12);
}

.pillar:hover {
    padding-left: 1rem;
}

.pillar-num {
    font-family: var(--display);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--flame);
    line-height: 0.9;
}

.pillar-content h3 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--paper);
    margin-bottom: 0.5rem;
}

.pillar-content p {
    color: rgba(245, 239, 228, 0.7);
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: 480px;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(245, 239, 228, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--flame-soft);
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.pillar:hover .pillar-icon {
    background: var(--flame);
    border-color: var(--flame);
    color: var(--paper);
    transform: rotate(45deg);
}

.pillar-icon svg {
    width: 18px;
    height: 18px;
}

/* =====================================================================
   SECTION : BLOCS DE COMPÉTENCES (programme)
   ===================================================================== */

.blocs {
    background: var(--paper);
}

.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.section-head-left .label {
    margin-bottom: 1.25rem;
}

.section-head-right p {
    font-size: 1.0625rem;
    color: var(--ink-mid);
    line-height: 1.65;
    max-width: 520px;
}

.blocs-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--ink);
}

.bloc-row {
    display: grid;
    grid-template-columns: 120px 1fr 2fr auto;
    gap: 3rem;
    padding: 2.25rem 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    transition: padding 0.4s var(--ease);
    position: relative;
}

.bloc-row::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--flame);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
    z-index: 0;
    opacity: 0;
}

.bloc-row:hover::after {
    transform: scaleX(1);
    opacity: 0.04;
}

.bloc-row > * {
    position: relative;
    z-index: 1;
}

.bloc-row:hover {
    padding-left: 1rem;
    padding-right: 1rem;
}

.bloc-marker {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--flame-deep);
    text-transform: uppercase;
}

.bloc-title {
    font-family: var(--display);
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    line-height: 1.15;
    color: var(--ink);
}

.bloc-desc {
    font-size: 0.9375rem;
    color: var(--ink-mid);
    line-height: 1.6;
}

.bloc-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

.bloc-row:hover .bloc-arrow {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

.bloc-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease);
}

.bloc-row:hover .bloc-arrow svg {
    transform: translateX(2px) translateY(-2px) rotate(0deg);
}

/* =====================================================================
   SECTION : AUDIENCES (OF + Particuliers)
   ===================================================================== */

.audiences {
    background: var(--paper-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.audience-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 2.5rem 2.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px -20px rgba(14, 14, 12, 0.15);
}

.audience-card.dark {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.audience-num {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: var(--display);
    font-size: 4rem;
    font-style: italic;
    color: var(--flame);
    line-height: 0.85;
    opacity: 0.85;
}

.audience-card.dark .audience-num {
    color: var(--flame);
}

.audience-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: var(--paper-deep);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 1.75rem;
}

.audience-card.dark .audience-tag {
    background: rgba(245, 239, 228, 0.1);
    color: var(--paper);
}

.audience-card h3 {
    font-family: var(--display);
    font-size: clamp(1.625rem, 2.8vw, 2rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    max-width: 380px;
}

.audience-card p {
    color: var(--ink-mid);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 440px;
}

.audience-card.dark p {
    color: rgba(245, 239, 228, 0.7);
}

.audience-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.75rem;
}

.audience-card.dark .audience-price {
    border-color: rgba(245, 239, 228, 0.12);
}

.audience-price-num {
    font-family: var(--display);
    font-size: 2.5rem;
    line-height: 1;
}

.audience-price-unit {
    font-size: 0.875rem;
    color: var(--ink-mid);
}

.audience-card.dark .audience-price-unit {
    color: rgba(245, 239, 228, 0.6);
}

.audience-features {
    margin-bottom: 2rem;
}

.audience-features li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--ink);
}

.audience-card.dark .audience-features li {
    color: rgba(245, 239, 228, 0.85);
}

.audience-features li::before {
    content: '→';
    color: var(--flame-deep);
    font-weight: 500;
    flex-shrink: 0;
}

.audience-card.dark .audience-features li::before {
    color: var(--flame);
}

/* =====================================================================
   SECTION : PROCESS (comment ça marche)
   ===================================================================== */

.process {
    background: var(--paper);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 4rem;
}

.process-step {
    padding: 2rem 1.5rem 2rem 0;
    border-top: 1px solid var(--ink);
    position: relative;
}

.process-step-num {
    font-family: var(--display);
    font-size: 3.5rem;
    font-style: italic;
    color: var(--flame);
    line-height: 0.9;
    margin-bottom: 1.25rem;
}

.process-step h3 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--ink-mid);
    line-height: 1.55;
}

/* =====================================================================
   SECTION : FAQ
   ===================================================================== */

.faq {
    background: var(--paper-soft);
    border-top: 1px solid var(--line);
}

.faq-container {
    max-width: 880px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 4rem;
    border-top: 1px solid var(--ink);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 1.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-family: var(--display);
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--ink);
    transition: color 0.25s var(--ease-soft);
}

.faq-q:hover {
    color: var(--flame-deep);
}

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s var(--ease);
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--ink);
    transition: all 0.3s var(--ease);
}

.faq-toggle::before {
    width: 10px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 1.5px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle {
    background: var(--ink);
    border-color: var(--ink);
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
    background: var(--paper);
}

.faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.faq-a-inner {
    padding-bottom: 1.75rem;
    color: var(--ink-mid);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 720px;
}

.faq-a-inner strong {
    color: var(--ink);
    font-weight: 500;
}

.faq-item.active .faq-a {
    max-height: 600px;
}

/* =====================================================================
   CTA FINAL
   ===================================================================== */

.cta-final {
    background: var(--ink);
    color: var(--paper);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(231, 76, 31, 0.2), transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--paper);
    margin-bottom: 2rem;
}

.cta-content h2 .italic {
    color: var(--flame);
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(245, 239, 228, 0.75);
    margin-bottom: 3rem;
    line-height: 1.65;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.btn-paper {
    background: var(--paper);
    color: var(--ink);
}

.btn-paper:hover {
    background: var(--flame);
    color: var(--paper);
    transform: translateY(-2px);
}

.btn-ghost-light {
    background: transparent;
    color: var(--paper);
    border-color: rgba(245, 239, 228, 0.3);
}

.btn-ghost-light:hover {
    background: rgba(245, 239, 228, 0.08);
    border-color: var(--paper);
}

/* =====================================================================
   FOOTER
   ===================================================================== */

footer {
    background: var(--ink-soft);
    color: rgba(245, 239, 228, 0.65);
    padding: 4.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--paper);
    margin-bottom: 1.25rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 340px;
    color: rgba(245, 239, 228, 0.6);
}

.footer-col h4 {
    font-family: var(--mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 239, 228, 0.5);
    margin-bottom: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    font-size: 0.9375rem;
    color: rgba(245, 239, 228, 0.75);
    transition: color 0.25s var(--ease-soft);
}

.footer-col a:hover {
    color: var(--flame);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 239, 228, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(245, 239, 228, 0.45);
}

/* =====================================================================
   ANIMATIONS
   ===================================================================== */

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

@media (max-width: 1024px) {
    .hero-grid,
    .manifesto-grid,
    .audience-grid,
    .section-head {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-visual {
        max-width: 420px;
        margin: 0 auto;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bloc-row {
        grid-template-columns: 100px 1fr auto;
    }
    .bloc-row .bloc-desc {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--paper);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem var(--pad-x);
        gap: 1.5rem;
        border-bottom: 1px solid var(--line);
        transform: translateY(-110%);
        transition: transform 0.4s var(--ease);
        box-shadow: 0 24px 48px -20px rgba(14, 14, 12, 0.2);
    }
    .nav-links.open {
        transform: translateY(0);
    }
    .menu-toggle {
        display: block;
    }
    .hero {
        padding: 6rem 0 3rem;
    }
    .hero-meta {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 2rem;
    }
    .hero-float {
        display: none;
    }
    .bloc-row {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }
    .bloc-row .bloc-marker {
        grid-column: 1 / -1;
        margin-bottom: -0.5rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
