/* =========================================================
   PANACHE CONSEIL — Stylesheet
   Direction esthétique : éditoriale, refined, beaucoup d'air
   Charte : #007943 (vert) · #8DB4AD (sauge) · #000 / #FFF
   ========================================================= */

/* ===== VARIABLES ===== */
:root {
    --green: #007943;
    --green-dark: #005c33;
    --green-light: #e8f3ee;
    --sage: #8DB4AD;
    --sage-light: #d6e3e0;
    --sage-pale: #f0f5f4;
    --black: #0a0a0a;
    --grey-900: #1a1a1a;
    --grey-700: #4a4a4a;
    --grey-500: #757575;
    --grey-300: #d0d0d0;
    --grey-200: #e8e8e8;
    --grey-100: #f5f5f5;
    --white: #ffffff;

    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --container-max: 1240px;
    --container-px: clamp(1.25rem, 4vw, 3rem);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.3s var(--ease-out);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ===== UTILITAIRES ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-inline: var(--container-px);
}

.text-muted { color: var(--grey-500); }
.text-accent { color: var(--green); }

/* ===== BOUTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.btn--primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn--primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 121, 67, 0.25);
}
.btn--ghost {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}
.btn--ghost:hover {
    background: var(--black);
    color: var(--white);
}
.btn--large { padding: 1rem 2rem; font-size: 1rem; }
.btn--small { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--grey-200);
    box-shadow: var(--shadow-sm);
}
.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 1rem;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity var(--transition);
}
.header__logo:hover { opacity: 0.7; }
.header__logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.header__logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    color: var(--black);
    line-height: 1;
}
.header__logo-text span {
    display: block;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--green);
    margin-top: 2px;
    text-transform: lowercase;
}
.nav__list {
    display: flex;
    gap: 2rem;
}
.nav__link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--grey-700);
    transition: color var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green);
    transition: width var(--transition);
}
.nav__link:hover { color: var(--black); }
.nav__link:hover::after { width: 100%; }

.nav__link--secondary {
    color: var(--grey-500);
    font-size: 0.82rem;
    padding: 0.25rem 0.7rem;
    border: 1px solid var(--grey-300);
    border-radius: 100px;
    transition: all var(--transition);
}
.nav__link--secondary::after { display: none; }
.nav__link--secondary:hover {
    color: var(--green);
    border-color: var(--green);
    background: var(--green-light);
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}
.header__burger span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all var(--transition);
}
.header__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}
.mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--black);
}
.mobile-menu__cta {
    display: inline-block;
    background: var(--green);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 4rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--sage-pale) 100%);
}
.hero__container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--green);
    border-radius: 100px;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 1.75rem;
}
.hero__title-accent {
    color: var(--green);
    font-weight: 700;
    font-style: italic;
}
.hero__lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--grey-700);
    max-width: 580px;
    margin-bottom: 2.5rem;
}
.hero__cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero__trust {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-200);
}
.hero__trust-item {
    display: flex;
    flex-direction: column;
}
.hero__trust-item strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green);
    line-height: 1;
}
.hero__trust-item span {
    font-size: 0.85rem;
    color: var(--grey-500);
    margin-top: 0.25rem;
}
.hero__visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
}
.hero__shape--sage {
    width: 420px;
    height: 420px;
    background: var(--sage);
    opacity: 0.55;
    top: 0;
    right: -50px;
    animation: floatY 8s ease-in-out infinite;
}
.hero__shape--green {
    width: 200px;
    height: 200px;
    background: var(--green);
    opacity: 0.85;
    bottom: 60px;
    left: 0;
    animation: floatY 6s ease-in-out infinite reverse;
}
.hero__isotype {
    position: relative;
    width: 240px;
    height: 240px;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--grey-500);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero__scroll span {
    width: 3px;
    height: 8px;
    background: var(--grey-500);
    border-radius: 2px;
    animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ===== VIDÉO PORTRAIT ===== */
.video {
    padding: 6rem 0 4rem;
    background: var(--white);
}
.video__player {
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--black);
    position: relative;
}
.video__player video,
.video__player iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.video__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    position: relative;
}
.video__placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--sage);
    border-radius: 50%;
    opacity: 0.2;
}
.video__placeholder img {
    width: 120px;
    height: 120px;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}
.video__placeholder-text {
    position: relative;
    z-index: 1;
}
.video__placeholder-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-light);
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--sage-light);
    border-radius: 100px;
    margin-bottom: 0.75rem;
}
.video__placeholder p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== QUALIOPI BANNER (dans méthode) ===== */
.qualiopi-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto 5rem;
    padding: 1.75rem 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--grey-200);
    box-shadow: var(--shadow-sm);
}
.qualiopi-banner__logo {
    flex-shrink: 0;
    width: 200px;
    height: auto;
    object-fit: contain;
}
.qualiopi-banner__text p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--grey-900);
    margin-bottom: 0.4rem;
}
.qualiopi-banner__sub {
    font-size: 0.85rem !important;
    color: var(--grey-500) !important;
    line-height: 1.5;
}

/* ===== TRUST BAR (logos) ===== */
.trust-bar {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
    overflow: hidden;
}
.trust-bar__intro {
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 2rem;
}
.trust-bar__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem 3.5rem;
}
.trust-bar__logos span {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--grey-500);
    letter-spacing: 0.02em;
    transition: color var(--transition);
}
.trust-bar__logos span:hover { color: var(--black); }

/* ===== SECTIONS - HEADER ===== */
.section__header {
    max-width: 800px;
    margin-bottom: 4rem;
}
.section__header--centered {
    margin-inline: auto;
    text-align: center;
}
.section__eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}
.section__eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1rem;
    height: 1px;
    background: var(--green);
}
.section__eyebrow--light { color: var(--sage); }
.section__eyebrow--light::before { background: var(--sage); }
.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--black);
    margin-bottom: 1.5rem;
}
.section__title--light { color: var(--white); }
.section__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--grey-700);
}

/* ===== ENJEUX ===== */
.enjeux {
    padding: 7rem 0;
    background: var(--white);
}
.enjeux__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.enjeu-card {
    padding: 2rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.enjeu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.enjeu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}
.enjeu-card:hover::before { transform: scaleX(1); }
.enjeu-card__icon {
    width: 48px;
    height: 48px;
    color: var(--green);
    margin-bottom: 1.25rem;
}
.enjeu-card__icon svg { width: 100%; height: 100%; }
.enjeu-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.75rem;
}
.enjeu-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--grey-700);
}
.enjeux__cta-line {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--grey-700);
    margin-top: 3rem;
}
.link-arrow {
    color: var(--green);
    font-weight: 600;
    border-bottom: 2px solid var(--green);
    padding-bottom: 2px;
    transition: all var(--transition);
}
.link-arrow:hover {
    color: var(--green-dark);
    padding-left: 0.25rem;
}

/* ===== APPROCHE (sombre) ===== */
.approche {
    padding: 7rem 0;
    background: var(--green);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.approche::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--sage);
    border-radius: 50%;
    opacity: 0.2;
}
.approche__container { position: relative; z-index: 2; }
.approche__intro {
    max-width: 800px;
    margin-bottom: 4rem;
}
.formula {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin: 4rem 0;
}
.formula__item { text-align: center; }
.formula__label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}
.formula__op {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--sage);
}
.formula__item--card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    min-width: 160px;
}
.formula__big {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}
.formula__small {
    font-size: 0.9rem;
    color: var(--sage-light);
    margin-top: 0.25rem;
}
.approche__quote {
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.125rem, 2vw, 1.4rem);
    line-height: 1.5;
    color: var(--white);
    max-width: 750px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.approche__quote strong {
    color: var(--sage-light);
    font-weight: 500;
}

/* ===== MÉTHODE ===== */
.methode {
    padding: 7rem 0;
    background: var(--sage-pale);
}
.methode__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
    counter-reset: steps;
}
.methode__step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition);
}
.methode__step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.methode__step-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--sage);
    line-height: 1;
    margin-bottom: 1rem;
}
.methode__step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}
.methode__step-desc {
    color: var(--grey-700);
    margin-bottom: 1.5rem;
}
.methode__step-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    border-top: 1px solid var(--grey-200);
    position: relative;
    font-size: 0.95rem;
    color: var(--grey-700);
}
.methode__step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}
.methode__step-list li:first-child { border-top: none; padding-top: 0.75rem; }

.methode__pillars {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
}
.methode__pillars-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
}
.methode__pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
.pillar {
    padding: 1.5rem;
    border-left: 3px solid var(--green);
    transition: all var(--transition);
}
.pillar:hover {
    border-left-color: var(--sage);
    transform: translateX(4px);
}
.pillar h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pillar p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--grey-700);
}

/* ===== MÉTIERS ===== */
.metiers {
    padding: 7rem 0;
    background: var(--white);
}
.metiers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.metier-card {
    padding: 3rem 2rem;
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.metier-card:hover {
    border-color: var(--green);
    transform: translateY(-6px);
}
.metier-card__num {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--green);
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}
.metier-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}
.metier-card p {
    color: var(--grey-700);
    line-height: 1.6;
}

/* ===== ÉQUIPE ===== */
.equipe {
    padding: 7rem 0;
    background: var(--sage-pale);
}
.equipe__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.founder {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.founder:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.founder__photo-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid var(--sage-light);
}
.founder__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.founder h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}
.founder__role {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.founder__quote {
    font-style: italic;
    color: var(--grey-700);
    padding-left: 1rem;
    border-left: 3px solid var(--green);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.founder__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.founder__highlights li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--grey-700);
}
.founder__highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 600;
}
.founder__values {
    font-size: 0.85rem;
    color: var(--grey-500);
    padding-top: 1rem;
    border-top: 1px solid var(--grey-200);
    letter-spacing: 0.02em;
}

/* ===== RÉFÉRENCES ===== */
.references {
    padding: 7rem 0;
    background: var(--white);
}
.missions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.mission {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.mission:hover {
    border-color: var(--green);
    background: var(--sage-pale);
    transform: translateY(-2px);
}
.mission__client {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.mission h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.mission p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-700);
}

/* ===== MAISON RÉPUBLIQUE ===== */
.maison {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--sage-pale) 100%);
    position: relative;
    overflow: hidden;
}
.maison::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: var(--sage);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}
.maison__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}
.maison__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--grey-700);
    margin-bottom: 1.25rem;
}
.maison__pitch {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--grey-700);
    margin-bottom: 1.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-left: 3px solid var(--green);
    border-radius: var(--radius-sm);
}
.maison__visual {
    display: flex;
    justify-content: center;
}
.maison__hero-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 380px;
    transition: transform var(--transition);
}
.maison__hero-card:hover {
    transform: translateY(-6px);
}
.maison__hero-card img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-md);
}
.maison__hero-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--grey-700);
    padding-top: 1.25rem;
    border-top: 1px solid var(--grey-200);
}

.maison__members {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    border-top: 1px solid var(--grey-200);
}
.maison__members-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey-500);
    text-align: center;
    margin-bottom: 2.5rem;
}
.maison__members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.member-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.member-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.member-card__logo {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grey-200);
}
.member-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
.member-card__body { flex: 1; min-width: 0; }
.member-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.15rem;
    line-height: 1.2;
}
.member-card__tag {
    display: block;
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.member-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--grey-700);
}
.member-card--text {
    background: var(--grey-100);
}
.member-card--self {
    background: var(--green-light);
    border-color: var(--green);
}
.member-card--self h4 { color: var(--green-dark); }

/* Stretched link : rend toute la carte cliquable sans toucher au layout interne */
.member-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    /* Pas de contenu visible — la zone de clic couvre toute la carte parente */
}
.member-card__link:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}
/* Curseur "main" sur la totalité de la carte cliquable */
.member-card:has(> .member-card__link) { cursor: pointer; }

.maison__quote {
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.6;
    color: var(--grey-700);
    max-width: 800px;
    margin: 0 auto;
}
.maison__quote strong {
    color: var(--green);
    font-weight: 600;
    font-style: normal;
}

/* ===== SAM (partenaire pédagogique) ===== */
.sam {
    padding: 5rem 0;
    background: var(--white);
    border-top: 1px solid var(--grey-200);
}
.sam__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--sage-pale);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--green);
}
.sam__logo-wrap {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
}
.sam__logo-wrap:hover {
    transform: scale(1.05);
}
.sam__logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sam__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.25;
}
.sam__content p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--grey-700);
    margin-bottom: 0.75rem;
}
.sam__note {
    font-size: 0.9rem !important;
    color: var(--grey-500) !important;
    font-style: italic;
    padding: 0.75rem 0;
    border-top: 1px dashed var(--grey-300);
    margin-top: 0.75rem !important;
    margin-bottom: 1rem !important;
}
.sam__content .link-arrow {
    font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact {
    padding: 7rem 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.15;
}
.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
}
.contact__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}
.contact__direct {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.contact__direct strong {
    font-family: var(--font-display);
    color: var(--sage);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}
.contact__direct a {
    color: var(--white);
    transition: color var(--transition);
}
.contact__direct a:hover { color: var(--sage); }
.contact__address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}
.contact__address strong { color: var(--white); }

/* ===== FORMULAIRE ===== */
.contact-form {
    background: var(--white);
    color: var(--black);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-self: start;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group--full { grid-column: 1 / -1; }
.form-group label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-700);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--grey-300);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}
.form-checkbox input { margin-top: 0.2rem; }
.form-checkbox label {
    font-size: 0.85rem;
    color: var(--grey-700);
    line-height: 1.5;
}
.form-checkbox a { color: var(--green); text-decoration: underline; }
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.form-status {
    grid-column: 1 / -1;
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.95rem;
    display: none;
}
.form-status.success {
    display: block;
    background: var(--green-light);
    color: var(--green-dark);
    border: 1px solid var(--green);
}
.form-status.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--grey-900);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 1.5rem;
}
.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer__logo {
    width: 120px;
    margin-bottom: 1rem;
}
.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}
.footer__qualiopi {
    width: 130px;
    height: auto;
    margin-top: 1.25rem;
    padding: 0.5rem;
    background: var(--white);
    border-radius: var(--radius-sm);
}
.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer__col a:hover { color: var(--sage); }
.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: 500px;
    margin-inline: auto;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-200);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 200;
    transform: translateY(120%);
    transition: transform 0.4s var(--ease-out);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
    font-size: 0.85rem;
    color: var(--grey-700);
    flex: 1;
    line-height: 1.5;
}

/* ===== ANIMATIONS SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__container { grid-template-columns: 1fr; gap: 3rem; }
    .hero__visual { height: 300px; }
    .hero__shape--sage { width: 280px; height: 280px; }
    .hero__shape--green { width: 140px; height: 140px; }
    .hero__isotype { width: 180px; height: 180px; }
    .methode__steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .metiers__grid { grid-template-columns: 1fr; }
    .equipe__grid { grid-template-columns: 1fr; }
    .contact__container { grid-template-columns: 1fr; gap: 3rem; }
    .footer__container { grid-template-columns: 1fr 1fr; }
    .maison__inner { grid-template-columns: 1fr; gap: 3rem; }
    .maison__visual { order: -1; }
    .sam__inner { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
    .sam__logo-wrap { margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav, .header__cta { display: none; }
    .header__burger { display: flex; }
    .hero { padding-top: 90px; min-height: auto; }
    .hero__cta-group { flex-direction: column; align-items: stretch; }
    .hero__trust { gap: 1.5rem; }
    .hero__scroll { display: none; }
    .enjeux, .approche, .methode, .metiers, .equipe, .references, .contact, .maison { padding: 4rem 0; }
    .sam { padding: 3rem 0; }
    .video { padding: 3rem 0; }
    .qualiopi-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 1.5rem;
        margin: 2.5rem auto 3rem;
    }
    .qualiopi-banner__logo { width: 160px; }
    .section__header { margin-bottom: 2.5rem; }
    .formula { gap: 0.75rem; }
    .formula__op { font-size: 1.75rem; }
    .formula__item--card { padding: 1rem 1.5rem; min-width: 130px; }
    .formula__big { font-size: 1.15rem; }
    .methode__pillars { padding: 2rem 1.5rem; }
    .contact-form { grid-template-columns: 1fr; padding: 1.5rem; }
    .contact__direct { grid-template-columns: 1fr; }
    .footer__container { grid-template-columns: 1fr; gap: 2rem; }
    .header__logo-text { display: none; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__lead { font-size: 1rem; }
    .section__title { font-size: 1.5rem; }
    .founder, .methode__step { padding: 1.5rem; }
}

/* ===== ACCESSIBILITÉ ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ===== LEGAL PAGES (mentions légales / confidentialité) ===== */
.legal-page {
    /* Décalage pour le header fixe + respiration verticale */
    padding: calc(80px + 3rem) var(--container-px) 5rem;
    background: var(--white);
    min-height: 70vh;
}
.legal-page__container {
    max-width: 760px;
    margin: 0 auto;
}
.legal-page__header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--grey-200);
}
.legal-page__back {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    transition: color var(--transition);
}
.legal-page__back:hover { color: var(--green); }
.legal-page__header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}
.legal-page__meta {
    font-size: 0.9rem;
    color: var(--grey-500);
    margin-top: 0.75rem;
}
.legal-page__content h2 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
    margin-top: 2.75rem;
    margin-bottom: 0.875rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--grey-200);
}
.legal-page__content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.legal-page__content p {
    font-size: 0.975rem;
    line-height: 1.7;
    color: var(--grey-900);
    margin-bottom: 1rem;
}
.legal-page__content p strong { color: var(--black); }
.legal-page__list {
    margin: 0.5rem 0 1.25rem 0.5rem;
    padding: 0;
}
.legal-page__list li {
    position: relative;
    font-size: 0.975rem;
    line-height: 1.7;
    color: var(--grey-900);
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
}
.legal-page__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 600;
}
.legal-page__list--ordered {
    counter-reset: legal-counter;
}
.legal-page__list--ordered li {
    counter-increment: legal-counter;
    padding-left: 1.75rem;
}
.legal-page__list--ordered li::before {
    content: counter(legal-counter) ".";
    color: var(--green);
    font-weight: 600;
}
.legal-page__content a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color var(--transition);
}
.legal-page__content a:hover { color: var(--green); }

/* Placeholders à remplir avant publication — volontairement très visibles */
.legal-page__placeholder {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: #fff3cd;
    border: 1px dashed #d6a30b;
    border-radius: var(--radius-sm);
    color: #7a5d00;
    font-size: 0.875rem;
    font-style: italic;
}

@media (max-width: 600px) {
    .legal-page { padding: calc(70px + 2rem) var(--container-px) 3rem; }
    .legal-page__content h2 { font-size: 1.2rem; margin-top: 2rem; }
    .legal-page__content p,
    .legal-page__list li { font-size: 0.95rem; }
}
