/* RESET OBLIGATOIRE - À METTRE TOUT EN HAUT DU CSS */
*,
*::before,
*::after {
    box-sizing: border-box;
    /* Empêche le padding de grossir les éléments */
}

/* 1. Verrouillage du scroll horizontal sur le parent */
html,
body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative;
    margin: 0;
    padding: 0;
    touch-action: pan-y;
    /* Interdit le scroll horizontal tactile, autorise vertical */
}

/* SÉCURITÉ SUPPLÉMENTAIRE POUR LES IMAGES */
img,
video,
iframe,
canvas,
svg {
    max-width: 100%;
    height: auto;
    display: block;
    /* Évite les marges fantômes sous les images */
}

/* =========================================================
   KLEIA-UP - Main Stylesheet
   Merged from inline styles + custom.css
   ========================================================= */

/* --- VARIABLES & RESET --- */
:root {
    --bg-cream: #FAF9F6;
    --bg-off-white: #FFFFFF;
    --color-burgundy: #8B1D3D;
    --color-accent-red: #D70040;
    --color-text: #1A1A1A;
    --font-title: 'Ranade', system-ui, -apple-system, sans-serif;
    --font-body: 'Ranade', sans-serif;
    --font-syne: 'Syne', sans-serif;
    --shadow-soft: 0 10px 30px rgba(88, 0, 23, 0.08);
    --shadow-hover: 0 15px 40px rgba(88, 0, 23, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for sticky header */
}

body {
    background-color: var(--bg-cream);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0; /* Suppression pour permettre l'overlay du header */
}

h1,
h2,
h3 {
    font-family: var(--font-title);
    color: var(--color-text);
    line-height: 1.2;
}

h1 em,
h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-burgundy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* --- UTILS --- */
.container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 5vw;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: var(--shadow-soft);
    border-radius: 50px;
    text-align: center;
}

.btn-premium {
    background-color: var(--color-burgundy);
    color: white;
}

.btn-premium:hover {
    transform: scale(1.05);
    background-color: var(--color-accent-red);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-burgundy);
    color: var(--color-burgundy);
}

.btn-outline:hover {
    background-color: var(--color-burgundy);
    color: white;
    transform: scale(1.05);
}

/* 3D Organic Button - Floating effect & Ripple */
.btn-organic-3d {
    background-color: transparent;
    border: 2px solid var(--color-burgundy);
    color: var(--color-burgundy);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.btn-organic-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 29, 61, 0.2);
    color: var(--color-burgundy); /* No fill */
}

.btn-organic-3d::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(139, 29, 61, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
    z-index: -1;
}

.btn-organic-3d:active::after {
    width: 300%;
    height: 300%;
}

/* === PHASE 4: CTA HIERARCHY === */

/* PRIMARY CTA - Maximum attention (Test, Main Action) */
.btn-primary {
    background: linear-gradient(135deg, var(--color-burgundy) 0%, #7a0020 100%);
    color: white;
    padding: 10px 15px;
    max-width: 200px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    display: inline-block;
    box-shadow:
        0 4px 15px rgba(88, 0, 23, 0.3),
        0 2px 4px rgba(88, 0, 23, 0.2);
}

/* ... existing hover styles ... */

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(88, 0, 23, 0.4),
        0 4px 8px rgba(88, 0, 23, 0.25);
    background: linear-gradient(135deg, #7a0020 0%, var(--color-burgundy) 100%);
}

/* ... */

/* --- HEADER & NAVIGATION (Style Premium Unifié) --- */
header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(253, 252, 240, 0.95); /* Fond crème très clair par défaut */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(139, 29, 61, 0.1);
    transition: all 0.3s ease;
    padding: 12px 0; /* Réduit de 20% (15px -> 12px) */
}

/* Variante Sombre (si besoin futur) */
header.header-dark {
    background: rgba(139, 29, 61, 0.95) !important;
    border-bottom: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5%;
}

.logo img {
    height: 64px; /* Réduit de 20% (80px -> 64px) */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

header.header-dark .logo img {
    filter: brightness(0) invert(1) sepia(100%) hue-rotate(5deg) saturate(200%) brightness(1.7);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    transition: color 0.3s ease;
}

header.header-dark .nav-link {
    color: var(--bg-cream) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-burgundy);
}

.nav-link-subtle {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text);
    opacity: 0.6;
    transition: all 0.3s ease;
}

header.header-dark .nav-link-subtle {
    color: rgba(253, 252, 240, 0.7) !important;
}

.nav-link-subtle:hover {
    opacity: 1;
    color: var(--color-burgundy);
}

.nav-separator {
    color: rgba(139, 29, 61, 0.2);
    font-weight: 300;
    font-size: 0.8rem;
    pointer-events: none;
    user-select: none;
}

.nav-link.active {
    color: var(--color-burgundy);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-burgundy);
    border-radius: 2px;
}

/* --- VARIATION CORPORATE (ROCK & GOLD - FIXED) --- */
.header-corp {
    position: fixed; /* OBLIGATOIRE pour l'overlay */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.4) !important; /* Blanc translucide pour contraste maximal sur fond beige */
    backdrop-filter: blur(25px) saturate(200%); /* Flou renforcé pour l'effet "cristallin" */
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important; /* Filet de lumière discret */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
    height: 95px !important;
    display: flex;
    align-items: center;
    transition: background 0.4s ease;
}

.header-corp .header-container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 20px !important;
}

.header-corp .logo img {
    height: 65px !important; /* Logo plus visible */
}

.header-corp .nav-links {
    gap: 25px !important;
}

.header-corp .nav-link {
    font-size: 14px !important;
    font-family: 'Ranade', sans-serif !important;
    font-weight: 500 !important;
    color: var(--color-text) !important; /* Texte sombre pour fond clair */
    letter-spacing: 0.05em !important;
}

.header-corp .nav-link:hover {
    color: var(--color-burgundy) !important;
}

.header-corp .btn-primary {
    padding: 8px 20px !important;
    font-size: 14px !important;
    background-color: #8B1D3D !important;
    border: 1px solid rgba(212,175,55, 0.3) !important;
}

/* --- BOUTONS PREMIUM ET GOLD --- */
.btn-outline-gold {
    border: 1px solid var(--color-accent-gold, #D4AF37);
    color: var(--bg-cream, #FDFCF0);
    background: transparent;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-outline-gold:hover {
    background-color: var(--color-burgundy);
    color: var(--bg-cream);
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    transition: all 0.5s ease;
}

.btn-outline-gold:hover::before {
    left: 100%;
    transition: all 0.5s ease;
}

.mobile-only-cta {
    display: none;
}

/* Burger Menu */
.menu-burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-burgundy);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Burger Animation */
.menu-burger.active .burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-burger.active .burger-bar:nth-child(2) {
    opacity: 0;
}

.menu-burger.active .burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    header {
        min-height: 90px;
        padding: 10px 20px;
    }

    .logo img {
        height: 60px;
    }

    .logo {
        margin-right: 0;
    }

    .menu-burger {
        display: flex;
    }

    .nav-links {
        display: none;
        /* Cache les liens desktop par défaut, seront gérés dans le bloc 850px */
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .header-cta {
        display: none;
        /* Hide in header, show in menu or just hide for now to declutter */
    }

    /* Global Media Fluidity */
    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }

    /* Container Adjustments */
    .container {
        padding: 0 15px;
        /* Reduced from 20px/default */
    }

    /* Typography Refinements */
    body {
        font-size: 16px;
        /* Minimum for legibility */
    }

    h1,
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
        /* Dynamic resizing */
        line-height: 1.1;
    }

    h2,
    .section-title,
    .pain-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        line-height: 1.2;
    }

    h3 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    /* Hero Section Specifics */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        align-self: center;
    }

    .hero-image-wrapper {
        order: -1;
    }

    /* Bento Grid Adjustment */
    .pain-bento-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Option: Add CTA inside nav-links on mobile */
    .nav-links::after {
        content: "JE TÉLÉCHARGE MON KIT";
        display: block;
        margin-top: 20px;
        font-family: var(--font-body);
        font-weight: 700;
        color: white;
        background: var(--color-burgundy);
        padding: 12px 24px;
        border-radius: 50px;
        font-size: 0.8rem;
        cursor: pointer;
    }
}

/* Dropdown Style */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-off-white);
    min-width: 280px;
    box-shadow: var(--shadow-hover);
    border-radius: 12px;
    padding: 25px;
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 200;
    border: 1px solid rgba(88, 0, 23, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-category {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-burgundy);
    margin-bottom: 5px;
    list-style: none;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    font-size: 0.9rem;
    color: var(--color-text);
    display: block;
    padding: 5px 0;
    text-transform: none;
    letter-spacing: normal;
}

/* --- PARTNER BANNER & MARQUEE --- */
.partners-banner {
    padding: 110px 0 15px; /* Augmenté (95px header + 15px padding) pour sortir de derrière le header fixe */
    background: transparent !important;
    border-bottom: none; /* Suppression de la bordure pour un effet totalement flottant / aérien */
    overflow: hidden;
    position: relative;
}

/* Nouveau système Marquee unifié */
.logo-marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0;
    padding: 20px 0;
}

.logo-marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 50px;
    animation: partnersScroll 30s linear infinite;
    padding-right: 50px;
}

.logo-marquee-content img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 0.8;
    mix-blend-mode: multiply; /* Effet de lévitation sans fond blanc pour les JPEGs */
    transition: all 0.3s ease;
}

.logo-marquee-content img:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes partnersScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Legacy support (to be cleaned later if unused) */
.partners-track {
    display: flex;
    animation: partnersScroll 25s linear infinite;
    width: max-content;
    gap: 0;
}

.partners-slide {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 25px;
    flex-shrink: 0;
}

.partner-logo {
    height: 80px;
    width: auto;
    max-width: unset;
    filter: none !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
    margin: 0 40px;
}

/* --- MANIFESTO SECTION --- */
.manifesto-header {
    padding: 160px 0 80px !important;
    text-align: center;
    position: relative;
    background-color: var(--bg-cream);
}

/* --- HERO SECTION (2026 Version) --- */
.hero-section {
    padding: 60px 0 60px !important; /* Réduit car le bandeau logos au-dessus assure déjà l'espacement initial */
    position: relative;
    overflow: visible; /* Modifié pour permettre à la lumière du glow de diffuser vers le haut ! */
    min-height: 85vh;
    /* Generous whitespace = symbolizes "taking your place" */
    display: flex;
    align-items: center;
}

#hero {
    padding: 50px 0 40px;
    position: relative;
    overflow: visible; /* Modifié pour permettre à la lumière de diffuser */
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--color-burgundy);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: var(--color-accent-red);
    bottom: 50px;
    left: -50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Eyebrow - discret */
.hero-eyebrow {
    display: block;
    color: var(--color-burgundy);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 1rem;
    background-color: transparent !important;
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* H1 - pilier visuel */
.hero-title {
    font-family: var(--font-title);
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--color-text);
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-burgundy);
}

/* Subtitle - max 2 lignes */
.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--color-text);
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 650px;
    opacity: 0.9;
}

/* CTA principal */
.hero-cta {
    align-self: flex-start;
    padding: 14px 36px;
    font-size: 0.95rem;
}

/* Micro-preuve */
.hero-micro-proof {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--color-text);
    opacity: 0.6;
    letter-spacing: 0.5px;
}

/* Image wrapper */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    max-width: 85%; /* Réduit pour éviter tout chevauchement avec le header/logos */
    margin-top: 40px; /* Décalage vertical forcé pour le blob Sandrina */
    margin-left: auto;
    margin-right: auto;
}

.hero-image-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(88, 0, 23, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(88, 0, 23, 0.25));
    border-radius: 8px;
}

/* === VIBRATION VISUELLE HERO CORPORATE === */
@keyframes pulse-glow-corp {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.08;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.12;
    }
}

.hero-section-corp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--color-burgundy) 0%, transparent 70%);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
    animation: pulse-glow-corp 12s infinite ease-in-out;
}

.hero-section-corp .hero-image-wrapper {
    z-index: 2;
    max-width: 90%; /* Réduction pour éviter de mordre sur le header */
    margin-top: 60px; /* Décalage vertical forcé vers le bas */
    margin-left: auto;
}

@keyframes morphing-blob {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

.hero-section-corp .hero-image,
.hero-section .hero-image {
    /* Maintien de la taille d'origine */
    width: 100%;
    height: auto;
    object-fit: cover;

    /* Animation du contour organique */
    animation: morphing-blob 15s infinite alternate ease-in-out;
    border: 2px solid rgba(212, 175, 55, 0.3);
    /* Rappel discret de l'Or */
    box-shadow: 0 15px 35px rgba(139, 29, 61, 0.15);
    /* Ombre portée bordeaux */
}

/* === NEUROMARKETING ENHANCEMENTS === */

/* H1 Extra-Bold variant - Authority */
.hero-title--bold {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-title--bold em {
    font-family: var(--font-title);
    font-weight: 400;
}

/* CTA Max Contrast - Attention Magnet */
.hero-cta--max-contrast {
    background: linear-gradient(135deg, var(--color-burgundy) 0%, #8B0024 100%);
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow:
        0 8px 30px rgba(88, 0, 23, 0.4),
        0 0 0 3px rgba(88, 0, 23, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.hero-cta--max-contrast:hover {
    transform: scale(1.08);
    box-shadow:
        0 12px 40px rgba(88, 0, 23, 0.5),
        0 0 0 5px rgba(88, 0, 23, 0.15);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow:
            0 8px 30px rgba(88, 0, 23, 0.4),
            0 0 0 3px rgba(88, 0, 23, 0.1);
    }

    50% {
        box-shadow:
            0 8px 35px rgba(88, 0, 23, 0.55),
            0 0 0 6px rgba(88, 0, 23, 0.08);
    }
}

/* Transition Block - Bridge to Section 2 */
.hero-transition {
    padding: 50px 0 30px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-cream) 0%, rgba(88, 0, 23, 0.03) 100%);
}

.transition-text {
    font-size: 1.15rem;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.85;
}

.transition-text strong {
    color: var(--color-burgundy);
    font-weight: 700;
}

/* === CTA DECISION ZONE - Phase 1 === */
.cta-decision-zone {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0 30px;
    padding: 0;
}

.cta-urgency-phrase {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-urgency-phrase strong {
    color: var(--color-burgundy);
    font-weight: 700;
    display: block;
    margin-top: 5px;
    font-size: 1.1rem;
}

.cta-decision-zone .btn {
    margin: 0 !important;
    padding: 16px 36px !important;
    font-size: 0.9rem !important;
    min-width: 260px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .cta-decision-zone {
        flex-direction: column;
    }
    .cta-decision-zone .btn {
        width: 100%;
    }
}

.cta-reassurance {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.cta-exit {
    color: var(--color-burgundy);
    font-weight: 600;
}

.cta-proof {
    color: var(--color-text);
    opacity: 0.7;
    font-style: italic;
}

/* Hero micro-proof aligned variant */
.hero-micro-proof--aligned {
    text-align: left;
    padding-left: 35px;
}

/* Legacy support */
.hero-text .subtitle {
    display: block;
    color: var(--color-burgundy);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-journal-box {
    background: rgba(255, 255, 255, 0.4);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(88, 0, 23, 0.1);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-journal-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.hero-newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-newsletter-form input {
    flex: 1;
    min-width: 180px;
    padding: 14px 20px;
    border: 1px solid rgba(88, 0, 23, 0.2);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    background: var(--bg-cream);
}

.hero-image-bubble {
    width: 100%;
    max-width: 450px;
    height: 500px;
    background-color: var(--bg-cream);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(88, 0, 23, 0.12);
    border: 12px solid white;
    animation: morph 8s ease-in-out infinite;
    position: relative;
}

.hero-image-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transition: transform 0.5s ease;
}

.hero-image-bubble:hover img {
    transform: scale(1.05);
}

/* === PHASE 2: VISUAL RUPTURES === */

/* Utility class for white background contrast */
.white-bg {
    background: #FFFFFF !important;
}

/* Visual Rupture - Tinted background for emphasis */
.visual-rupture {
    background: linear-gradient(180deg, #FFF8F2 0%, #FAF9F6 50%, var(--bg-cream) 100%) !important;
    border-top: 1px solid rgba(88, 0, 23, 0.06);
    border-bottom: 1px solid rgba(88, 0, 23, 0.06);
}

/* Infusion phrase - Micro emotional trigger */
.infusion-phrase {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text);
    opacity: 0.85;
    margin-bottom: 40px;
    padding: 15px 25px;
    background: rgba(88, 0, 23, 0.04);
    border-radius: 10px;
    border-left: 3px solid var(--color-burgundy);
}

.infusion-phrase strong {
    color: var(--color-burgundy);
    font-weight: 700;
}

/* Infusion link - styled as inline CTA */
.infusion-link {
    color: var(--color-burgundy);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--color-burgundy);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.infusion-link:hover {
    color: #7a0020;
    border-bottom-color: #7a0020;
    background: rgba(88, 0, 23, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
}

/* --- MIROIR DOULEUR SECTION --- */
#miroir-douleur {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-cream);
    font-family: var(--font-body);
}

.pain-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1150px;
    margin: 0 auto;
}

.pain-header {
    margin-bottom: 4rem;
}

.pain-surtitle {
    color: var(--color-burgundy);
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1.5rem;
}

.pain-title {
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--color-text);
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.pain-title .highlight-red {
    color: var(--color-burgundy);
}

.pain-title .highlight-italic {
    font-weight: 300;
    font-style: italic;
}

.pain-quote-block {
    border-left: 4px solid var(--color-burgundy);
    padding-left: 2rem;
    max-width: 42rem;
}

.pain-quote-text {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.6;
    font-weight: 500;
}

/* Grille Bento */
.pain-bento-grid {
    display: grid;
    gap: 3rem;
    align-items: flex-start;
}

.pain-col-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pain-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pain-list-title::before {
    content: '';
    display: block;
    width: 3rem;
    height: 2px;
    background-color: var(--color-text);
}

.pain-item {
    margin-bottom: 2rem;
}

.pain-item h4 {
    color: var(--color-burgundy);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.pain-item p {
    color: #4B5563;
    line-height: 1.6;
}

/* Carte Impact */
.pain-card-impact {
    background-color: var(--color-burgundy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(88, 0, 23, 0.25);
}

.pain-card-bubble-orange {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 4rem;
    height: 4rem;
    background-color: #F97316;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-body);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 20;
    transform: rotate(10deg);
}

.pain-card-content {
    position: relative;
    z-index: 10;
}

.pain-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.pain-card-text {
    font-size: 1.1rem;
    color: #E5E7EB;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.pain-card-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pain-card-quote {
    font-weight: 700;
    font-style: italic;
    color: white;
}

/* CTA */
.pain-action-area {
    margin-top: 6rem;
    text-align: center;
}

.btn-black-pill {
    display: inline-flex;
    position: relative;
    padding: 1.25rem 2.5rem;
    background-color: #1A1A1A;
    color: white;
    border-radius: 9999px;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-black-pill:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-black-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-burgundy);
    transform: translateX(-100%);
    transition: transform 0.5s ease-out;
    z-index: 0;
}

.btn-black-pill:hover::before {
    transform: translateX(0);
}

.btn-black-pill span {
    position: relative;
    z-index: 10;
}

.pain-action-subtext {
    margin-top: 1.5rem;
    color: #9CA3AF;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- SEGMENTATION SECTION --- */
.segmentation-section {
    padding: 60px 0;
    background: var(--bg-cream);
    text-align: center;
    border-bottom: 1px solid rgba(88, 0, 23, 0.05);
}

.segmentation-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.segmentation-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.segment-btn {
    padding: 30px 40px;
    background: #ffffff;
    border: 1px solid rgba(88, 0, 23, 0.1);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(139, 29, 61, 0.08);
    transition: all 0.3s ease;
    max-width: 450px;
    text-align: left;
    display: block;
}

.segment-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--color-burgundy);
}

.segment-btn h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-burgundy);
}

.segment-btn p {
    font-size: 0.95rem;
    color: var(--color-text);
}

/* --- SEGMENT FLIP CARDS --- */
.flip-card {
    background-color: transparent;
    width: 100%;
    max-width: 450px;
    min-height: 230px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-card-front {
    max-width: none;
    margin: 0;
}

.flip-card-back {
    background-color: var(--color-burgundy);
    padding: 30px;
    transform: rotateY(180deg);
    align-items: center;
    box-shadow: 0 15px 35px rgba(139, 29, 61, 0.2);
}

.flip-cta-gold {
    color: #D4AF37;
    font-family: 'Ranade', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.flip-cta-gold:hover {
    color: #FDFCF0;
    transform: scale(1.05);
}

/* --- SOCIAL PROOF MARQUEE (2026) --- */
.social-proof-marquee {
    padding: 50px 0 40px;
    background: linear-gradient(180deg, var(--bg-off-white) 0%, var(--bg-cream) 100%);
    text-align: center;
    overflow: hidden;
}

.proof-micro-phrase {
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.7;
    margin-bottom: 10px;
    font-style: italic;
}

.proof-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 8px;
}

.proof-subtitle {
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.6;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* === PHASE 3: FEATURED QUOTE (Ultra-Premium Editorial) === */
.featured-quote {
    position: relative;
    max-width: 580px;
    margin: 40px auto 35px;
    padding: 0;
    background: none !important;
    background-color: transparent !important;
    border: none;
    box-shadow: none;
}

/* Editorial variant - ultra-fine left accent */
.featured-quote--editorial {
    padding-left: 28px;
    border-left: 1.5px solid rgba(88, 0, 23, 0.2);
    border-right: none;
    border-top: none;
    border-bottom: none;
}

.quote-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-text);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
    background: none !important;
}

/* Premium Editorial Signature - Minimal & Right aligned */
.quote-signature {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 0.88rem;
    background: none !important;
    background-color: transparent !important;
    padding: 0;
    margin: 0;
    border: none;
}

.signature-jewel {
    color: var(--color-burgundy);
    font-size: 0.7rem;
    opacity: 0.6;
}

.signature-name {
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.03em;
}

.signature-sep {
    color: var(--color-text);
    opacity: 0.25;
    font-weight: 300;
}

.signature-role {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    opacity: 0.75;
}

/* Proof Infusion */
.proof-infusion {
    font-size: 1rem;
    color: var(--color-text);
    opacity: 0.75;
    margin-bottom: 35px;
    text-align: center;
}

.proof-infusion strong {
    color: var(--color-burgundy);
    font-weight: 600;
}

/* Marquee wrapper */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-cream) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--bg-cream) 100%);
}

/* Marquee track - infinite scroll */
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 40s linear infinite;
    padding: 0 30px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Marquee items */
.marquee-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.marquee-item.testimonial {
    min-width: 380px;
    max-width: 420px;
    text-align: center;
    padding: 10px 20px;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 8px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--color-burgundy);
    font-weight: 600;
}

.testimonial-author em {
    font-weight: 400;
    color: var(--color-text);
    opacity: 0.7;
}

.marquee-item.separator {
    font-size: 1.2rem;
    color: var(--color-burgundy);
    opacity: 0.4;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

/* --- SECTIONS GRID --- */
.section-padding {
    padding: 100px 0;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: var(--color-burgundy);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-top: 15px;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-item {
    background-color: var(--bg-off-white);
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.card-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-burgundy);
}

.card-item .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-item p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Immersive Card Variant (Le Cercle) */
.card-item--immersive {
    box-shadow: 0 20px 40px rgba(88, 0, 23, 0.08);
    border: 1px solid rgba(88, 0, 23, 0.08);
    background: linear-gradient(145deg, #ffffff 0%, #faf9f6 100%);
    position: relative;
    overflow: hidden;
}

.card-item--immersive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-burgundy), var(--color-accent-red));
    opacity: 0.8;
}

.card-item--immersive:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(88, 0, 23, 0.15);
}

.card-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-burgundy);
    margin-bottom: 25px;
    font-family: var(--font-title);
}

.offer-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-burgundy);
    margin-bottom: 15px;
    margin-top: -10px;
}

.center-cta {
    text-align: center;
    margin-top: 50px;
}

/* --- PROGRAMME SIGNATURE --- */
.signature-section {
    background-color: var(--bg-off-white);
    padding: 100px 0;
    border-top: 1px solid rgba(88, 0, 23, 0.05);
}

.offer-card-premium {
    background: linear-gradient(135deg, #FAF9F6 0%, #FFF8F0 100%);
    border: 2px solid #580017;
    padding: 50px 40px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(88, 0, 23, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.offer-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.offer-category {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #580017;
    margin-bottom: 20px;
    font-weight: 600;
}

.offer-title-premium {
    font-family: 'Forum', cursive;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #1A1A1A;
    margin-bottom: 15px;
    font-weight: 700;
}

.offer-subtitle-premium {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #580017;
    margin-bottom: 25px;
    font-weight: 400;
}

.offer-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4A3B32;
    margin-bottom: 30px;
}

/* --- PRICING CARD PREMIUM --- */
.pricing-card-premium {
    background: linear-gradient(145deg, #ffffff 0%, #FAF9F6 100%);
    border: 1px solid rgba(88, 0, 23, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-premium h4 {
    color: var(--color-burgundy);
    font-size: 1.4rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-burgundy);
    display: inline-block;
}

.pricing-card-premium ul {
    list-style: none;
    padding: 0;
}

.pricing-card-premium li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.pricing-card-premium li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-burgundy);
    font-weight: 700;
}

/* --- FOOTER & LEAD MAGNET --- */
footer {
    background: var(--color-burgundy);
    color: white;
    padding: 100px 0 40px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -49px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.footer-wave .shape-fill {
    fill: var(--color-burgundy);
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

footer h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.lead-magnet-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    text-align: left;
    margin-bottom: 50px;
}

.lead-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.footer-micro-copy {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* --- ANIMATIONS --- */
@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.animate-morph {
    animation: morph 8s ease-in-out infinite;
}

/* --- ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }

    .animate-morph,
    .hero-image-bubble {
        animation: none !important;
        border-radius: 50% !important;
    }
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* Large tablets / Small desktops */
@media (max-width: 1100px) {
    .nav-links {
        gap: 20px;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p,
    .hero-journal-box {
        margin-left: auto;
        margin-right: auto;
    }

    footer h2 {
        font-size: 2rem;
    }

    .pain-bento-grid {
        grid-template-columns: 1fr;
    }

    .pain-card-impact {
        padding: 2.5rem;
    }

    /* Hero 2026 responsive */
    .hero-section {
        min-height: auto;
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-eyebrow {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-cta {
        align-self: center;
    }

    .hero-micro-proof {
        text-align: center;
    }

    /* CTA Decision Zone responsive */
    .cta-decision-zone {
        padding: 25px 20px;
        margin: 20px 0 15px;
    }

    .cta-urgency-phrase {
        font-size: 0.95rem;
    }

    .cta-reassurance {
        font-size: 0.85rem;
    }

    .hero-image-wrapper {
        order: -1;
        margin-bottom: 20px;
    }

    .hero-image {
        max-width: 320px;
    }
}

/* Mobile landscape / Small tablets */
@media (max-width: 850px) {
    .header-cta {
        display: none;
    }

    .menu-burger {
        display: flex;
    }

    .nav-links {
        position: fixed !important;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-cream);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 40px;
        z-index: 9999;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.4s;
        box-shadow: -10px 0 30px rgba(88, 0, 23, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-link {
        font-size: 1.5rem;
        color: var(--color-burgundy);
        font-weight: 700;
    }

    .mobile-only-cta {
        display: block;
        margin-top: 20px;
    }

    /* Animation Burger */
    .menu-burger.active .burger-bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-burger.active .burger-bar:nth-child(2) {
        opacity: 0;
    }

    .menu-burger.active .burger-bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Mobile portrait */
@media (max-width: 600px) {
    .logo img {
        height: 70px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pain-title {
        font-size: 1.8rem;
    }

    .pain-quote-text {
        font-size: 1rem;
    }

    .pain-card-title {
        font-size: 1.4rem;
    }

    .segment-btn {
        padding: 20px 25px;
    }

    .segment-btn h3 {
        font-size: 1.1rem;
    }

    /* Featured Quote responsive */
    .featured-quote--editorial {
        padding-left: 20px;
        border-left-width: 2px;
    }

    .quote-text {
        font-size: 1.05rem;
    }

    .quote-signature {
        justify-content: center;
        margin-top: 5px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .card-item {
        padding: 35px 20px;
    }

    .card-item h3 {
        font-size: 1.2rem;
        min-height: auto;
    }

    footer h2 {
        font-size: 1.6rem;
    }

    .lead-magnet-details {
        grid-template-columns: 1fr;
    }

    body {
        padding-top: 90px;
        /* Compensation mobile */
    }

    .newsletter-input {
        min-width: 100%;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .pain-card-bubble-orange {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
        top: -1rem;
        right: -1rem;
    }
}

/* Tablet+ for pain section */
@media (min-width: 768px) {
    .pain-title {
        font-size: 3.5rem;
    }

    .pain-quote-text {
        font-size: 1.4rem;
    }

    .pain-card-impact {
        padding: 4rem;
    }

    .pain-card-title {
        font-size: 2.2rem;
    }
}

@media (min-width: 900px) {
    .pain-bento-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- 3 PILLARS SECTION (Clean Grid) --- */
.piliers-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 50px;
}

.pilier-card {
    background: white;
    padding: 2rem;
    /* Generous padding as requested */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(88, 0, 23, 0.08);
    /* Fine border */
    text-align: left;
    /* Left aligned */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pilier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(88, 0, 23, 0.1);
    border-color: var(--color-burgundy);
}

.pilier-card h3 {
    color: var(--color-burgundy);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-family: var(--font-body);
    /* More modern B2B look */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pilier-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.9;
}

/* Quote Bridge / Transition */
.quote-bridge {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 1rem;
    background-color: #f8f9fa;
    border-left: 4px solid #333;
    border-radius: 4px;
}

.quote-bridge p {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    font-family: var(--font-title);
}

/* Desktop Grid */
/* Desktop Grid - Forced 3 columns */
@media (min-width: 992px) {
    .piliers-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
        align-items: stretch;
    }
}

/* --- ENTERPRISE SECTION UPDATES --- */

.benefit-text {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(88, 0, 23, 0.1);
    font-weight: 600;
    color: var(--color-burgundy);
    font-size: 0.9rem;
}

.conference-secondary-card {
    margin-top: 50px;
    padding: 40px;
    background: rgba(88, 0, 23, 0.02);
    border: 1px solid rgba(88, 0, 23, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.conference-secondary-card:hover {
    background: rgba(88, 0, 23, 0.04);
    box-shadow: var(--shadow-soft);
}

.conference-secondary-card h3 {
    color: var(--color-burgundy);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.conference-secondary-card p {
    font-size: 1.1rem;
    max-width: 800px;
}

.transition-hook {
    text-align: center;
    margin: 80px 0 40px;
}

.transition-hook .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.transition-hook .section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}

.center-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


/* --- LOGO INFINITE MARQUEE (BLINDÉ) --- */

/* Conteneur principal - PLEINE LARGEUR ABSOLUE */
.logo-marquee-wrapper {
    display: flex !important;
    flex-direction: row !important;
    /* Empêche le passage en colonne */
    flex-wrap: nowrap !important;
    /* Interdit le retour à la ligne */
    overflow: hidden;
    user-select: none;

    /* FORÇAGE PLEINE LARGEUR (Edge-to-Edge) */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    /* Technique de breakout infaillible */

    /* RÉDUCTION DE L'ESPACE VERTICAL (Plus élégant) */
    padding: 1.5rem 0 !important;
    background-color: transparent !important; /* Effet totalement flottant !!! */
    position: relative;
}

/* La piste qui défile - Forçage Horizontal */
.logo-marquee-content {
    display: flex !important;
    flex-direction: row !important;
    /* Empêche le passage en colonne */
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-around;
    flex-shrink: 0;
    min-width: 100%;
    gap: 4rem;
    padding-right: 4rem;
    /* Compense le gap pour une boucle 100% invisible */
    animation: scroll-marquee 25s linear infinite;
}

/* Pause au survol */
.logo-marquee-wrapper:hover .logo-marquee-content {
    animation-play-state: paused;
}

/* Harmonisation des logos */
.logo-marquee-content img {
    max-height: 45px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
    /* Empêche les marges fantômes inline */
    filter: none;
}

/* L'animation simplifiée et parfaite */
@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* FIX CTA BUTTON - FOND TRANSPARENT ET UNE SEULE LIGNE */
.cta-decision-zone {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.cta-decision-zone .hero-cta {
    white-space: normal !important; /* Libération responsive */
    width: auto !important;
    max-width: 100% !important;
    display: inline-block !important;
    padding: 18px 45px !important;
    text-align: center;
    background: #FFFFFF !important;
    color: var(--color-burgundy) !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 10px 30px rgba(88, 0, 23, 0.15), 0 5px 10px rgba(0, 0, 0, 0.05) !important;
    transform: translateY(0);
}

.cta-decision-zone .hero-cta:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(88, 0, 23, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    background: #FFFFFF !important;
}

.cta-decision-zone .hero-cta:active {
    transform: translateY(-2px) scale(0.98) !important;
    box-shadow: 0 5px 15px rgba(88, 0, 23, 0.2) !important;
    transition: all 0.1s ease !important;
}

/* --- INTRO MANIFESTE ENTREPRISE --- */
.intro-manifeste-entreprise {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 6rem auto 6rem auto;
    /* Aération massive haut/bas */
    padding: 0 1.5rem;
}

.intro-manifeste-entreprise h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-transform: none;
    max-width: 900px;
}

.intro-manifeste-entreprise p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #5d6d7e;
    font-style: italic;
}

/* --- MANIFESTO SECTION (BORDEAUX CARTRIDGE) --- */
.manifesto-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-burgundy) !important;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 0, 50 10 T 100 10' fill='none' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 400px 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), inset 0 0 30px rgba(212, 175, 55, 0.25);
    /* Bordeaux CTA */
    color: #ffffff !important;
    padding: 80px 20px 40px 20px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 60px 20px 60px 20px;
    font-family: var(--font-body);
}

.manifesto-section h2 {
    margin-bottom: 2rem;
    font-family: 'Ranade', sans-serif;
    font-weight: 800;
    font-size: 2.3rem;
    background: linear-gradient(135deg, #B8860B 0%, #F9E498 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    text-align: center !important;
    line-height: 1.2;
}

.manifesto-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center !important;
}

.manifesto-cartouche h2 {
    font-family: 'Ranade', sans-serif;
    font-weight: 800;
    font-size: 2.5rem !important;
    background: linear-gradient(135deg, #B8860B 0%, #F9E498 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    margin: 0;
    text-transform: none;
    line-height: 1.2;
}

/* CTA Thematiqe Button Styling */
.cta-thematique {
    background-color: var(--color-burgundy) !important;
    color: white !important;
    border: none !important;
    padding: 14px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: var(--font-body) !important;
}

.cta-thematique:hover {
    background-color: #a32248 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 29, 61, 0.3);
}

.manifesto-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.manifesto-section strong {
    color: #ffffff !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* --- MANIFESTE MÉTAMORPHOSE UX 2026 --- */
.manifeste-metamorphose {
    position: relative;
    background-color: var(--bg-cream) !important;
    padding: 120px 0 !important;
    overflow: hidden;
}

.metamorphose-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.title-metamorphose {
    font-family: 'Ranade', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--color-burgundy);
    margin-bottom: 30px;
    line-height: 1.1;
}

.accroche-metamorphose {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--color-text);
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Effet Gold Shine Stabilisé (Correction Conflit) */
.gold-shine-text {
    display: inline;
    font-weight: 700;
    color: #B8860B;
    background: linear-gradient(90deg, #8B6508, #D4AF37, #A67C00, #8B6508);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGoldFlow 4s linear infinite;
}

@keyframes textGoldFlow {
    from { background-position: 0% center; }
    to { background-position: 200% center; }
}

/* Colonne Vidéo & Blob */
.metamorphose-col-video {
    display: flex;
    justify-content: center;
}

.video-organic-blob {
    position: relative;
    width: 400px;
    height: 400px;
    border: 2px solid #D4AF37;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: organicMorph 8s ease-in-out infinite alternate;
}

@keyframes organicMorph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.video-organic-blob:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(139, 29, 61, 0.15);
}

.blob-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bouton Fondatrice Premium */
.btn-premium-fondatrice {
    display: inline-block;
    padding: 16px 45px;
    border: none;
    color: var(--color-burgundy);
    background: #FFFFFF;
    font-family: 'Ranade', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(88, 0, 23, 0.15), 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    white-space: normal !important; /* Autorise le retour à la ligne */
    line-height: 1.2;
    text-align: center;
}

.btn-premium-fondatrice:hover {
    background-color: #FFFFFF;
    color: var(--color-burgundy);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(88, 0, 23, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-premium-fondatrice:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 5px 15px rgba(88, 0, 23, 0.2);
    transition: all 0.1s ease;
}

/* Section Fondatrice Responsive */
.fondatrice-blob-wrapper {
    overflow: hidden;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: organicMorph 8s ease-in-out infinite alternate;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 400px;
    height: 480px;
    max-width: 100%; /* Important pour mobile */
}

.fondatrice-img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center 0% !important;
    transform: scale(1.4);
    transform-origin: top;
    margin: 0;
    padding: 0;
}

.fondatrice-text-content {
    padding-left: 40px;
}

@media (max-width: 768px) {
    .fondatrice-blob-wrapper {
        width: 280px;
        height: 340px;
        margin-bottom: 30px;
    }
    .fondatrice-text-content {
        padding-left: 0;
        text-align: center;
    }
    .fondatrice-text-content .section-title {
        text-align: center !important;
    }
}

.btn-premium-manifeste:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 5px 15px rgba(88, 0, 23, 0.2);
    transition: all 0.1s ease;
}

/* --- BOUTON PREMIUM BLANC -> BORDEAUX (INVERSÉ) --- */
.btn-premium-white {
    display: inline-block;
    padding: 16px 45px;
    border: 2px solid #8B1D3D !important; /* Bordure fine bordeaux */
    color: #8B1D3D !important;
    background: #FFFFFF !important;
    font-family: 'Ranade', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(88, 0, 23, 0.1), 0 5px 10px rgba(88, 0, 23, 0.03);
    transform: translateY(0);
}

.btn-premium-white:hover {
    background-color: #8B1D3D !important;
    color: #FFFFFF !important;
    transform: translateY(-10px) scale(1.02); /* Décollage plus marqué */
    box-shadow: 0 25px 50px rgba(88, 0, 23, 0.25), 0 10px 20px rgba(88, 0, 23, 0.1);
    border-color: #8B1D3D !important;
}

.btn-premium-white:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 5px 15px rgba(88, 0, 23, 0.2);
    transition: all 0.1s ease;
}

/* Bouton CTA Premium (Ex: Manifeste) */
.btn-premium-manifeste {
    display: inline-block;
    padding: 16px 45px;
    border: none;
    color: var(--color-burgundy);
    background: #FFFFFF;
    font-family: 'Ranade', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(88, 0, 23, 0.15), 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
}

.btn-premium-manifeste:hover {
    background-color: #FFFFFF;
    color: var(--color-burgundy);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(88, 0, 23, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-premium-manifeste:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 5px 15px rgba(88, 0, 23, 0.2);
    transition: all 0.1s ease;
}

/* --- HARMONISATION LINKEDIN --- */
.cta-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: transparent !important;
    border: 1px solid rgba(139, 29, 61, 0.3) !important;
    color: #8B1D3D !important;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-linkedin:hover {
    background: rgba(139, 29, 61, 0.05) !important;
    border-color: #8B1D3D !important;
    transform: translateY(-8px) scale(1.02); /* Effet 3D boosté */
    box-shadow: 0 15px 30px rgba(139, 29, 61, 0.2), 0 5px 10px rgba(0, 0, 0, 0.05);
}

/* Transition Onde Vaporeuse (SVG) */
.vapor-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--bg-cream);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23faf9f6' fill-opacity='1' d='M0,192L48,197.3C96,203,192,213,288,192C384,171,480,117,576,112C672,107,768,149,864,154.7C960,160,1056,128,1152,112C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23faf9f6' fill-opacity='1' d='M0,192L48,197.3C96,203,192,213,288,192C384,171,480,117,576,112C672,107,768,149,864,154.7C960,160,1056,128,1152,112C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-size: cover;
    z-index: 10;
}

@media (max-width: 900px) {
    .manifeste-metamorphose {
        padding: 80px 0 !important;
    }
    
    .metamorphose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .title-metamorphose {
        font-size: 2.5rem;
    }
    
    .video-organic-blob {
        width: 300px;
        height: 300px;
    }
}

/* === TYPOGRAPHY MODERNIZATION - ZERO SERIF === */

/* Keynote Format Header */
.format-keynote-header {
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 800 !important;
    color: #8B1D3D !important;
    font-family: var(--font-body) !important;
}

/* Massive Price Styling */
.price-massive {
    font-weight: 900 !important;
    font-size: 1.2em;
    /* Relative boost to current header size */
    display: inline-block;
}

/* "POUR ALLER PLUS LOIN" Declaration */
.title-declaration {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body) !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.manifesto-section strong {
    color: #ffffff !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* --- CENTER HERO EFFECT - CONFERENCE SIGNATURE --- */
.card-signature {
    transform: scale(1.05);
    border: 4px solid transparent !important;
    border-image: linear-gradient(135deg, #B8860B 0%, #F9E498 50%, #D4AF37 100%) 1 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 40px rgba(139, 29, 61, 0.2);
    z-index: 2;
    background-color: #FFFFFF;
}

.card-signature:hover {
    transform: scale(1.07);
    box-shadow: 0 25px 50px rgba(139, 29, 61, 0.3);
}

.badge-signature {
    background: linear-gradient(135deg, #B8860B 0%, #F9E498 50%, #D4AF37 100%);
    color: #8B1D3D;
    font-family: 'Ranade', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-signature {
    background: linear-gradient(135deg, #B8860B 0%, #F9E498 50%, #D4AF37 100%) !important;
    color: #8B1D3D !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
    border: none !important;
}

.cta-signature:hover {
    background: linear-gradient(135deg, #F9E498 0%, #D4AF37 50%, #B8860B 100%) !important;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6) !important;
}

@media (max-width: 768px) {
    .card-signature {
        transform: scale(1);
        margin: 20px 0;
    }

    .card-signature:hover {
        transform: scale(1.02);
    }
}

/* === ATELIERS MUTATION VISUELLE === */
.atelier-card {
    border-radius: 40px 15px 40px 15px;
    box-shadow: 0 20px 40px rgba(139, 29, 61, 0.12);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border 0.3s ease;
    background-color: var(--bg-off-white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid transparent;
}

.atelier-card h3 {
    margin-bottom: 10px;
    line-height: 1.3;
}

.atelier-duration {
    font-family: 'Ranade', sans-serif;
    font-size: 0.85rem;
    color: #8B1D3D;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.atelier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(139, 29, 61, 0.2);
    border: 1px solid #D4AF37;
}

.atelier-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.btn-atelier-immersion {
    border-radius: 50px;
    background-color: #8B1D3D;
    color: #FFFFFF;
    font-family: 'Ranade', sans-serif;
    font-weight: 800;
    padding: 16px 40px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: inline-block;
    border: none;
    box-shadow: 0 10px 20px rgba(139, 29, 61, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.btn-atelier-immersion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: goldShine 5s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-atelier-immersion:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(139, 29, 61, 0.4);
    background-color: #7a1835;
    color: #FFFFFF;
}

@keyframes goldShine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Forçage CSS Titre Transition */
#transition-ateliers h2,
.section-transition-ateliers .title-vibration,
.section-transition-ateliers .title-declaration {
    color: #8B1D3D !important;
    background: none !important;
}

/* ========================================================================= */
/* MODAL REACH & CTA STYLES                                                  */
/* ========================================================================= */

.pill-shape {
    border-radius: 50px !important;
    padding: 15px 35px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    text-align: center;
}

.btn-social-outline {
    background-color: transparent !important;
    border: 2px solid #8B1D3D !important;
    color: #8B1D3D !important;
    transition: all 0.3s ease;
}

.btn-social-outline:hover {
    background-color: #8B1D3D !important;
    color: #FFFFFF !important;
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(212, 175, 55, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: goldShineSweep 5s infinite;
}

@keyframes goldShineSweep {
    0% {
        left: -150%;
    }

    20% {
        left: 250%;
    }

    100% {
        left: 250%;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    background: #FAF9F6;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(139, 29, 61, 0.2);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #8B1D3D;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #000;
}

/* Reach Form */
.reach-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.reach-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: 'Ranade', sans-serif;
    color: #1A1A1A;
}

.reach-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CCC;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.reach-form input:focus {
    outline: none;
    border-color: #8B1D3D;
    box-shadow: 0 0 0 2px rgba(139, 29, 61, 0.1);
}

/* --- SECTION PROGRAMME SIGNATURE V2 (IMMERSIVE) --- */
.signature-section {
    padding-top: 100px;
    padding-bottom: 150px;
    background-color: var(--bg-cream);
}

.signature-immersive-v2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}
@media (min-width: 992px) {
    .signature-immersive-v2 {
        flex-direction: row;
        align-items: stretch;
    }
    .immersive-col-left {
        width: 60%;
        padding-right: 40px;
    }
    .immersive-col-right {
        width: 40%;
    }
}

.immersive-title {
    font-family: 'Ranade', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #8B1D3D;
    line-height: 1.2;
    margin-bottom: 10px;
}

.immersive-accroche {
    font-family: 'Ranade', sans-serif;
    font-weight: 400;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.immersive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.immersive-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
}

.diamond-icon {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-top: -2px;
}

.engagement-card {
    background-color: #FDFCF0;
    border-left: 2px solid #D4AF37;
    padding: 45px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(139, 29, 61, 0.08);    
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.engagement-price {
    font-family: 'Ranade', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #8B1D3D;
    margin-bottom: 5px;
    text-align: center;
}

.engagement-installment {
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
    margin-bottom: 30px;
}

.engagement-cta {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 16px 20px;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.engagement-mentions {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.5;
    text-align: center;
    color: var(--color-text);
}

/* ANIMATION FADE-IN-UP (REVEAL) */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* OFFRE SECONDAIRE CONFÉRENCE */
.conference-secondary-v2 {
    margin-top: 60px;
    background: #FAFAFA;
    border: 1px solid rgba(88, 0, 23, 0.08);
    border-radius: 8px;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .conference-secondary-v2 {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .conf-secondary-content {
        flex: 1;
        padding-right: 40px;
    }
    .conf-secondary-action {
        width: 300px;
        text-align: center;
        border-left: 1px solid rgba(88, 0, 23, 0.1);
        padding-left: 40px;
    }
}

.conf-secondary-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8B1D3D;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.conf-secondary-title {
    font-family: 'Ranade', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.conf-secondary-text {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.conf-secondary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conf-secondary-list li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.85;
}

.conf-secondary-list .diamond-icon {
    font-size: 1rem;
}

/* --- LEAD MAGNET PREMIUM BUTTON (FOOTER) --- */
.btn-kit-premium {
    background: #FFFFFF !important;
    color: #8B1D3D !important;
    font-weight: 800 !important;
    border: none !important;
    padding: 18px 45px !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Effet initial de décollage */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(0);
}

.btn-kit-premium:hover {
    /* Il se détache encore plus au survol */
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.btn-kit-premium:active {
    /* Effet de pression au clic */
    transform: translateY(-2px) scale(0.98) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.1s ease;
}
