
        /* --- VARIABLES & RESET --- */
        :root {
            /* Couleurs de la charte graphique */
            --gold-primary: #b89b53;
            --wine-red: #73041e;
            --bg-dark: #0d0d0d;
            --bg-card: #161616;
            
            /* Dégradé horizontal à 5 points d'ancrage */
            --gradient-gold: linear-gradient(to right, 
                #e7aa51 0%, 
                #ffe499 25%, 
                #8d5a1b 50%, 
                #e7aa51 75%, 
                #ac7031 100%
            );
            
            --text-light: #fff;
            --text-muted: #ccc;
        }

        body {
            margin: 0;
            /* Police Georgia de la charte */
            font-family: 'Georgia', serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- HERO SECTION --- */
        header {
            position: relative;
            padding: 120px 50px;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
        }

        .header-content {
            max-width: 850px;
            z-index: 2;
        }

        header h1 {
            font-size: 4.5em;
            margin: 0;
            /* Titre avec le dégradé 5 points */
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.05;
            font-weight: 900;
        }

        header p {
            font-size: 1.4em;
            color: var(--text-muted);
            margin: 25px 0 40px;
            max-width: 650px;
        }

        .hero-form {
            display: flex;
            gap: 10px;
            background: rgba(255,255,255,0.03);
            padding: 8px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            max-width: 550px;
        }
        .hero-form input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0 20px;
            color: white;
            outline: none;
        }

        .proof-container {
            margin-top: 40px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .avatar-group { display: flex; }
        .avatar-group img {
            width: 45px; height: 45px;
            border-radius: 50%; border: 2px solid var(--bg-dark);
            margin-left: -12px; background: #333;
        }
        .avatar-group img:first-child { margin-left: 0; }
        .proof-text { font-size: 0.9em; color: var(--text-muted); font-weight: 500; }

        .floating-img {
            position: absolute;
            right: 5%; top: 50%;
            transform: translateY(-40%);
            width: 400px; height: 500px;
            object-fit: cover; border-radius: 20px;
            box-shadow: 0 20px 50px rgba(184, 155, 83, 0.2);
            border: 2px solid var(--gold-primary);
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(-40%); }
            50% { transform: translateY(-45%); }
        }

        /* --- SECTION VIDÉO STRATÉGIQUE --- */
        .video-highlight {
            background: #111;
            padding: 60px 20px;
            text-align: center;
            border-bottom: 1px solid #222;
        }
        .video-container {
            max-width: 900px;
            margin: 30px auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(115, 4, 30, 0.3); /* Lueur rouge vin */
            border: 1px solid #333;
        }
        .video-container video {
            width: 100%;
            display: block;
        }
        .video-highlight p {
            max-width: 800px;
            margin: 0 auto 20px;
            font-size: 1.2em;
            font-weight: 500;
        }

        /* --- LOGOS DÉFILANTS --- */
        .trusted-section { background: #000; padding: 40px 0; border-top: 1px solid #222; }
        .trusted-section h2 { text-align: center; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; color: var(--text-muted); }
        .logos-container { overflow: hidden; white-space: nowrap; position: relative; }
        .logos-slide { display: inline-block; animation: slide 25s linear infinite; }
        .logos-slide span { font-size: 1.8em; font-weight: bold; margin: 0 40px; color: #444; transition: 0.3s; }
        .logos-slide span:hover { color: var(--gold-primary); }

        @keyframes slide {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* --- AGENCE BOX --- */
        .agency-box {
            display: flex; background: linear-gradient(145deg, #12151c, #0a0c10);
            border-radius: 40px; margin: 100px auto; max-width: 1200px; 
            border: 1px solid rgba(255,255,255,0.05);
        }
        .agency-content { padding: 60px; flex: 1.2; }
        .agency-content i { color: var(--gold-primary); font-style: italic; font-size: 1.1rem; border-left: 3px solid var(--gold-primary); padding-left: 20px; }
        
        .agency-img-container {
            flex: 0.8; min-height: 450px; 
            background-image: linear-gradient(to top, rgba(5,7,10,0.9), transparent); 
            background-size: cover; background-position: center;
            display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 40px;
            position: relative;
        }
        .urgency-badge {
            background: var(--wine-red); /* Rouge vin de la charte */
            color: white; padding: 10px 20px; border-radius: 50px;
            font-size: 0.85rem; font-weight: 700; margin-top: 20px;
            animation: pulse 2s infinite;
        }

        /* --- SECTION INFLUENCE --- */
        .influence-section {
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 100px 50px;
            max-width: 1200px;
            margin: auto;
        }
        .influence-content { flex: 1; }
        .influence-content span { color: var(--gold-primary); text-transform: uppercase; font-weight: bold; font-size: 0.8rem; letter-spacing: 1px; }
        .influence-content h2 { text-align: left; margin: 15px 0; font-size: 3rem; color: #fff; }
        .influence-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; }
        .influence-visual { 
            flex: 1; 
            position: relative; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
        }
        .influence-visual img.main-img { 
            width: 80%; 
            border-radius: 20px; 
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }
        .influence-visual img.overlay-phone {
            position: absolute;
            width: 65%;
            right: -10%;
            bottom: -10%;
            transform: rotate(5deg);
            border: 5px solid #000;
        }

        /* --- CARDS & SERVICES --- */
        section { padding: 80px 20px; max-width: 1200px; margin: auto; }
        h2 { text-align: center; font-size: 2.5em; margin-bottom: 50px; color: var(--gold-primary); }

        #programmes { padding: 80px 20px; max-width: 1200px; margin: auto; }
        #programmes .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }

        .card-featured {
            position: relative;
            height: 550px;
            padding: 0 !important;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: transform 0.5s ease;
        }

        .card-featured:hover .card-bg {
            transform: scale(1.05);
        }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 70%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0) 100%);
            z-index: 2;
            display: flex;
            align-items: flex-end;
            padding: 30px;
        }

        .card-content { width: 100%; }

        .card-featured h3 {
            font-size: 1.8em !important;
            color: var(--gold-primary) !important;
            margin-bottom: 15px !important;
            font-weight: 700;
        }

        .card-featured p {
            font-size: 1.1em;
            color: var(--text-muted);
            margin-bottom: 25px !important;
            line-height: 1.4;
            max-width: 90%;
        }

        .card-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .card-link span {
            display: inline-block;
            border: 1px solid var(--gold-primary);
            border-radius: 4px;
            padding: 2px 6px;
            font-size: 0.8em;
            color: var(--gold-primary);
        }

        .podcast-section {
            padding: 100px 50px;
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            position: relative;
        }

        .podcast-info { flex: 1; }
        .podcast-info span { color: var(--gold-primary); font-weight: bold; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
        .podcast-info h2 { text-align: left; font-size: 3.5rem; color: #fff; margin: 10px 0 20px; font-weight: 800; }
        .podcast-info .stats { font-size: 1.2rem; color: #fff; margin-bottom: 20px; font-weight: 600; }
        .podcast-info .desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; max-width: 500px; }

        .podcast-visual { flex: 1; position: relative; display: flex; justify-content: center; }
        .phone-container { position: relative; width: 300px; z-index: 5; }
        .dalisa-linkedin-img { width: 100%; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8)); border-radius: 40px; }
        
        .floating-bubble {
            position: absolute;
            background: rgba(184, 155, 83, 0.2);
            backdrop-filter: blur(10px);
            padding: 12px 25px;
            border-radius: 50px;
            border: 1px solid var(--gold-primary);
            color: #fff;
            font-weight: 600;
            white-space: nowrap;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: float-bubble 4s ease-in-out infinite;
        }
        .bubble-1 { top: 20%; right: -120px; animation-delay: 0s; }
        .bubble-2 { bottom: 20%; left: -140px; animation-delay: 1s; }

        @keyframes float-bubble {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .listen-on { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 30px; align-items: center; }
        .listen-on span { font-size: 0.9rem; color: #888; width: 100%; margin-bottom: 5px; }
        .platform-badge {
            background: #000;
            border: 1px solid #333;
            padding: 8px 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #fff;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .platform-badge:hover { border-color: var(--gold-primary); background: #111; }
        .platform-badge i { font-size: 1.2rem; }

        /* --- LIVRE & PODCAST --- */
        .featured-row { display: flex; align-items: center; justify-content: center; gap: 80px; padding: 60px 0; flex-wrap: wrap; }
        .book-img { width: 320px; transform: rotate(-6deg); filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8)); transition: 0.5s; }
        .book-img:hover { transform: rotate(0deg) scale(1.05); }

        .badge-list { display: flex; gap: 15px; margin-top: 25px; }
        .badge-list img { height: 35px; opacity: 0.8; transition: 0.3s; }
        .badge-list img:hover { opacity: 1; transform: translateY(-3px); }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* --- SECTION À PROPOS --- */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #0d0d0d, #161616);
}

.about-container {
    max-width: 1100px;
    margin: auto;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header .subtitle {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: bold;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.main-bio-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #000;
    min-width: 120px;
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 900;
}

.experience-badge .exp-text {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.about-text-side .lead {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 20px;
}

.about-text-side p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.bio-quote {
    border-left: 4px solid var(--wine-red);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* --- JOURNEY CARD --- */
.journey-section {
    margin-top: 80px;
}

.journey-card {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

.journey-card h3 {
    color: var(--gold-primary);
    font-size: 2rem;
    margin-bottom: 30px;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.highlight-box {
    grid-column: span 2;
    background: rgba(115, 4, 30, 0.1);
    border: 1px solid var(--wine-red);
    padding: 25px;
    border-radius: 15px;
    color: #fff !important;
}

@media (max-width: 900px) {
    .about-grid, .journey-content {
        grid-template-columns: 1fr;
    }
    .experience-badge {
        right: 10px;
    }
    .journey-card {
        padding: 30px;
    }
}



                /* --- SECTION FAQ --- */
        .faq-section {
            padding: 100px 20px;
            max-width: 900px;
            margin: auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header h1 {
            font-size: 3em;
            margin: 0;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
        }

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Style des boîtes de questions */
        details {
            background: var(--bg-card);
            border: 1px solid rgba(184, 155, 83, 0.2);
            border-radius: 15px;
            overflow: hidden;
            transition: 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        details[open] {
            border-color: var(--gold-primary);
            box-shadow: 0 0 20px rgba(115, 4, 30, 0.2);
        }

        summary {
            padding: 25px;
            font-size: 1.2em;
            font-weight: bold;
            color: var(--gold-primary);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        summary::-webkit-details-marker { display: none; }

        summary::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            transition: 0.3s;
            font-size: 0.8em;
        }

        details[open] summary::after {
            transform: rotate(180deg);
            color: var(--wine-red);
        }

        .faq-content {
            padding: 0 25px 25px;
            color: var(--text-muted);
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 20px;
        }

        /* Style des listes à puces (Checkmarks) */
        .faq-list {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }

        .faq-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .faq-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--gold-primary);
            background: rgba(184, 155, 83, 0.1);
            padding: 4px;
            border-radius: 4px;
            font-size: 0.8em;
        }

        /* --- FOOTER --- */
        footer { background: #000; padding: 80px 50px 30px; border-top: 2px solid var(--gold-primary); }
        .footer-container { display: flex; flex-wrap: wrap; gap: 50px; max-width: 1200px; margin: auto; }
        .footer-col { flex: 1; min-width: 250px; }
        .footer-col h3 { color: var(--gold-primary); margin-bottom: 20px; }
        .footer-col ul { list-style: none; padding: 0; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
        .footer-col a:hover { color: var(--gold-primary); }
        .socials-real { display: flex; gap: 20px; margin-top: 15px; }
        .socials-real a { font-size: 1.5rem; color: #fff; transition: 0.3s; }
        .socials-real a:hover { color: var(--gold-primary); transform: translateY(-3px); }

        .newsletter input { padding: 12px; border-radius: 5px 0 0 5px; border: 1px solid #333; background: #111; color: #fff; width: 60%; }
        .newsletter button { padding: 12px 20px; background: var(--gradient-gold); border: none; border-radius: 0 5px 5px 0; cursor: pointer; font-weight: bold; }

        .legal { width: 100%; text-align: center; margin-top: 50px; padding-top: 20px; border-top: 1px solid #222; color: #555; }

        @media (max-width: 1000px) {
            .agency-box, .featured-row, .influence-section { flex-direction: column; text-align: center; }
            .influence-content h2 { text-align: center; }
            .influence-visual img.overlay-phone { right: 0; bottom: -20px; width: 50%; }
            .floating-img { position: relative; width: 100%; height: auto; right: 0; top: 0; transform: none; margin-top: 40px; }
            header h1 { font-size: 2.8em; }
            nav { padding: 15px 20px; flex-direction: column; gap: 15px; }
        }