/* === RESET & VARIABLES MODERNES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette moderne et sophistiquée */
    --primary-50: #fef7ee;
    --primary-100: #fdedd3;
    --primary-200: #fbd7a5;
    --primary-300: #f8bb6d;
    --primary-400: #f59532;
    --primary-500: #f2750a;
    --primary-600: #e35d05;
    --primary-700: #bc4508;
    --primary-800: #96370e;
    --primary-900: #792f0f;
    
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    
    /* Gradients modernes */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-50) 0%, var(--neutral-50) 50%, var(--primary-100) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    
    /* Typography moderne */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Tailles de police standardisées */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    
    /* Poids de police standardisés */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Spacing système */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Système d'espacement plus sophistiqué */
    /* Espacement vertical pour les sections */
    --section-padding-sm: var(--space-16);  /* 4rem - 64px */
    --section-padding-md: var(--space-20);  /* 5rem - 80px */
    --section-padding-lg: var(--space-24);  /* 6rem - 96px */
    
    /* Espacement entre éléments */
    --element-gap-sm: var(--space-4);   /* 1rem - 16px */
    --element-gap-md: var(--space-6);   /* 1.5rem - 24px */
    --element-gap-lg: var(--space-8);   /* 2rem - 32px */
    
    /* Shadows modernes */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions fluides */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* === BASE STYLES === */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: 1.6;
    color: var(--neutral-800);
    background: var(--neutral-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Système de grille plus précis */
.section-content {
    display: grid;
    gap: var(--space-8);
    align-items: start;
}

/* === NAVIGATION MODERNE === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    object-fit: contain;
    background: white;
    padding: 4px;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral-900);
}

.nav-menu {
    display: flex;
    gap: var(--space-8);
}

/* Styles pour la structure ul/li des pages de projets */
.nav-menu ul {
    display: flex;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Ou mieux encore, uniformiser en modifiant directement nav-menu quand c'est un ul */
ul.nav-menu {
    display: flex;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    gap: var(--space-3);
}

.btn-secondary {
    padding: var(--space-3) var(--space-6);
    border: 1px solid var(--neutral-300);
    background: transparent;
    color: var(--neutral-700);
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    text-align: center;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-400);
}

.btn-primary {
    padding: var(--space-4) var(--space-8);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 1px;
    transition: var(--transition-fast);
}

/* === HERO SECTION ULTRA-MODERNE === */
.hero {
    min-height: 100vh;
    padding: var(--section-padding-lg) 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-300), var(--primary-500));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-blue), var(--accent-purple));
    top: 50%;
    right: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-green), var(--accent-pink));
    bottom: -125px;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--neutral-200);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    line-height: 1.1;
    color: var(--neutral-900);
    margin-bottom: var(--space-6);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--neutral-600);
    margin-bottom: var(--space-8);
    max-width: 500px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-hero-primary {
    padding: var(--space-4) var(--space-8);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    text-align: center;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
    padding: var(--space-4) var(--space-8);
    background: rgba(255, 255, 255, 0.9);
    color: var(--neutral-700);
    border: 1px solid var(--neutral-300);
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    text-align: center;
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    background: white;
    border-color: var(--primary-300);
    color: var(--primary-600);
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--neutral-500);
    margin-top: var(--space-1);
}

/* === CARTES FLOTTANTES HERO === */
.hero-visual {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: visible;
}

/* === NOUVELLE SECTION HERO AVEC IMAGE CLIENTS === */
.hero-visual-container {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: visible;
}

.clients-image-section {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.clients-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.clients-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* === AJUSTEMENT BOUTON POUR ÉCRANS ORDINATEUR === */

/* Styles par défaut pour ordinateur */
.reveal-cards-btn {
    position: absolute;
    bottom: 190px; /* Abaissé pour éviter le texte */
    right: 20px; /* Positionné à droite */
    left: auto;
    top: auto;
    transform: none;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
    border: 2px solid white;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    transition: all 0.3s ease;
    z-index: 15;
    min-width: 120px;
    backdrop-filter: blur(5px);
}

.reveal-cards-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.7);
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    scale: 1.05;
}

.reveal-cards-btn:active {
    transform: translateY(-1px);
    scale: 0.98;
}

/* Overlay réduit pour ordinateur */
.clients-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    width: 140px;
    height: 70px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    border-radius: 0 0 20px 0;
    pointer-events: none;
    z-index: 5;
}

/* Ajustements pour tablettes */
@media (max-width: 1024px) {
    .reveal-cards-btn {
        bottom: 18px;
        right: 18px;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .clients-image-wrapper::before {
        width: 120px;
        height: 65px;
    }
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.reveal-cards-btn:hover .btn-shine {
    left: 100%;
}

/* Animation d'apparition des cartes */
.hero-visual.show {
    display: block !important;
    animation: fadeInCards 0.8s ease-out forwards;
}

@keyframes fadeInCards {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: var(--space-6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInSequence 0.6s ease-out forwards, floatCard 4s ease-in-out infinite 1s;
    transition: all var(--transition-normal);
    /* Alignement précis */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    z-index: 10 !important;
    background: rgba(255, 255, 255, 0.98);
}

/* Carte 1: Vanessa (haut gauche - point de départ) */
.card-1 {
    top: 20px;
    left: 20px;
    width: 220px;
    animation-delay: 0s;
    z-index: 4;
}

/* Carte 2: Clients (haut droite - contexte) */
.card-2 {
    top: 20px;
    right: 20px;
    width: 200px;
    animation-delay: 0.5s;
    z-index: 3;
}

/* Carte 3: Interactions (bas gauche - processus) - Position plus basse pour plus d'espace */
.card-3 {
    bottom: 80px; /* Diminution pour descendre la carte et créer plus d'espace */
    left: 20px;
    width: 240px;
    animation-delay: 1s;
    z-index: 2;
}

/* Carte 4: Résultats (bas droite - conclusion) - Position plus basse pour plus d'espace */
.card-4 {
    bottom: 20px; /* Diminution pour descendre la carte et créer plus d'espace */
    right: 20px;
    width: 220px;
    animation-delay: 1.5s;
    z-index: 1;
    /* Style distinctif avec bon contraste */
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    border: 2px solid #065F46;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.card-4:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.card-4 .card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-4 .card-title {
    color: white !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-4 .card-status.success {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #065F46 !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.card-4 .card-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px;
    backdrop-filter: blur(10px);
}

.card-4 .result-number {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    font-size: 18px;
}

.card-4 .result-label {
    color: #f0fdf4 !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 10px;
}

.card-4 .results-grid {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px;
    padding: var(--space-2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-4 .result-item {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px;
    padding: var(--space-1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Suppression de la carte 5 (Popey) */
.card-5 {
    display: none;
}

/* Flèches de lecture optionnelles */
.hero-visual::before {
    content: '→';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--primary-400);
    opacity: 0.6;
    z-index: 0;
}

.hero-visual::after {
    content: '↓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--primary-400);
    opacity: 0.6;
    z-index: 0;
}

.card-icon-image {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    padding: 4px;
    box-shadow: var(--shadow-md);
}

.popey-floating-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes floatCard {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(0.5deg); 
    }
}

/* Animation d'apparition séquentielle */
@keyframes fadeInSequence {
    0% { 
        opacity: 0;
        transform: translateY(20px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-card .card-icon {
    font-size: 24px;
    margin-bottom: var(--space-3);
}

.floating-card .card-title {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--neutral-800);
    margin-bottom: var(--space-1);
}

.floating-card .card-subtitle {
    font-size: 14px;
    color: var(--neutral-500);
    margin-bottom: var(--space-2);
}

.floating-card .card-rating,
.floating-card .card-badge {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-600);
}

.floating-card .card-progress {
    height: 4px;
    background: var(--neutral-200);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.floating-card .card-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: progressFill 2s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 60%; }
}

/* Animation sans rotation pour la carte Popey */
@keyframes floatCardNoRotation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* === NOUVELLES CARTES INTERACTIONS === */
.card-status {
    padding: var(--space-1) var(--space-2);
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-status.online {
    background: var(--accent-green)/20;
    color: var(--accent-green);
}

.card-status.active {
    background: var(--accent-blue)/20;
    color: var(--accent-blue);
}

.card-status.success {
    background: var(--primary-100);
    color: var(--primary-600);
}

.card-date {
    background: var(--neutral-100);
    color: var(--neutral-600);
    padding: var(--space-1) var(--space-2);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
}

.card-project {
    background: var(--primary-50);
    color: var(--primary-600);
    padding: var(--space-1) var(--space-2);
    border-radius: 8px;
    font-size: 11px;
    margin-top: var(--space-2);
}

.card-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-600);
    line-height: 1;
    margin: var(--space-1) 0;
}

.card-trend {
    font-size: 10px;
    color: var(--accent-green);
    font-weight: 600;
}

.interaction-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.interaction-item {
    font-size: 16px;
    color: var(--neutral-600);
    background: var(--neutral-50);
    padding: var(--space-1) var(--space-2);
    border-radius: 7px;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-1);
    margin-top: var(--space-2);
}

.result-item {
    text-align: center;
    background: var(--neutral-50);
    padding: var(--space-1) var(--space-2);
    border-radius: 6px;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-item:last-child {
    grid-column: 1 / -1;
    max-width: 60%;
    margin: 0 auto;
}

.result-number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-600);
    line-height: 1;
}

.result-label {
    font-size: 9px;
    color: var(--neutral-500);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: var(--space-1);
    line-height: 1;
}

/* === SECTION CONCEPT POPEY === */
.concept-section {
    padding: var(--section-padding-md) 0;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--primary-50) 100%);
    position: relative;
    overflow: hidden;
}

.concept-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23f2750a" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

.concept-header {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 2;
}

.concept-icon {
    font-size: 64px;
    margin-bottom: var(--space-4);
    display: block;
}

.concept-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.concept-subtitle {
    font-size: 20px;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto var(--space-6);
    line-height: 1.5;
}

.play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

.play-icon {
    font-size: 32px;
    margin-left: 4px;
}

@keyframes pulse {
    0% { box-shadow: var(--shadow-xl), 0 0 0 0 rgba(242, 117, 10, 0.4); }
    70% { box-shadow: var(--shadow-xl), 0 0 0 20px rgba(242, 117, 10, 0); }
    100% { box-shadow: var(--shadow-xl), 0 0 0 0 rgba(242, 117, 10, 0); }
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--element-gap-lg);
    margin: var(--section-padding-sm) 0;
    position: relative;
    z-index: 2;
}

.concept-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: var(--space-8);
    margin-bottom: var(--element-gap-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out forwards;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.concept-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-200);
}

.concept-card:hover::before {
    transform: scaleX(1);
}

.concept-card .card-icon {
    font-size: 48px;
    margin-bottom: var(--space-4);
    display: block;
}

.concept-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
}

.concept-card p {
    color: var(--neutral-600);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.concept-card .feature-list {
    list-style: none;
    text-align: left;
}

.concept-card .feature-list li {
    color: var(--neutral-700);
    padding: var(--space-1) 0;
    position: relative;
    padding-left: var(--space-6);
}

.concept-card .feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-600);
    font-weight: bold;
}

.concept-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: var(--space-6);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(242, 117, 10, 0.2);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

.stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-600);
    display: block;
    margin-bottom: var(--space-2);
}

.stat-card .stat-label {
    color: var(--neutral-600);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === SECTIONS COMMUNES === */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-badge {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-300);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    animation: badgeAppear 0.6s ease-out;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-normal);
}

.section-badge:hover::before {
    left: 100%;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

/* Badges spécifiques pour différencier les sections */
.experience .section-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-color: #6EE7B7;
}

.experience .section-badge::after {
    content: '☕';
    margin-left: var(--space-2);
    font-size: 14px;
}

.talents .section-badge {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-color: #C4B5FD;
}

.talents .section-badge::after {
    content: '🚀';
    margin-left: var(--space-2);
    font-size: 14px;
}

.impact .section-badge {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border-color: #FCD34D;
}

.impact .section-badge::after {
    content: '💡';
    margin-left: var(--space-2);
    font-size: 14px;
}

/* Animation d'apparition pour les badges */
@keyframes badgeAppear {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === SECTION COMMENT ÇA MARCHE === */
.how-it-works {
    padding: var(--section-padding-sm) 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(242, 117, 10, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.how-it-works .section-badge {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border: 2px solid var(--primary-300);
    color: white;
    box-shadow: 0 8px 32px rgba(242, 117, 10, 0.3);
}

.how-it-works .section-badge::after {
    content: '🚀';
    margin-left: var(--space-2);
    font-size: 16px;
}

.how-it-works .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.how-it-works .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.how-it-works-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 2;
}

.process-step {
    flex: 1;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: var(--space-10);
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), #3B82F6, #10B981);
    opacity: 0;
    transition: var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.process-step:hover::before {
    opacity: 1;
}

.step-icon {
    font-size: 72px;
    margin-bottom: var(--space-6);
    display: block;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: var(--transition-normal);
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.how-it-works-visual {
    position: relative;
    z-index: 2;
    margin-top: var(--space-16);
}

.interaction-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: var(--space-10);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
    min-width: 160px;
    transition: var(--transition-normal);
}

.flow-step:hover {
    transform: translateY(-4px);
}

.flow-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 24px;
    box-shadow: 
        0 8px 24px rgba(242, 117, 10, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.flow-step:hover .flow-number {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 12px 32px rgba(242, 117, 10, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.flow-text {
    font-weight: 600;
    color: white;
    font-size: 16px;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.flow-arrow {
    font-size: 32px;
    color: var(--primary-400);
    font-weight: bold;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: arrowGlow 2s ease-in-out infinite;
}

@keyframes arrowGlow {
    0%, 100% { 
        opacity: 0.7;
        transform: translateX(0) scale(1);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    50% { 
        opacity: 1;
        transform: translateX(8px) scale(1.1);
        filter: drop-shadow(0 4px 12px rgba(242, 117, 10, 0.5));
    }
}

/* === SECTION EXPÉRIENCE === */
.experience {
    padding: var(--section-padding-md) 0;
    background: white;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--element-gap-md);
    margin-top: var(--section-padding-sm);
}

.experience-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: var(--space-8);
    margin-bottom: var(--element-gap-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out forwards;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.experience-card:hover::before {
    transform: scaleX(1);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-200);
}

.experience-card:nth-child(2) { animation-delay: 0.1s; }
.experience-card:nth-child(3) { animation-delay: 0.2s; }
.experience-card:nth-child(4) { animation-delay: 0.3s; }

.experience-card.featured {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-600);
}

.experience-card.featured .card-header h3,
.experience-card.featured p {
    color: white;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
}

.card-icon-modern {
    width: 56px;
    height: 56px;
    background: var(--primary-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.experience-card.featured .card-icon-modern {
    background: rgba(255, 255, 255, 0.2);
}

.card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-900);
}

.experience-card p {
    color: var(--neutral-600);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.card-features {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.feature-tag {
    padding: var(--space-1) var(--space-3);
    background: var(--neutral-100);
    color: var(--neutral-600);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.experience-card.featured .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.impact-visual {
    margin-top: var(--space-4);
}

.impact-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: var(--space-2);
}

.impact-fill {
    height: 100%;
    width: 75%;
    background: white;
    border-radius: 4px;
    animation: fillBar 3s ease-in-out infinite;
}

@keyframes fillBar {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 75%; }
}

.impact-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* === SECTION TALENTS === */
.talents {
    padding: var(--section-padding-md) 0;
    background: var(--neutral-50);
}

.talents-showcase {
    display: grid;
    gap: var(--space-6);
}

.talent-card {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: 20px;
    padding: var(--space-8);
    margin-bottom: var(--element-gap-md);
    transition: var(--transition-normal);
}

.talent-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

.talent-visual {
    position: relative;
}

.talent-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-md);
}

.talent-status {
    position: absolute;
    bottom: -8px;
    right: -8px;
    padding: var(--space-1) var(--space-2);
    background: var(--accent-green);
    color: white;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.talent-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-2);
}

.talent-info p {
    color: var(--neutral-600);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.talent-metrics {
    display: flex;
    gap: var(--space-4);
}

.metric {
    font-size: 14px;
    color: var(--neutral-500);
    font-weight: 500;
}

/* === SECTION IMPACT === */
.impact {
    padding: var(--section-padding-md) 0;
    background: white;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.impact-text .section-title {
    text-align: left;
    margin-bottom: var(--space-6);
}

.impact-text p {
    color: var(--neutral-600);
    margin-bottom: var(--space-8);
    line-height: 1.7;
    font-size: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.value-item {
    display: flex;
    gap: var(--space-3);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.value-text h4 {
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-1);
}

.value-text p {
    font-size: 14px;
    color: var(--neutral-500);
    margin: 0;
}

.popey-character {
    text-align: center;
}

.character-container {
    background: var(--gradient-card);
    border: 1px solid var(--neutral-200);
    border-radius: 24px;
    padding: var(--space-8);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.character-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-lg);
}

.character-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-1);
}

.character-title {
    color: var(--neutral-500);
    font-weight: 500;
}

.character-stats {
    display: flex;
    justify-content: center;
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.circle-progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--primary-500) 0deg 342deg, var(--neutral-200) 342deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-progress::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
}

.circle-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.circle-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1;
}

.circle-label {
    font-size: 12px;
    color: var(--neutral-500);
    font-weight: 500;
}

/* === FOOTER MODERNE === */
.footer {
    background: var(--neutral-900);
    color: white;
}

/* Section principale du footer */
.footer-main {
    padding: var(--section-padding-lg) 0 var(--space-8);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.footer-brand .brand-text {
    color: white;
}

.footer-brand p {
    margin: var(--space-4) 0 var(--space-6);
    color: var(--neutral-400);
}

.social-links {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--neutral-800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition-fast);
    color: var(--neutral-400);
}

.social-link:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.link-group h4 {
    color: white;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.link-group a {
    display: block;
    color: var(--neutral-400);
    text-decoration: none;
    margin-bottom: var(--space-2);
    transition: var(--transition-fast);
}

.link-group a:hover {
    color: var(--primary-400);
}

/* Section légale séparée */
.footer-legal-section {
    background: var(--neutral-950);
    border-top: 1px solid var(--neutral-800);
    padding: var(--space-6) 0;
}

.footer-legal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-copyright {
    color: var(--neutral-500);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--neutral-500);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--neutral-300);
}

/* Section newsletter */
.newsletter-section {
    background: var(--neutral-800);
    border-top: 1px solid var(--neutral-700);
    padding: var(--space-8) 0;
}

.newsletter-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-8);
    align-items: center;
}

.newsletter-info h3 {
    color: white;
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.newsletter-info p {
    color: var(--neutral-400);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: var(--space-3);
}

.newsletter-form input {
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--neutral-600);
    border-radius: 8px;
    background: var(--neutral-700);
    color: white;
    min-width: 250px;
}

.newsletter-form input::placeholder {
    color: var(--neutral-400);
}

.btn-newsletter {
    padding: var(--space-3) var(--space-6);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-newsletter:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* === VIDEO CONTAINER STYLES === */
.video-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: var(--gradient-primary);
    padding: 4px;
}

.concept-video {
    width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 16px;
    display: block;
    background: black;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: var(--transition-normal);
    pointer-events: none;
    border-radius: 16px;
}

.video-container:hover .video-overlay {
    opacity: 0;
}

.concept-video:focus {
    outline: none;
}

.concept-video::-webkit-media-controls {
    border-radius: 16px;
}

.play-button-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
}

.play-button-overlay .play-icon {
    font-size: 32px;
    margin-left: 4px;
    color: var(--primary-600);
}

/* === SECTION VIDÉO TALENTS === */
.talents-video-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-16);
    padding: var(--space-8);
    background: linear-gradient(135deg, var(--primary-50) 0%, rgba(255,255,255,0.8) 100%);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.talents-video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--gradient-primary);
    padding: 3px;
}

.talents-video {
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 13px;
    display: block;
    background: black;
    object-fit: cover;
}

.video-overlay-talents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: var(--transition-normal);
    pointer-events: none;
    border-radius: 13px;
}

.talents-video-container:hover .video-overlay-talents {
    opacity: 0;
}

.play-button-talents {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
}

.play-button-talents .play-icon {
    font-size: 28px;
    margin-left: 3px;
    color: var(--primary-600);
}

.video-description {
    padding: var(--space-4);
}

.video-description h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-description p {
    color: var(--neutral-600);
    font-size: 16px;
    line-height: 1.6;
}

/* Styles pour la section impact avec image - taille modérée */
.impact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    max-width: 350px; /* Taille modérée pour ne pas déformer */
    width: 100%;
}

.mission-image-container:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.mission-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .hero-visual-container {
        height: auto;
        min-height: 450px;
        padding: var(--space-4);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .clients-image-wrapper {
        max-width: 400px;
        width: 85%;
        margin: 0 auto;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .footer-legal-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-6);
    }
    
    .newsletter-form {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .newsletter-form input {
        min-width: 200px;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .reveal-cards-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .hero-visual.show {
        height: auto;
        min-height: 200px;
        display: flex !important;
        flex-direction: column;
        gap: var(--space-4);
        padding: var(--space-4);
        position: relative;
        overflow: visible;
        margin-top: var(--space-6);
    }
    
    .hero-visual.show .floating-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 340px;
        margin: 0 auto var(--space-4);
        animation: none;
        transform: none !important;
    }
    
    .card-1 {
        top: 10px;
        left: 10px;
        width: 180px;
    }
    
    .card-2 {
        top: 60px;
        right: 10px;
        width: 160px;
    }
    
    .card-3 {
        top: 200px;
        left: 80px;
        width: 200px;
    }
    
    .card-4 {
        top: 140px;
        right: 120px;
        width: 140px;
    }
    
    .results-grid {
        display: flex;
        flex-direction: column;
        gap: var(--space-1);
    }
    
    .result-item {
        padding: var(--space-1);
        min-height: 30px;
    }
    
    .result-item:last-child {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }
    
    .result-number {
        font-size: 14px;
    }
    
    .result-label {
        font-size: 8px;
    }
    
    .card-5 {
        bottom: 20px;
        right: 20px;
        width: 150px;
    }
}

/* Styles pour le menu mobile actif */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--neutral-200);
    padding: var(--space-6);
    gap: var(--space-4);
    box-shadow: var(--shadow-lg);
}

/* Responsive pour la section comment ça marche */
@media (max-width: 1024px) {
    .how-it-works-content {
        flex-direction: column;
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {
    .interaction-flow {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
    
    .flow-step {
        min-width: auto;
        width: 100%;
    }
    
    .step-icon {
        font-size: 56px;
    }
    
    .step-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: var(--space-12);
    }
    
    .hero-title {
        margin-top: var(--space-6);
    }
    
    .hero-container {
        padding-top: var(--space-4);
    }
    
    .hero-visual-container {
        height: auto;
        min-height: 450px;
        padding: var(--space-6) var(--space-4);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .clients-image-section {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .clients-image-wrapper {
        position: relative;
        max-width: 350px;
        width: 90%;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        height: auto;
    }
    
    .clients-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
        max-height: 500px;
    }
    
    /* Corrections spécifiques pour mobile (garde le bon positionnement) */
    .reveal-cards-btn {
        position: absolute;
        bottom: 15px;
        right: 15px;
        left: auto;
        top: auto;
        transform: none;
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 25px;
        background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
        color: white;
        border: 2px solid white;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 15;
        min-width: 100px;
        backdrop-filter: blur(5px);
    }
    
    .reveal-cards-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.8);
        background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
        scale: 1.05;
    }
    
    .reveal-cards-btn:active {
        transform: translateY(0);
        scale: 0.98;
    }
    
    .clients-image-wrapper::before {
        width: 120px;
        height: 60px;
        border-radius: 0 0 20px 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-6);
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .talent-card {
        flex-direction: column;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        width: 100%;
        max-width: 300px;
    }
    
    .concept-title {
        font-size: 36px;
    }
    
    .concept-subtitle {
        font-size: 18px;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .concept-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        display: flex;
        flex-direction: column;
        gap: var(--space-1);
    }
    
    .result-item {
        padding: var(--space-1);
        min-height: 30px;
    }
    
    .result-item:last-child {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }
    
    .result-number {
        font-size: 14px;
    }
    
    .result-label {
        font-size: 8px;
    }
    
    /* Responsive pour maintenir l'équilibre */
    .impact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .mission-image-container {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .impact-text .section-title {
        text-align: center;
    }
    
    /* Responsive pour la vidéo */
    .video-container {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .concept-video {
        max-height: 250px;
    }
    
    .play-button-overlay {
        width: 60px;
        height: 60px;
    }
    
    .play-button-overlay .play-icon {
        font-size: 24px;
    }
    
    /* Responsive pour la section vidéo talents */
    .talents-video-section {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: center;
    }
    
    .talents-video {
        max-height: 250px;
    }
    
    .play-button-talents {
        width: 60px;
        height: 60px;
    }
    
    .play-button-talents .play-icon {
        font-size: 24px;
    }
    
    .video-description h3 {
        font-size: 24px;
    }
    
    .hero-visual {
        height: auto;
        min-height: 200px !important;
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        padding: var(--space-4);
        position: relative;
        overflow: visible;
        margin-bottom: var(--space-6) !important; /* Espacement vers la section suivante */
        padding-bottom: var(--space-6) !important;
    }
    
    .hero-visual::before,
    .hero-visual::after {
        display: none;
    }
    
    .floating-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 340px;
        margin: 0 auto var(--space-4); /* Augmentation de l'espacement */
        animation: none;
        transform: none !important;
    }
    
    .floating-card:last-child {
        margin-bottom: var(--space-8); /* Ajout d'un espacement à la fin */
    }
    
    /* Ordre de lecture logique sur mobile */
    .card-1 { order: 1; }
    .card-2 { order: 2; }
    .card-3 { order: 3; }
    .card-4 { order: 4; }
    
    .section-badge {
        font-size: 14px;
        padding: var(--space-2) var(--space-4);
        margin-bottom: var(--space-4);
    }
    
    .card-step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .concept-section {
        padding: 0 !important;
        margin-top: 0 !important;
    }
    
    .concept-header {
        margin-bottom: var(--space-8);
        padding-top: var(--space-4);
    }

}
    
    /* Responsive pour les vidéos */
    .talent-video {
        height: 160px;
    }
    
    .talent-avatar-overlay .talent-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Responsive pour la page talents */
    /* Responsive pour la page talents */
    .talents-page {
        padding: var(--space-16) 0;
    }
    
    .page-header {
        padding-top: var(--space-8);
        margin-bottom: var(--space-12);
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
        padding: 0 var(--space-4);
    }
    
    .talents-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        padding: 0 var(--space-4);
    }
    
    .talent-profile {
        padding: var(--space-6);
    }
    
    .talent-profile .talent-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .talent-profile h3 {
        font-size: 20px;
    }


/* Ajustements pour très petits écrans */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .nav-container {
        padding: 0 var(--space-4);
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        margin-top: var(--space-4);
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .hero-visual {
        min-height: 150px;
        padding: var(--space-1);
        padding-bottom: 0;
    }
    
    .hero-visual-container {
        min-height: 400px;
        padding: var(--space-4) var(--space-2);
    }
    
    .clients-image-wrapper {
        max-width: 320px;
        width: 95%;
        border-radius: 15px;
        height: auto;
    }
    
    .clients-image {
        max-height: 450px;
    }
    
    .reveal-cards-btn {
        bottom: 12px;
        right: 12px;
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 20px;
        min-width: 90px;
    }
    
    .clients-image-wrapper::before {
        width: 100px;
        height: 50px;
        border-radius: 0 0 15px 0;
    }
    
    .floating-card {
        max-width: 300px;
        padding: var(--space-4);
        margin: 0 auto var(--space-2);
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-content {
        font-size: 14px;
    }
    
    .card-number {
        font-size: 24px;
    }
    
    .results-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2);
    }
    
    .result-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 120px;
    }
    
    .section-header {
        margin-bottom: var(--space-12);
    }
    
    .mission-image-container {
        max-width: 240px;
    }
    
    .video-container {
        max-width: 95%;
    }
    
    .concept-video {
        max-height: 200px;
    }
    
    .section-badge {
        font-size: 14px;
        padding: var(--space-2) var(--space-4);
        margin-bottom: var(--space-4);
    }
    
    /* Responsive pour les numéros */
    .card-step-number {
        position: static;
        width: 28px;
        height: 28px;
        font-size: 14px;
        margin-bottom: var(--space-3);
        align-self: flex-start;
        background: var(--neutral-700);
    }
    
    .card-step-number::before {
        display: none;
    }
    
    .concept-section {
        padding: 0;
    }
    
    .concept-header {
        margin-bottom: var(--space-6);
        padding-top: var(--space-2);
    }
    
    .bio-card {
        padding: 25px 15px;
    }
    
    .bio-details li {
        font-size: 0.9rem;
        padding-left: 25px;
    }
    
    .bio-details p {
        padding: 15px;
        font-size: 0.95rem;
    }

}

/* Alternative pour très petits écrans : bouton en dehors */
@media (max-width: 400px) {
    .clients-image-section {
        position: relative;
    }
    
    .reveal-cards-btn {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 15px;
        transform: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        backdrop-filter: none;
    }
    
    .clients-image-wrapper::before {
        display: none;
    }
}

/* Gestion spéciale pour les écrans très courts en mode paysage */
@media (max-width: 768px) and (max-height: 500px) {
    .hero-visual-container {
        min-height: 350px;
    }
    
    .clients-image {
        max-height: 300px;
    }
    
    .reveal-cards-btn {
        bottom: 10px;
        right: 10px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* === ANIMATIONS AVANCÉES === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* === ÉTATS DE CHARGEMENT === */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--neutral-300);
    border-top-color: var(--primary-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === AMÉLIORATION DES Z-INDEX === */
.floating-card.card-1:hover { z-index: 15 !important; }
.floating-card.card-2:hover { z-index: 14 !important; }
.floating-card.card-3:hover { z-index: 13 !important; }
.floating-card.card-4:hover { z-index: 12 !important; }
.floating-card.card-5:hover { z-index: 11 !important; }

/* === PAGE MÉCÉNAT === */
.mecenat-hero {
    padding: 120px 0 var(--section-padding-md);
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--neutral-50) 100%);
    text-align: center;
}

.mecenat-hero h1 {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
}

.mecenat-hero .hero-subtitle {
    font-size: var(--text-xl);
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto var(--space-6);
}

/* === PROCESSUS MÉCÉNAT === */
.mecenat-process {
    padding: var(--section-padding-lg) 0;
    background: white;
}

.mecenat-process h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--neutral-600);
    margin-bottom: var(--space-12);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--neutral-100);
    transition: var(--transition-normal);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
}

.step-icon {
    font-size: 48px;
    margin: var(--space-4) 0;
}

.step-card h3 {
    font-size: var(--text-2xl);
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
}

.step-card p {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.support-options {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-4);
}

.support-option {
    background: var(--primary-50);
    padding: var(--space-3) var(--space-4);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--primary-200);
}

.support-option strong {
    display: block;
    color: var(--primary-700);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-1);
}

.support-option span {
    font-size: var(--text-sm);
    color: var(--primary-600);
}

.btn-step {
    display: inline-flex;
    align-items: center;
    padding: var(--space-3) var(--space-6);
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: var(--font-semibold);
    transition: var(--transition-normal);
}

.btn-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* === AVANTAGES MÉCÈNES === */
.mecenat-benefits {
    padding: var(--section-padding-lg) 0;
    background: var(--neutral-50);
}

.mecenat-benefits h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--neutral-900);
    margin-bottom: var(--space-12);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: var(--space-4);
}

.benefit-card h3 {
    font-size: var(--text-xl);
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
}

.benefit-card p {
    color: var(--neutral-600);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card li {
    padding: var(--space-2) 0;
    color: var(--neutral-700);
    border-bottom: 1px solid var(--neutral-200);
    position: relative;
    padding-left: var(--space-6);
}

.benefit-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-600);
    font-weight: var(--font-bold);
}

.benefit-card li:last-child {
    border-bottom: none;
}

/* === TÉMOIGNAGES MÉCÈNES === */
.mecenat-testimonials {
    padding: var(--section-padding-lg) 0;
    background: white;
}

.mecenat-testimonials h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--neutral-900);
    margin-bottom: var(--space-12);
}

/* === CONTACT MÉCÉNAT === */
.mecenat-contact {
    padding: var(--section-padding-lg) 0;
    background: var(--neutral-900) !important;
    color: white !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: white !important;
    margin-bottom: var(--space-4);
}

.contact-info p {
    font-size: var(--text-lg);
    color: var(--neutral-300) !important;
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.contact-icon {
    font-size: 24px;
    margin-top: var(--space-1);
}

.contact-item strong {
    display: block;
    color: white !important;
    margin-bottom: var(--space-1);
    font-weight: var(--font-semibold);
}

.contact-item span {
    color: var(--neutral-300) !important;
    line-height: 1.4;
}

/* Alternative avec couleurs plus contrastées */
.mecenat-contact .contact-info h2 {
    color: #ffffff !important;
}

.mecenat-contact .contact-info p {
    color: #e5e5e5 !important;
}

.mecenat-contact .contact-item strong {
    color: #ffffff !important;
}

.mecenat-contact .contact-item span {
    color: #cccccc !important;
}

/* === SECTION CONTACT MÉCÉNAT REDESIGN === */
.mecenat-contact-redesign {
    padding: var(--section-padding-lg) 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mecenat-contact-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.contact-header h2 {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    color: #ffffff;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: var(--text-xl);
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.contact-card-content h4 {
    color: #ffffff;
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.contact-card-content a {
    color: #94a3b8;
    text-decoration: none;
    font-size: var(--text-base);
    transition: color var(--transition-fast);
}

.contact-card-content a:hover {
    color: #ffffff;
}

.contact-card-content p {
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

/* === FORMULAIRE CONTACT === */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
}

.mecenat-form h3 {
    font-size: var(--text-2xl);
    color: var(--neutral-900);
    margin-bottom: var(--space-6);
    text-align: center;
    font-family: var(--font-display);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group label {
    display: block;
    font-weight: var(--font-semibold);
    color: var(--neutral-700);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid var(--neutral-200);
    border-radius: 8px;
    font-size: var(--text-base);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Numéros de déroulement pour les cartes flottantes - Version épurée */
.card-step-number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 32px;
    height: 32px;
    background: var(--neutral-800);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    border: 3px solid white;
    z-index: 10;
    font-family: var(--font-display);
    transition: var(--transition-normal);
}

.floating-card:hover .card-step-number {
    background: var(--primary-600);
    transform: scale(1.1);
}

/* Animation subtile au lieu du pulse */
.card-step-number::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: var(--neutral-800);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.floating-card:hover .card-step-number::before {
    opacity: 0.2;
    transform: scale(1.3);
}

/* Styles pour les boutons dans les cartes d'expérience */
.card-action {
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--neutral-200);
}

.btn-card-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
}

.btn-card-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
}

.btn-card-primary svg {
    transition: var(--transition-fast);
}

.btn-card-primary:hover svg {
    transform: translateX(2px);
}

/* Responsive pour les boutons de carte */
@media (max-width: 768px) {
    .btn-card-primary {
        width: 100%;
        justify-content: center;
        padding: var(--space-4) var(--space-6);
    }
}

/* Styles pour les vidéos de présentation des talents */
.talent-video-container {
    position: relative;
    margin-bottom: var(--space-6);
    border-radius: 16px;
    overflow: hidden;
    background: var(--neutral-100);
}

.talent-video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    transition: var(--transition-normal);
}

.talent-video:hover {
    transform: scale(1.02);
}

.talent-avatar-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
}

.talent-avatar-overlay .talent-avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border: 3px solid white;
    box-shadow: var(--shadow-lg);
}

/* === PAGE TALENTS === */
.talents-page {
    padding: var(--space-24) 0;
    background: var(--neutral-50);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: var(--space-16);
    padding-top: var(--space-16);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 18px;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.talents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

/* === NOUVEAU DESIGN TALENTS === */

/* Structure principale */
.talent-profile {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    border: 1px solid var(--neutral-200);
}

.talent-profile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.talent-info {
    padding: var(--space-6);
}

.talent-profile h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-2) 0;
}

.talent-specialty {
    color: var(--primary-600);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 var(--space-3) 0;
}

.talent-description {
    color: var(--neutral-600);
    line-height: 1.6;
    margin: 0 0 var(--space-6) 0;
    font-size: 15px;
}

/* Cagnotte Popey - Design uniforme */
.talent-earnings {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 16px;
    padding: var(--space-4);
    margin: 0 0 var(--space-4) 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.talent-earnings::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.earnings-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.earnings-icon {
    font-size: 20px;
}

.earnings-title {
    font-weight: 600;
    font-size: 16px;
}

.earnings-amount {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 var(--space-1) 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.earnings-description {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Avis clients - Design uniforme */
.talent-reviews {
    background: var(--neutral-50);
    border: 2px solid var(--neutral-100);
    border-radius: 16px;
    padding: var(--space-4);
    margin: 0 0 var(--space-4) 0;
    transition: all var(--transition-fast);
}

.talent-reviews:hover {
    border-color: var(--primary-200);
    background: var(--primary-50);
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.reviews-icon {
    font-size: 20px;
}

.reviews-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--neutral-800);
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.rating-score {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-600);
    min-width: 50px;
}

.rating-details {
    flex: 1;
}

.rating-stars {
    font-size: 16px;
    margin-bottom: var(--space-1);
}

.reviews-count {
    font-size: 13px;
    color: var(--neutral-500);
    font-weight: 500;
}

/* Projet d'investissement */
.talent-investment {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border-radius: 16px;
    padding: var(--space-4);
    margin: 0 0 var(--space-4) 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.talent-investment::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(20px, -20px);
}

.investment-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.investment-icon {
    font-size: 20px;
}

.investment-title {
    font-weight: 600;
    font-size: 16px;
}

.investment-project h5 {
    margin: 0 0 var(--space-3) 0;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.investment-progress {
    margin: var(--space-3) 0;
    position: relative;
    z-index: 1;
}

.investment-bar {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: var(--space-2);
}

.investment-fill {
    background: linear-gradient(90deg, #10B981 0%, #34D399 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.investment-amounts {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
}

.current-amount {
    color: #34D399;
}

.target-amount {
    opacity: 0.8;
}

.btn-invest {
    background: rgba(255, 255, 255, 0.9);
    color: #1D4ED8;
    border: none;
    padding: var(--space-2) var(--space-4);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
    margin-top: var(--space-3);
    position: relative;
    z-index: 1;
}

.btn-invest:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Projets actuels */
.talent-projects {
    margin: var(--space-4) 0;
}

.talent-projects h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0 0 var(--space-3) 0;
}

.talent-projects ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.talent-projects li {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: 10px;
    padding: var(--space-2) var(--space-3);
    margin-bottom: var(--space-2);
    font-size: 14px;
    color: var(--neutral-700);
    transition: all var(--transition-fast);
}

.talent-projects li:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    transform: translateX(4px);
}

.talent-projects li:last-child {
    margin-bottom: 0;
}

/* Bouton contact */
.talent-contact {
    margin-top: var(--space-6);
}

.btn-contact {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--space-3) var(--space-6);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
    box-shadow: 0 4px 12px rgba(242, 117, 10, 0.3);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 117, 10, 0.4);
}

/* === TALENT CARD EXPANDED STYLES === */
.talent-card.expanded {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: var(--space-8);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
}

.talent-card.expanded:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.talent-details {
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--neutral-200);
}

.talent-details h5 {
    color: var(--primary-600);
    font-weight: 600;
    margin-bottom: var(--space-3);
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin: var(--space-4) 0;
}

.feature-list li {
    padding: var(--space-2) 0;
    color: var(--neutral-700);
    font-size: 14px;
}

.success-story {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-blue)/10 100%);
    padding: var(--space-4);
    border-radius: 12px;
    margin: var(--space-4) 0;
    border-left: 4px solid var(--primary-500);
}

.story-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
    color: var(--primary-600);
    font-size: 14px;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin: var(--space-4) 0;
    padding: var(--space-4);
    background: var(--neutral-50);
    border-radius: 12px;
}

.network-stats .stat-item {
    text-align: center;
}

.network-stats .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-600);
}

.network-stats .stat-label {
    font-size: 12px;
    color: var(--neutral-500);
}

.revenue-breakdown {
    background: var(--neutral-50);
    padding: var(--space-4);
    border-radius: 12px;
    margin: var(--space-4) 0;
}

.revenue-breakdown h6 {
    color: var(--neutral-700);
    margin-bottom: var(--space-3);
    font-size: 14px;
}

.revenue-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--neutral-200);
}

.revenue-item:last-child {
    border-bottom: none;
}

.revenue-type {
    color: var(--neutral-600);
    font-size: 14px;
}

.revenue-amount {
    color: var(--primary-600);
    font-weight: 600;
    font-size: 14px;
}

.client-demographics {
    background: var(--neutral-50);
    padding: var(--space-4);
    border-radius: 12px;
    margin: var(--space-4) 0;
}

.client-demographics h6 {
    color: var(--neutral-700);
    margin-bottom: var(--space-3);
    font-size: 14px;
}

.demo-grid {
    display: grid;
    gap: var(--space-3);
}

.demo-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2);
    background: white;
    border-radius: 8px;
    border: 1px solid var(--neutral-200);
}

.demo-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 8px;
}

.demo-info {
    display: flex;
    flex-direction: column;
}

.demo-info strong {
    color: var(--neutral-800);
    font-size: 14px;
    margin-bottom: var(--space-1);
}

.demo-info span {
    color: var(--neutral-500);
    font-size: 12px;
}

.conversion-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin: var(--space-4) 0;
    padding: var(--space-4);
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-green)/10 100%);
    border-radius: 12px;
}

.conversion-item {
    text-align: center;
}

.conversion-rate {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--space-1);
}

.conversion-label {
    font-size: 12px;
    color: var(--neutral-600);
    line-height: 1.3;
}

/* === SECTIONS TALENT === */
/* Section À Propos de Vanessa - Design amélioré */
.talent-bio {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.talent-bio::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.talent-bio::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 159, 67, 0.1), rgba(99, 110, 250, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.talent-bio .container {
    position: relative;
    z-index: 2;
}

.talent-bio h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    position: relative;
}

.talent-bio h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.bio-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bio-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
}

.bio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.bio-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-display);
}

.bio-info h3::before {
    content: '👩‍🎨';
    font-size: 1.5rem;
}

.bio-title {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 25px;
    display: inline-block;
    border-left: 4px solid #4ecdc4;
}

.bio-details {
    margin-top: 30px;
}

.bio-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    margin: 25px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.bio-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bio-details li {
    padding: 12px 0;
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.bio-details li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1rem;
    color: #4ecdc4;
}

.bio-details li:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

.bio-details li:last-child {
    border-bottom: none;
}

.bio-details p {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.bio-details p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.bio-details p::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

/* === TÉMOIGNAGES === */
.testimonials {
    padding: var(--section-padding-md) 0;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--neutral-50) 100%);
}

.testimonials h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--neutral-900);
    margin-bottom: var(--space-12);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-200);
    font-family: var(--font-display);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content p {
    font-style: italic;
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    font-size: var(--text-lg);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.testimonial-author strong {
    color: var(--neutral-900);
    font-weight: var(--font-semibold);
}

.testimonial-author span {
    color: var(--neutral-500);
    font-size: var(--text-sm);
}

/* === CITATIONS INSPIRANTES === */
.inspirational-quotes {
    padding: var(--section-padding-md) 0;
    background: var(--neutral-900);
    color: white;
}

.inspirational-quotes h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: white;
    margin-bottom: var(--space-12);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.quote-card {
    text-align: center;
    padding: var(--space-8);
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.quote-text {
    position: relative;
    z-index: 2;
}

.quote-text p {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: var(--space-4);
    color: white;
}

.quote-author {
    font-weight: var(--font-semibold);
    color: var(--primary-100);
    position: relative;
    z-index: 2;
}

/* === NOUVELLES SECTIONS TALENTS === */



/* Styles pour les images dans les cartes talents - Version agrandie */
.talent-card.expanded {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-6);
    align-items: start;
}

.talent-image-container {
    width: 280px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.talent-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.talent-image-container:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.talent-image:hover {
    transform: scale(1.1);
}

/* Responsive pour les images talents agrandies */
@media (max-width: 1200px) {
    .talent-image-container {
        width: 240px;
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .talent-card.expanded {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .talent-image-container {
        width: 100%;
        max-width: 400px;
        height: 220px;
        margin: 0 auto;
        order: -1;
    }
}

@media (max-width: 768px) {
    .talent-image-container {
        height: 200px;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .talent-image-container {
        height: 180px;
        max-width: 100%;
    }
}

/* Bouton En savoir + */
.btn-learn-more {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-learn-more:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Responsive */
/* === RESPONSIVE === */
@media (max-width: 768px) {
    .testimonials-grid,
    .quotes-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .talent-bio {
        padding: 60px 0;
    }
    
    .talent-bio h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .bio-card {
        padding: 30px 20px;
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .bio-info h3 {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .bio-title {
        font-size: 1rem;
        text-align: center;
        display: block;
        margin: 0 auto 25px auto;
    }
    
    .bio-details h4 {
        font-size: 1.1rem;
    }
    
    .bio-details p {
        padding: 20px;
        font-size: 1rem;
    }
    
    .bio-details p::before,
    .bio-details p::after {
        font-size: 2rem;
    }
    
    .quote-text p {
        font-size: var(--text-lg);
    }
    
    .talent-info {
        padding: var(--space-4);
    }
    
    .talent-earnings,
    .talent-reviews,
    .talent-investment {
        margin: var(--space-3) 0;
        padding: var(--space-3);
    }
    
    .earnings-amount {
        font-size: 28px;
    }
    
    .rating-score {
        font-size: 24px;
    }
    
    .investment-project h5 {
        font-size: 16px;
    }
}

/* === AMÉLIORATIONS PAGES DE PROJETS === */

/* Amélioration de la section hero des projets */
.project-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.project-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.project-info h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.project-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 500;
}

.project-progress {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.progress-bar {
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    height: 25px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.progress-fill {
    background: linear-gradient(90deg, #4CAF50, #8BC34A, #CDDC39);
    height: 100%;
    border-radius: 15px;
    transition: width 0.8s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.1rem;
}

.progress-text .current {
    color: #4CAF50;
    font-size: 1.3rem;
    font-weight: 700;
}

.project-video {
    position: relative;
}

.project-video video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.project-video:hover video {
    transform: scale(1.02);
}

/* Amélioration de la section description */
.project-description {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.project-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.1) 0%, transparent 100%);
}

.project-description h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--neutral-900);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.project-description h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
}

.description-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #4ecdc4);
    border-radius: 25px 25px 0 0;
}

.description-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--neutral-700);
    margin-bottom: 30px;
}

.description-content h3 {
    color: var(--neutral-900);
    margin: 40px 0 20px;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.description-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-content li {
    padding: 15px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--neutral-700);
    position: relative;
    padding-left: 40px;
    transition: all 0.3s ease;
}

.description-content li::before {
    content: attr(data-emoji);
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 1.2rem;
}

.description-content li:hover {
    color: var(--primary-600);
    transform: translateX(5px);
}

/* Amélioration des paliers d'investissement */
.investment-tiers {
    padding: 100px 0;
    background: white;
    position: relative;
}

.investment-tiers h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--neutral-900);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.investment-tiers h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tier-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tier-card:hover::before {
    transform: scaleX(1);
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.tier-card.popular {
    border-color: #667eea;
    transform: scale(1.05);
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.tier-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.tier-card.premium {
    border-color: #764ba2;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.tier-card.exclusive {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%);
}

.tier-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.tier-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-card h3 {
    text-align: center;
    color: var(--neutral-600);
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 500;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.tier-benefits li {
    padding: 12px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-700);
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.tier-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
}

.tier-benefits li:hover {
    color: var(--primary-600);
    transform: translateX(5px);
}

.btn-invest {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-invest::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-invest:hover::before {
    left: 100%;
}

.btn-invest:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.risk-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.risk-info h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--neutral-900);
    font-weight: 700;
}

.risk-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.risk-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-500);
}

.risk-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.risk-section h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--neutral-800);
    font-weight: 600;
}

.risk-section ul {
    list-style: none;
    padding: 0;
}

.risk-section li {
    padding: 10px 0;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.risk-section li::before {
    content: '•';
    color: var(--primary-500);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.disclaimer p {
    margin: 0;
    color: #856404;
    line-height: 1.6;
}

/* Responsive amélioré pour les pages de projets */
@media (max-width: 768px) {
    .project-hero {
        padding: 100px 0 60px;
    }
    
    .project-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .project-info h1 {
        font-size: 2.2rem;
    }
    
    .project-subtitle {
        font-size: 1.1rem;
    }
    
    .description-content {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 15px 0;
    }
    
    .tier-card.popular {
        transform: none;
    }
    
    .tier-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .risk-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .risk-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .project-info h1 {
        font-size: 1.8rem;
    }
    
    .tier-amount {
        font-size: 2.8rem;
    }
    
    .description-content {
        padding: 25px 20px;
    }
    
    .tier-card {
        padding: 30px 20px;
    }
}
    



/* === BOUTON SOUMISSION MÉCÉNAT === */
.btn-submit-mecenat {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: var(--transition-normal);
    margin-top: var(--space-4);
}

.btn-submit-mecenat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

/* === MEDIA QUERIES MÉCÉNAT === */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .mecenat-hero {
        padding: 80px 0 var(--section-padding-sm);
    }
    
    .mecenat-hero h1 {
        font-size: var(--text-4xl);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .contact-form {
        padding: var(--space-6);
    }
    
    .support-options {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .step-card {
        padding: var(--space-6);
    }
}

@media (max-width: 480px) {
    .mecenat-hero h1 {
        font-size: var(--text-3xl);
    }
    
    .mecenat-hero .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .step-card {
        padding: var(--space-4);
    }
    
    .contact-form {
        padding: var(--space-4);
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: var(--text-base);
    }
}

/* Amélioration des sections d'investissement dans talents.html */
.talent-investment {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 25px;
    margin: 20px 0;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.talent-investment:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.investment-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.investment-icon {
    font-size: 24px;
    margin-right: 12px;
}

.investment-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.investment-project {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.investment-project h5 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.investment-progress {
    margin-bottom: 20px;
}

.investment-bar {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.investment-fill {
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.investment-amounts {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.current-amount {
    color: #8BC34A;
    font-weight: 700;
}

.target-amount {
    opacity: 0.9;
}

.btn-learn-more {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #667eea;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-learn-more:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    color: #5a67d8;
}

.btn-learn-more:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.talent-investment {
    animation: fadeInUp 0.6s ease-out;
}

/* Styles pour les sections d'investissement des talents */
.investment-section {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.investment-section h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 600;
}

.project-header h5 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1em;
    font-weight: 600;
}

.project-description {
    color: #6c757d;
    font-size: 0.9em;
    margin-bottom: 15px;
    line-height: 1.4;
}

.funding-progress {
    margin-bottom: 15px;
}

.funding-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    transition: width 0.3s ease;
}

.progress-percentage {
    font-size: 0.8em;
    color: #6c757d;
    text-align: center;
}



/* Amélioration des icônes sociales */
.social-link svg {
    transition: var(--transition-fast);
}

.social-link:hover svg {
    transform: scale(1.1);
}



/* Modal Mentions Légales */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6) var(--space-8);
    border-bottom: 1px solid var(--neutral-200);
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: var(--text-2xl);
    font-weight: 600;
}

.close-modal {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.close-modal:hover {
    opacity: 1;
    transform: scale(1.1);
}

.modal-body {
    padding: var(--space-8);
    line-height: 1.6;
}

.legal-section {
    margin-bottom: var(--space-8);
}

.legal-section h3 {
    color: var(--primary-600);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    border-bottom: 2px solid var(--primary-100);
    padding-bottom: var(--space-2);
}

.legal-section p {
    color: var(--neutral-700);
    margin-bottom: var(--space-3);
}

.legal-section a {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

/* Styles pour les listes dans les modals légales */
.legal-section ul {
    margin: var(--space-3) 0;
    padding-left: var(--space-6);
}

.legal-section li {
    color: var(--neutral-700);
    margin-bottom: var(--space-2);
    line-height: 1.6;
}

.legal-section li::marker {
    color: var(--primary-600);
}

/* Styles spécifiques pour les modals légales */
.legal-intro {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    padding: var(--space-4);
    border-radius: 8px;
    margin-bottom: var(--space-6);
    border-left: 4px solid var(--primary-600);
}

.legal-intro p {
    margin: 0;
    color: var(--primary-800);
    font-weight: 500;
    line-height: 1.6;
}

.contact-info {
    background: var(--neutral-50);
    padding: var(--space-3);
    border-radius: 6px;
    border: 1px solid var(--neutral-200);
    margin-top: var(--space-3);
    text-align: center;
}

.contact-info a {
    font-weight: 600;
    font-size: 16px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: var(--space-4) var(--space-6);
    }
    
    .modal-body {
        padding: var(--space-6);
    }
}

/* === STYLES FORCÉS CONTACT MÉCÉNAT === */
#contact-mecenat {
    background: #171717 !important;
    color: #ffffff !important;
}

#contact-mecenat h2 {
    color: #ffffff !important;
}

#contact-mecenat p {
    color: #e5e5e5 !important;
}

#contact-mecenat .contact-item strong {
    color: #ffffff !important;
}

#contact-mecenat .contact-item span {
    color: #cccccc !important;
}

/* === PAGE CONTACT === */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: white;
    margin: var(--space-6) 0 var(--space-4);
    font-family: var(--font-display);
}

.contact-hero-subtitle {
    font-size: var(--text-xl);
    color: var(--neutral-300);
    line-height: 1.6;
    margin: 0;
}

.contact-main {
    padding: var(--section-padding-lg) 0;
    background: var(--neutral-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
    font-family: var(--font-display);
}

.contact-info > p {
    font-size: var(--text-lg);
    color: var(--neutral-600);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    gap: var(--space-6);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-6);
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    margin: 0 0 var(--space-2);
}

.contact-card-content p {
    font-size: var(--text-base);
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.5;
}

.contact-card-content a {
    color: var(--primary-600);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-card-content a:hover {
    color: var(--primary-700);
}

.contact-form-container {
    background: white;
    padding: var(--space-8);
    border-radius: 20px;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-form-header h2 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
    font-family: var(--font-display);
}

.contact-form-header p {
    font-size: var(--text-base);
    color: var(--neutral-600);
    margin-bottom: var(--space-8);
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--neutral-700);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--neutral-200);
    border-radius: 12px;
    font-size: var(--text-base);
    transition: var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: var(--space-3);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--neutral-600);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.contact-map {
    padding: var(--section-padding-lg) 0;
    background: white;
}

.map-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-12);
}

.map-header h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
    font-family: var(--font-display);
}

.map-header p {
    font-size: var(--text-lg);
    color: var(--neutral-600);
    line-height: 1.6;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-title {
        font-size: var(--text-4xl);
    }
    
    .contact-form-container {
        padding: var(--space-6);
    }
}

/* === RESPONSIVE CONTACT REDESIGN === */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .contact-cards {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: var(--text-4xl);
    }
    
    .contact-description {
        font-size: var(--text-lg);
    }
    
    .contact-card {
        padding: var(--space-4);
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
