/* ============================================================
   KANSO — CONTROL PACK
   style.css
   Mobile-first, responsive
   ============================================================ */


/* ============================================================
   0. POLICES LOCALES
   Kalieb Luxury : src local (police installée sur le PC) + fichier
   pour le déploiement web. Placer les fichiers dans fonts/ si besoin.
   Helvetica : police système, aucun fichier requis.
   ============================================================ */
@font-face {
    font-family: 'Kalieb Luxury';
    src: local('Kalieb Luxury'),
        url('fonts/kalieb-luxury-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kalieb Luxury';
    src: local('Kalieb Luxury Italic'),
        local('Kalieb Luxury'),
        url('fonts/kalieb-luxury-italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}


/* ============================================================
   1. VARIABLES
   ============================================================ */
:root {
    /* Palette */
    --noir-brun: #151312;
    --creme: #F5F0E8;
    --orange: #FFAE49;

    /* Typographies */
    --font-serif: 'Kalieb Luxury', serif;
    --font-sans: Helvetica, sans-serif;

    /* Layout */
    --section-pad-y: 88px;
    --section-pad-x: 24px;
    --container-max: 960px;
    --container-wide: 1200px;

    /* Transitions */
    --ease: 0.3s ease;
}

@media (min-width: 768px) {
    :root {
        --section-pad-y: 140px;
        --section-pad-x: 48px;
    }
}


/* ============================================================
   2. RESET
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--noir-brun);
    color: var(--creme);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grain de papier — texture fixe sur toute la page */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.038;
    pointer-events: none;
    z-index: 9999;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

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

ul,
ol {
    list-style: none;
}

s {
    opacity: 0.45;
    text-decoration: line-through;
}

button {
    font-family: inherit;
}


/* ============================================================
   3. TYPOGRAPHIE
   ============================================================ */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    max-width: 18ch;
}

p {
    max-width: 52ch;
    letter-spacing: -0.03em;
}

.accent {
    font-style: italic;
    color: var(--orange);
}


/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--section-pad-x);
    padding-right: var(--section-pad-x);
}

.container--wide {
    max-width: var(--container-wide);
}


/* ============================================================
   5. SECTIONS — socle
   ============================================================ */
.section {
    position: relative;
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
    overflow: hidden;
}

.section--dark {
    background-color: var(--noir-brun);
    color: var(--creme);
}

.section--light {
    background-color: var(--creme);
    color: var(--noir-brun);
}

/* Numéro éditorial */
.section__number {
    position: absolute;
    top: 2rem;
    right: var(--section-pad-x);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    opacity: 0.2;
    user-select: none;
}

/* Idéogramme watermark */
.section__ideogram {
    position: absolute;
    top: var(--section-pad-y);
    right: var(--section-pad-x);
    font-size: clamp(5rem, 14vw, 10rem);
    line-height: 1;
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

.section--light .section__ideogram {
    opacity: 0.055;
}


/* ============================================================
   6. ANIMATIONS AU SCROLL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Stagger natif par sélecteur */
.contenu__item.reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.contenu__item.reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.contenu__item.reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.contenu__item.reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.contenu__item.reveal:nth-child(6) {
    transition-delay: 0.40s;
}

.contenu__item.reveal:nth-child(7) {
    transition-delay: 0.48s;
}


/* ============================================================
   7. BOUTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color var(--ease), transform var(--ease), box-shadow var(--ease);
    border: none;
    text-align: center;
}

.btn--primary {
    background-color: var(--orange);
    color: var(--noir-brun);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background-color: #f0a03c;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 174, 73, 0.22);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

.btn__sub {
    margin-top: 0.7rem;
    font-size: 0.78rem;
    opacity: 0.7;
    max-width: none;
    letter-spacing: 0.02em;
}

/* Bandeau de réassurance sous les CTA */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem 1.4rem;
    margin-top: 1.25rem;
    padding: 0;
}

.trust-row__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    opacity: 0.78;
    max-width: none;
    white-space: nowrap;
}

.trust-row__item svg {
    color: var(--orange);
    flex-shrink: 0;
}

/* Case de consentement RGPD (formulaires) */
.form__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    text-align: left;
    font-size: 0.78rem;
    line-height: 1.5;
    opacity: 0.72;
    max-width: 54ch;
}

.form__consent input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    accent-color: var(--orange);
    cursor: pointer;
}

.form__consent a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lead-form .form__consent {
    flex: 1 1 100%;
    justify-content: center;
    margin: 0 auto;
}


/* ============================================================
   8. HERO — section 01 avec vidéo de fond
   ============================================================ */

/* Hero plein écran */
.hero--video {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: calc(68px + 4rem) !important;
    padding-bottom: 5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Vidéo de fond */
.hero__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Overlay gradient sombre pour lisibilité */
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg,
            rgba(21, 19, 18, 0.88) 0%,
            rgba(21, 19, 18, 0.55) 55%,
            rgba(21, 19, 18, 0.82) 100%);
    z-index: 1;
}

/* Tout le contenu au-dessus de la vidéo */
.hero--video .container,
.hero--video .section__ideogram,
.hero--video .section__number {
    position: relative;
    z-index: 2;
}

/* Contenu texte */
.hero__content {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero__overline {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    opacity: 0.9;
    margin-bottom: 1.1rem;
    max-width: none;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(4.5rem, 13vw, 9.5rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--creme);
    margin-bottom: 1.75rem;
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.55;
    opacity: 0.82;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 48ch;
}

.hero__subtitle strong {
    color: var(--creme);
    font-weight: 700;
}

/* Bloc CTA hero */
.hero__cta-block {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

/* Badge économie */
.hero__price-badge {
    display: inline-block;
    background: rgba(255, 59, 59, 0.13);
    border: 1px solid rgba(255, 80, 80, 0.45);
    border-radius: 4px;
    padding: 0.3rem 0.85rem;
}

.hero__price-save {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ff5959;
    text-transform: uppercase;
}

/* Ligne des prix : barré rouge + nouveau prix orange bold */
.hero__price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.hero__price-old {
    font-family: var(--font-sans);
    font-size: clamp(1.3rem, 3vw, 1.65rem);
    font-weight: 600;
    color: #ff4444;
    text-decoration: line-through;
    text-decoration-color: #ff4444;
    text-decoration-thickness: 2.5px;
    opacity: 1;
}

.hero__price-new {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--orange);
    letter-spacing: -0.02em;
    line-height: 1;
}

/* Mention sous le bouton */
.hero__price-meta {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    color: var(--creme);
    opacity: 0.62;
    letter-spacing: 0.04em;
    max-width: none;
}

/* ============================================================
   HERO — layout deux colonnes avec visuel produit
   ============================================================ */
.hero__inner {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 3rem;
    align-items: center;
}

.hero__inner .hero__content {
    max-width: none;
    margin: 0;
    text-align: left;
}

.hero__inner .hero__title {
    font-size: clamp(2.8rem, 6vw, 6rem);
}

.hero__inner .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
}

.hero__inner .hero__cta-block {
    align-items: flex-start;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual::before {
    content: '';
    position: absolute;
    inset: 5%;
    background: radial-gradient(circle at 50% 55%,
        rgba(255, 174, 73, 0.38) 0%,
        transparent 68%);
    filter: blur(55px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero__product-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.65));
}

@media (max-width: 860px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero__visual {
        order: -1;
    }

    .hero__product-img {
        max-width: 240px;
    }

    .hero__inner .hero__content {
        text-align: center;
    }

    .hero__inner .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__inner .hero__cta-block {
        align-items: center;
    }
}

/* ============================================================
   BOUTON GLOW — uniquement dans le hero
   Pulsation douce, s'arrête au hover
   ============================================================ */
.btn--glow {
    font-size: 1.05rem;
    padding: 1.1rem 2.25rem;
    box-shadow:
        0 0 18px rgba(255, 174, 73, 0.5),
        0 0 40px rgba(255, 174, 73, 0.22),
        0 6px 20px rgba(255, 174, 73, 0.35);
    animation: heroBtnPulse 2.8s ease-in-out infinite;
}

@keyframes heroBtnPulse {

    0%,
    100% {
        box-shadow:
            0 0 18px rgba(255, 174, 73, 0.5),
            0 0 40px rgba(255, 174, 73, 0.22),
            0 6px 20px rgba(255, 174, 73, 0.35);
    }

    50% {
        box-shadow:
            0 0 28px rgba(255, 174, 73, 0.72),
            0 0 65px rgba(255, 174, 73, 0.32),
            0 8px 28px rgba(255, 174, 73, 0.5);
    }
}

.btn--glow:hover,
.btn--glow:focus-visible {
    animation: none;
    box-shadow:
        0 0 32px rgba(255, 174, 73, 0.8),
        0 0 70px rgba(255, 174, 73, 0.38),
        0 8px 24px rgba(255, 174, 73, 0.55);
    transform: translateY(-2px);
    background-color: #f0a03c;
}

.btn--glow:active {
    animation: none;
    transform: translateY(0);
}


/* ============================================================
   9. DÉMO — section 02
   ============================================================ */
.section--demo {
    padding-top: 0;
    padding-bottom: var(--section-pad-y);
}

.demo__video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #0d0c0b;
    aspect-ratio: 16 / 9;
}

.demo__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.demo__play-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    color: var(--creme);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(21, 19, 18, 0.28);
    transition: background var(--ease);
}

.demo__play-overlay:hover {
    background: rgba(21, 19, 18, 0.1);
}

.demo__play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(245, 240, 232, 0.12);
    border: 1px solid rgba(245, 240, 232, 0.3);
    font-size: 1.1rem;
    color: var(--creme);
    padding-left: 4px;
    transition: transform var(--ease), background var(--ease);
}

.demo__play-overlay:hover .demo__play-icon {
    transform: scale(1.06);
    background: rgba(245, 240, 232, 0.18);
}


/* ============================================================
   9b. TÉMOIGNAGES
   ============================================================ */
.testi__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (min-width: 700px) {
    .testi__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.testi__card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.6rem;
    background: rgba(21, 19, 18, 0.04);
    border: 1px solid rgba(21, 19, 18, 0.1);
    border-radius: 10px;
}

.testi__stars {
    color: var(--orange);
    letter-spacing: 0.15em;
    font-size: 0.95rem;
    line-height: 1;
}

.testi__quote {
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
    max-width: none;
}

.testi__ph {
    opacity: 0.5;
    font-style: italic;
}

.testi__author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: auto;
}

.testi__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: var(--orange);
    color: var(--noir-brun);
    font-weight: 700;
    flex-shrink: 0;
}

.testi__name {
    font-size: 0.85rem;
    font-weight: 600;
}

.testi__handle {
    opacity: 0.55;
    font-weight: 400;
}


/* ============================================================
   9c. RÉALISÉ AVEC LE PACK — carrousel infini (Shorts)
   ============================================================ */
.section--results {
    overflow: hidden;
}

.results__marquee {
    margin-top: 3rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.results__track {
    display: flex;
    width: max-content;
    animation: resultsScroll 45s linear infinite;
    will-change: transform;
}

/* Pause au survol ou pendant la lecture d'une vidéo */
.results__marquee:hover .results__track,
.results__marquee.is-playing .results__track {
    animation-play-state: paused;
}

@keyframes resultsScroll {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.results__card {
    position: relative;
    flex-shrink: 0;
    width: clamp(170px, 42vw, 230px);
    aspect-ratio: 9 / 16;
    margin-right: 1rem;
    border-radius: 14px;
    overflow: hidden;
    background: #0d0c0b;
    border: 1px solid rgba(245, 240, 232, 0.1);
}

.results__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .results__track {
        animation: none;
    }
}


/* ============================================================
   10. PROBLÈME — section 03
   ============================================================ */
.probleme__body {
    margin-top: 3.5rem;
}

.probleme__list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.probleme__list li {
    font-size: 1.02rem;
    padding-left: 1.4rem;
    position: relative;
    opacity: 0.75;
    line-height: 1.5;
}

.probleme__list li::before {
    content: '–';
    position: absolute;
    left: 0;
    opacity: 0.45;
}

.probleme__punchline {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-style: italic;
    font-weight: 500;
    max-width: 38ch;
    line-height: 1.4;
    color: var(--noir-brun);
}


/* ============================================================
   11. AVANT / APRÈS — section 04
   ============================================================ */
.aa__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .aa__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.aa__col {
    padding: 1.75rem;
    border-radius: 6px;
}

.aa__col--before {
    background: rgba(245, 240, 232, 0.03);
    border: 1px solid rgba(245, 240, 232, 0.07);
    opacity: 0.45;
}

.aa__col--after {
    background: rgba(245, 240, 232, 0.05);
    border: 1px solid rgba(255, 174, 73, 0.35);
}

.aa__label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    max-width: none;
    opacity: 0.55;
}

.aa__label-icon {
    flex-shrink: 0;
}

.aa__col--after .aa__label {
    color: var(--orange);
    opacity: 1;
}

.aa__list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.aa__list li {
    font-size: 0.93rem;
    line-height: 1.5;
    opacity: 0.85;
}

.aa__col--after .aa__list li {
    opacity: 1;
}


/* ============================================================
   12. SOLUTION — section 05
   ============================================================ */
.solution__body {
    margin-top: 1.75rem;
    font-size: 1.02rem;
    line-height: 1.75;
    opacity: 0.78;
    max-width: 50ch;
}

.solution__visual {
    position: relative;
    margin-top: 3.5rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(21, 19, 18, 0.07);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution__img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18));
}

.solution__cta {
    margin-top: 3rem;
}

.solution__note {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    opacity: 0.72;
    max-width: 48ch;
}

.solution__steps {
    margin-top: 3rem;
}

.steps__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 700px) {
    .steps__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.step {
    background: rgba(245, 240, 232, 0.05);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 10px;
    padding: 1.4rem;
    min-height: 170px;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: var(--orange);
    color: var(--noir-brun);
    font-weight: 700;
    margin-bottom: 1rem;
}

.step strong {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.96rem;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.78;
}

.section--lead {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.lead__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.lead__overtitle {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.4;
    max-width: none;
}

.lead__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--noir-brun);
    margin: 0;
}

.lead__sub {
    font-size: 0.95rem;
    opacity: 0.62;
    margin: 0;
    max-width: 42ch;
}

/* Offre -10% mise en avant (pill orange) */
.lead__offer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem auto 0;
    padding: 0.55rem 1.1rem;
    background: var(--orange);
    color: var(--noir-brun);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
    max-width: none;
    box-shadow: 0 8px 24px rgba(255, 174, 73, 0.3);
}

.lead__offer svg {
    flex-shrink: 0;
}

.lead__offer strong {
    font-weight: 800;
}

/* Code promo révélé après inscription */
.lead__code {
    font-family: var(--font-sans);
    letter-spacing: 0.12em;
    background: rgba(21, 19, 18, 0.08);
    border: 1px dashed rgba(21, 19, 18, 0.35);
    border-radius: 4px;
    padding: 0.05rem 0.5rem;
}

.lead-form {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    max-width: 460px;
    flex-wrap: wrap;
}

.lead-form__field {
    flex: 1 1 200px;
}

.lead-form__input {
    width: 100%;
}

.lead-form .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.lead__hint {
    font-size: 0.78rem;
    opacity: 0.42;
    margin: 0;
}

/* ============================================================
   13. CONTENU — section 06
   ============================================================ */
.contenu__video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(245, 240, 232, 0.03);
    border: 1px solid rgba(245, 240, 232, 0.08);
}

/* Deux vidéos côte à côte dans "Ce qu'il y a dedans" */
.contenu__videos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .contenu__videos {
        grid-template-columns: 1fr 1fr;
    }
}

.contenu__video-item {
    margin: 0;
}

.contenu__video-item .contenu__video-wrap {
    margin-top: 0;
}

.contenu__video-title {
    margin-top: 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.01em;
    color: var(--creme);
}

.contenu__iframe,
.contenu__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.contenu__video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--creme);
}

.contenu__video-placeholder span {
    font-size: 2.5rem;
    opacity: 0.15;
}

.contenu__video-placeholder p {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.22;
    max-width: none;
}

.contenu__list {
    margin-top: 3.5rem;
    border-top: 1px solid rgba(245, 240, 232, 0.09);
}

.contenu__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.85rem 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.09);
}

.contenu__arrow {
    font-size: 0.85rem;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-weight: 700;
}

.contenu__text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contenu__text strong {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

.contenu__text span {
    font-size: 0.88rem;
    opacity: 0.6;
    max-width: 50ch;
    line-height: 1.55;
}


/* ============================================================
   14. POUR QUI — section 07
   ============================================================ */
.pourqui__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 600px) {
    .pourqui__grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.pourqui__label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    max-width: none;
    opacity: 0.45;
}

.pourqui__list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.pourqui__list li {
    font-size: 0.95rem;
    line-height: 1.55;
    padding-left: 1.6rem;
    position: relative;
    opacity: 0.82;
}

.pourqui__col--yes .pourqui__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    opacity: 0.45;
    font-size: 0.8rem;
    top: 0.1rem;
}

.pourqui__col--no .pourqui__list li::before {
    content: '×';
    position: absolute;
    left: 0;
    opacity: 0.35;
    font-size: 0.85rem;
}


/* ============================================================
   15. TECHNIQUE — section 08
   ============================================================ */
.tech__list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.tech__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

.tech__icon {
    color: var(--orange);
    font-size: 0.65rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.tech__item strong {
    opacity: 1;
}


/* ============================================================
   16. À PROPOS — section 09
   ============================================================ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about__text .section__title {
    margin-bottom: 1.75rem;
}

.about__text p {
    font-size: 1rem;
    opacity: 0.78;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.about__photo {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(21, 19, 18, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 360px;
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================================
   17. PREUVE SOCIALE — section 10
   ============================================================ */
.preuve__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4.5rem;
}

.preuve__stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.preuve__number {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--creme);
}

.preuve__label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.45;
    max-width: none;
}

/* Marquee */
.marquee__wrapper {
    overflow: hidden;
    border-top: 1px solid rgba(245, 240, 232, 0.09);
    border-bottom: 1px solid rgba(245, 240, 232, 0.09);
    padding: 1.5rem 0;
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee__wrapper:hover .marquee__track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee__item {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-style: italic;
    white-space: nowrap;
    opacity: 0.65;
}

.marquee__sep {
    opacity: 0.2;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ============================================================
   18. FAQ — section 11
   ============================================================ */
.faq__list {
    margin-top: 3.5rem;
    border-top: 1px solid rgba(21, 19, 18, 0.1);
}

.faq__cta {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.faq__item {
    border-bottom: 1px solid rgba(21, 19, 18, 0.1);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--noir-brun);
    text-align: left;
    line-height: 1.45;
    transition: opacity var(--ease);
}

.faq__question:hover {
    opacity: 0.65;
}

.faq__question:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
    border-radius: 2px;
}

.faq__icon {
    font-size: 1.25rem;
    font-weight: 300;
    flex-shrink: 0;
    opacity: 0.4;
    color: var(--noir-brun);
    transition: transform var(--ease);
    line-height: 1;
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer.open {
    max-height: 520px;
}

.faq__answer p {
    font-size: 0.94rem;
    line-height: 1.7;
    opacity: 0.72;
    max-width: 52ch;
    padding-bottom: 1.5rem;
}


/* ============================================================
   19. CTA FINAL — section 12
   ============================================================ */
.section--cta .container {
    text-align: center;
}

.cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta__title {
    font-size: clamp(2rem, 6vw, 4rem);
    max-width: 16ch;
    text-align: center;
}

.cta__subtitle {
    font-size: 1.02rem;
    opacity: 0.65;
    margin-bottom: 0.75rem;
    max-width: none;
}


/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
    background-color: var(--noir-brun);
    padding: 2rem 0;
    border-top: 1px solid rgba(245, 240, 232, 0.07);
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer__brand {
    font-size: 0.78rem;
    opacity: 0.38;
    letter-spacing: 0.06em;
}

.footer__brand a {
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity var(--ease);
}

.footer__brand a:hover {
    opacity: 0.7;
}

.footer__links {
    display: flex;
    gap: 1.5rem;
}

.footer__links a {
    font-size: 0.78rem;
    opacity: 0.38;
    letter-spacing: 0.06em;
    transition: opacity var(--ease);
}

.footer__links a:hover {
    opacity: 0.75;
}


/* ============================================================
   21. SITE NAV — navigation principale, toutes pages
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
    border-bottom: 1px solid transparent;
    will-change: background-color;
}

/* Fond solide : après scroll sur index, toujours sur les autres pages */
.site-nav.site-nav--solid,
body.page--inner .site-nav {
    background-color: rgba(21, 19, 18, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(245, 240, 232, 0.07);
}

.site-nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 68px;
    padding: 0 var(--section-pad-x);
    max-width: var(--container-wide);
    margin: 0 auto;
}

/* Liens gauche */
.site-nav__left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.site-nav__link {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--creme);
    opacity: 0.5;
    transition: opacity 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

.site-nav__link:hover {
    opacity: 0.9;
}

.site-nav__link.active {
    opacity: 1;
}

.site-nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--orange);
}

/* Logo centré */
.site-nav__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1.5rem;
}

.site-nav__logo img {
    height: 36px;
    width: auto;
    display: block;
}

/* Icônes droite */
.site-nav__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
}

.site-nav__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--creme);
    opacity: 0.55;
    transition: opacity 0.2s ease;
    padding: 4px;
}

.site-nav__icon:hover,
.site-nav__icon:focus-visible {
    opacity: 1;
}

.site-nav__icon svg {
    display: block;
    flex-shrink: 0;
}

/* Hamburger — mobile uniquement */
.site-nav__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--creme);
    opacity: 0.65;
    padding: 4px;
    transition: opacity 0.2s ease;
}

.site-nav__hamburger:hover {
    opacity: 1;
}

/* Menu mobile déroulant */
.site-nav__mobile {
    background-color: var(--noir-brun);
    border-top: 1px solid rgba(245, 240, 232, 0.07);
    padding: 1.75rem var(--section-pad-x) 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: mobileSlideDown 0.25s ease;
}

@keyframes mobileSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-nav__mobile[hidden] {
    display: none;
}

.site-nav__mobile-link {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--creme);
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.site-nav__mobile-link:hover {
    opacity: 1;
}

.site-nav__mobile-divider {
    border: none;
    border-top: 1px solid rgba(245, 240, 232, 0.08);
    margin: 0;
}

.site-nav__mobile-cta {
    color: var(--orange);
    opacity: 0.9;
    font-weight: 600;
}

.site-nav__mobile-cta:hover {
    opacity: 1;
}

/* Pages intérieures — espace sous la nav */
.page--inner main {
    padding-top: 68px;
}

/* Responsive mobile */
@media (max-width: 767px) {
    .site-nav__left {
        display: none;
    }

    .site-nav__hamburger {
        display: flex;
    }

    .site-nav__inner {
        grid-template-columns: 40px 1fr 80px;
    }

    .site-nav__right {
        gap: 0.75rem;
    }
}


/* ============================================================
   22. BARRE CTA MOBILE (fixe en bas, mobile uniquement)
   Apparaît après le hero. Crucial pour trafic TikTok/Instagram.
   ============================================================ */
.cta-bar-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: var(--noir-brun);
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    will-change: transform;
}

.cta-bar-mobile.cta-bar-mobile--visible {
    transform: translateY(0);
}

.cta-bar-mobile .btn {
    flex: 1;
    font-size: 0.88rem;
    padding: 0.85rem 1rem;
    text-align: center;
}

.cta-bar-mobile__sub {
    font-size: 0.68rem;
    opacity: 0.4;
    white-space: nowrap;
    max-width: none;
    color: var(--creme);
    line-height: 1.5;
    text-align: right;
}

@media (min-width: 768px) {
    .cta-bar-mobile {
        display: none;
    }
}

/* ============================================================
   23. FOCUS GLOBAL (accessibilité clavier)
   ============================================================ */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* ============================================================
   25. PAGES INTÉRIEURES — Tutoriels & Contact
   ============================================================ */

/* Hero pages intérieures */
.tuto-hero {
    padding-top: calc(var(--section-pad-y) + 68px);
    padding-bottom: calc(var(--section-pad-y) * 0.7);
}

.tuto-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--creme);
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

.tuto-hero__sub {
    font-size: 1.05rem;
    opacity: 0.65;
    max-width: 44ch;
    line-height: 1.6;
}

/* En-tête de section tutoriel */
.tuto__header {
    margin-bottom: 3rem;
}

.tuto__intro {
    margin-top: 1.25rem;
    font-size: 1.02rem;
    opacity: 0.72;
    max-width: 44ch;
    line-height: 1.65;
}

.tuto__intro--light {
    color: var(--creme);
}

/* Wrapper vidéo embed */
.tuto__video-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: rgba(21, 19, 18, 0.07);
    margin-bottom: 3rem;
}

.tuto__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Placeholder avant intégration embed */
.tuto__video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: rgba(21, 19, 18, 0.06);
    border: 1px dashed rgba(21, 19, 18, 0.15);
    border-radius: 8px;
}

.tuto__video-placeholder--dark {
    background-color: rgba(245, 240, 232, 0.03);
    border-color: rgba(245, 240, 232, 0.1);
    color: var(--creme);
}

.tuto__video-placeholder p {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.3;
    max-width: none;
    text-align: center;
}

.tuto__placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.15;
}

/* Étapes d'installation */
.tuto__steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(21, 19, 18, 0.1);
}

.tuto__step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.tuto__step-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--orange);
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
    opacity: 0.7;
}

.tuto__step strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.tuto__step p {
    font-size: 0.9rem;
    opacity: 0.68;
    line-height: 1.55;
}

/* ============================================================
   BREAKDOWN — grille de vidéos montées avec le pack
   ============================================================ */
.breakdown__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

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

.breakdown__video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 6px;
    overflow: hidden;
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(245, 240, 232, 0.08);
}

.breakdown__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.breakdown__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--creme);
}

.breakdown__placeholder span {
    font-size: 2rem;
    opacity: 0.15;
}

.breakdown__placeholder p {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    opacity: 0.25;
    text-transform: uppercase;
    max-width: none;
}

.breakdown__label {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    opacity: 0.45;
    font-weight: 500;
    max-width: none;
}

@media (max-width: 860px) {
    .breakdown__grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Bloc YouTube */
.yt-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.yt-block__text {
    max-width: 480px;
}

.yt-block__text h2 {
    margin-bottom: 1.25rem;
}

.yt-block__text p {
    margin-bottom: 2rem;
    opacity: 0.75;
    font-size: 1rem;
}

.yt-block__badge {
    flex-shrink: 0;
    opacity: 0.6;
}

@media (max-width: 600px) {
    .yt-block {
        flex-direction: column;
    }

    .yt-block__badge {
        display: none;
    }
}

/* ============================================================
   26. CONTACT — formulaire
   ============================================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr 1.6fr;
        gap: 6rem;
        align-items: start;
    }
}

.contact__infos .section__title {
    margin-bottom: 1.25rem;
}

.contact__infos p {
    font-size: 0.95rem;
    opacity: 0.72;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.contact__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.55;
    transition: opacity 0.2s ease;
    color: var(--noir-brun);
}

.contact__social:hover {
    opacity: 0.9;
}

/* Formulaire */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
    color: var(--noir-brun);
}

.form__input {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--noir-brun);
    background-color: rgba(21, 19, 18, 0.04);
    border: 1px solid rgba(21, 19, 18, 0.15);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
}

.form__input:focus {
    border-color: var(--noir-brun);
    box-shadow: 0 0 0 3px rgba(21, 19, 18, 0.08);
}

.form__input::placeholder {
    opacity: 0.35;
}

.form__select {
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form__submit {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.form__success {
    font-size: 0.9rem;
    color: #2a7d4f;
    font-weight: 500;
    margin-top: 0.5rem;
    max-width: none;
}

.form__error {
    font-size: 0.9rem;
    color: #b04040;
    font-weight: 500;
    margin-top: 0.5rem;
    max-width: none;
}

.form__success[hidden],
.form__error[hidden] {
    display: none;
}


/* ============================================================
   22. REDUCED MOTION
   ============================================================ */
/* ============================================================
   27. BEFORE / AFTER VIDEO SLIDER
   ============================================================ */
.ba-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.ba-intro {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    opacity: 0.5;
    margin-bottom: 2.5rem;
    max-width: none;
}

.ba-slider {
    position: relative;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.ba-side {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ba-before {
    z-index: 1;
}

.ba-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.ba-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder avant l'intégration des vidéos */
.ba-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 240, 232, 0.04);
}

.ba-ph--after {
    background: rgba(255, 174, 73, 0.05);
}

.ba-ph span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.22;
    font-weight: 600;
    color: var(--creme);
}

/* Labels SANS / AVEC */
.ba-label {
    position: absolute;
    top: 1.1rem;
    z-index: 6;
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--creme);
    background: rgba(21, 19, 18, 0.5);
    padding: 0.28rem 0.55rem;
    border-radius: 3px;
    pointer-events: none;
    backdrop-filter: blur(4px);
}

.ba-label--before {
    left: 1.1rem;
}

.ba-label--after {
    right: 1.1rem;
    color: var(--orange);
}

/* Ligne verticale + bouton handle */
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(255, 255, 255, 0.8);
    pointer-events: auto;
    cursor: col-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.ba-handle::before {
    content: '';
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ba-handle:focus-visible::before {
    box-shadow: 0 0 0 3px var(--orange), 0 2px 16px rgba(0, 0, 0, 0.4);
}

.ba-handle-icon {
    position: relative;
    z-index: 1;
    font-size: 0.78rem;
    color: var(--noir-brun);
    font-weight: 700;
    letter-spacing: -0.04em;
    pointer-events: none;
    line-height: 1;
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .marquee__track {
        animation: none;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ============================================================
   26. PAGES LÉGALES (mentions, CGV, confidentialité)
   ============================================================ */
.legal {
    max-width: 760px;
}

.legal__updated {
    font-size: 0.78rem;
    opacity: 0.5;
    margin-bottom: 2.5rem;
    letter-spacing: 0.04em;
}

.legal h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    margin-top: 2.75rem;
    margin-bottom: 0.9rem;
    color: var(--noir-brun);
}

.legal h2:first-of-type {
    margin-top: 0;
}

.legal h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal p,
.legal li {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.82;
    max-width: 68ch;
    margin-bottom: 0.85rem;
}

.legal ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal ul li {
    margin-bottom: 0.4rem;
}

.legal a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal strong {
    opacity: 1;
}

/* Placeholder à compléter par l'éditeur */
.legal mark {
    background: rgba(255, 174, 73, 0.25);
    color: inherit;
    padding: 0 0.2em;
    border-radius: 2px;
}


/* ============================================================
   27. BANDEAU COOKIES (consentement RGPD)
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background-color: rgba(21, 19, 18, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(245, 240, 232, 0.12);
    padding: 1.25rem var(--section-pad-x);
    transform: translateY(110%);
    transition: transform 0.4s ease;
}

.cookie-banner.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
}

.cookie-banner__text {
    font-size: 0.82rem;
    line-height: 1.55;
    opacity: 0.78;
    max-width: 62ch;
    color: var(--creme);
}

.cookie-banner__text a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.7rem 1.4rem;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid rgba(245, 240, 232, 0.3);
    background: transparent;
    color: var(--creme);
    transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.cookie-banner__btn:hover {
    border-color: var(--creme);
}

.cookie-banner__btn--accept {
    background: var(--orange);
    color: var(--noir-brun);
    border-color: var(--orange);
}

.cookie-banner__btn--accept:hover {
    background: #f0a03c;
    transform: translateY(-1px);
}

/* La barre CTA mobile remonte si le bandeau cookies est affiché */
body.cookie-open .cta-bar-mobile.cta-bar-mobile--visible {
    transform: translateY(-100%);
}


/* ============================================================
   28. FAÇADE YOUTUBE
   Affiche un poster + bouton play à la charte ; l'iframe YouTube
   n'est chargée qu'au clic (perf + aucun cookie avant lecture).
   La façade remplit son conteneur parent (qui gère le ratio).
   ============================================================ */
.yt-facade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: inherit;
    background-color: #0d0c0b;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
}

.yt-facade::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(21, 19, 18, 0.30);
    transition: background var(--ease);
}

.yt-facade:hover::after,
.yt-facade:focus-visible::after {
    background: rgba(21, 19, 18, 0.12);
}

.yt-facade__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding-left: 4px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--noir-brun);
    box-shadow: 0 8px 30px rgba(255, 174, 73, 0.35);
    transition: transform var(--ease), box-shadow var(--ease);
}

.yt-facade:hover .yt-facade__play,
.yt-facade:focus-visible .yt-facade__play {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 10px 38px rgba(255, 174, 73, 0.5);
}

.yt-facade:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

.yt-facade__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
}

/* Vidéo chargée : on retire le calque + le bouton pour rendre
   les contrôles YouTube cliquables. */
.yt-facade--loaded {
    cursor: default;
    background-image: none;
}

.yt-facade--loaded::after {
    content: none;
}

.yt-facade--loaded .yt-facade__play {
    display: none;
}