/*
==================================================
    IMPACT FÉMININ - STYLES SPÉCIFIQUES
==================================================
Palette de couleurs:
- Principal: #814cb0
- Boutons: #ab42b3
==================================================
*/

:root {
    --impact-primary: #814cb0;
    --impact-button: #ab42b3;
    --impact-white: #ffffff;
    --impact-light: #f8f9fa;
    --impact-dark: #2c3e50;
    --impact-gradient: linear-gradient(to right, #E640A2, #6A2BBF);
}

/* ===== SECTION 1 - HERO SECTION ===== */
.impact-hero {
    background: var(--impact-gradient);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    display: flex; /* Flexbox pour centrage parfait */
    align-items: center; /* Centrage vertical */
    justify-content: center; /* Centrage horizontal */
}

.impact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(129, 76, 176, 0.1);
    z-index: 1;
}

.impact-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    margin: 0 auto; /* Centrage parfait */
    width: 100%; /* Assurer la largeur complète */
    padding: 0; /* Supprimer tout padding qui pourrait décaler */
}

/* Section contenu */
.impact-content-section {
    background: #f8f9fa;
    padding: 60px 0 40px 0; /* Plus d'espace en haut (60px) pour égaler l'espacement du bas */
    position: relative;
    overflow: hidden;
}

/* Réduction de l'espacement entre colonnes pour correspondre à la référence */
.impact-content-section .row {
    --bs-gutter-x: 0; /* Suppression complète des gutters Bootstrap */
    margin: 0;
}

.impact-content-section .col-lg-6,
.impact-content-section .col-md-6 {
    padding-left: 0;
    padding-right: 0;
}

.impact-content-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -200px; /* Sort du côté droit */
    width: 500px;
    height: 500px;
    background: transparent; /* Pas de remplissage */
    border: 50px solid rgba(149, 155, 165, 0.20); /* Opacité réduite pour plus de discrétion */
    border-radius: 50%;
    z-index: 1;
}

.impact-content-section::after {
    display: none; /* On supprime l'ancienne décoration */
}

.impact-image-container {
    position: relative;
    z-index: 2;
    padding-left: 15px; /* Alignement avec le logo ACD */
    padding-right: 0; /* Suppression du padding droit pour coller au texte */
}

.impact-main-image {
    width: 100%;
    max-width: 450px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(129, 76, 176, 0.2);
    border: 4px solid var(--impact-primary);
}

.impact-text-content {
    position: relative;
    z-index: 2;
    padding-left: 0; /* Suppression complète de l'espacement */
    margin-left: -20px; /* Chevauchement léger pour coller au design */
}

.impact-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--impact-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.impact-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.impact-candidate-btn {
    background: #B75FBE;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(171, 66, 179, 0.3);
}

.impact-candidate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(171, 66, 179, 0.4);
    color: white;
    text-decoration: none;
    filter: brightness(95%);
}

/* ===== SECTION 2 - APPEL À CANDIDATURE ===== */
.impact-cta-section {
    background: var(--impact-gradient);
    padding: 80px 0;
    text-align: center;
}

.impact-cta-text {
    color: white;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
}

.impact-cta-btn {
    background: #B75FBE;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
        text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.impact-cta-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
    filter: brightness(95%);
        display: flex;
        align-items: center;
        justify-content: center;
    color: white;
}

/* ===== SECTION 2 - POURQUOI IMPACT FÉMININ ===== */
.impact-why-section {
    background: var(--impact-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.impact-why-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -200px; /* Sort du côté gauche */
    width: 500px;
    height: 500px;
    background: transparent; /* Pas de remplissage */
    border: 50px solid rgba(255, 255, 255, 0.15); /* Bordure blanche pour contraste sur fond violet */
    border-radius: 50%;
    z-index: 1;
}

.impact-why-section::after {
    display: none; /* On supprime l'ancienne décoration */

    background: rgba(129, 76, 176, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.impact-why-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.impact-why-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ===== SECTION 3 - PRIX D'IMPACT FÉMININ ===== */
.impact-awards-section {
    background: white;
    padding: 100px 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

.impact-awards-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -200px; /* Décoration à droite pour varier */
    width: 500px;
    height: 500px;
    background: transparent;
    border: 50px solid rgba(149, 155, 165, 0.15);
    border-radius: 50%;
    z-index: 1;
}

.impact-awards-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--impact-primary);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.impact-awards-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.impact-award-card {
    background: rgba(129, 76, 176, 0.05);
    border: 1px solid rgba(129, 76, 176, 0.1);
    border-radius: 40px;
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(129, 76, 176, 0.1);
}

.impact-award-card:hover {
    transform: translateY(-10px);
    background: rgba(129, 76, 176, 0.08);
    box-shadow: 0 20px 40px rgba(129, 76, 176, 0.15);
}

.award-header {
    padding: 25px 20px 20px 20px;
    text-align: center;
    border-bottom: none;
}

.award-title {
    background: white;
    color: var(--impact-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding: 15px 25px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.award-content {
    padding: 20px 25px 30px 25px;
}

.award-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: center;
}

.award-section {
    margin-bottom: 20px;
    text-align: left;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--impact-primary);
    margin-bottom: 12px;
}

.conditions-list,
.criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conditions-list li,
.criteria-list li {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.4;
}

.impact-awards-btn {
    background: #B75FBE;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 40px;
}

.impact-awards-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    filter: brightness(95%);
    color: white;
}

/* Animations */
.impact-fade-in {
    animation: impactFadeIn 1s ease-out;
}

.impact-slide-up {
    animation: impactSlideUp 1s ease-out 0.3s both;
}

.impact-slide-right {
    animation: impactSlideRight 1s ease-out 0.6s both;
}

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

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

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

/* ==========================
   SYSTÈME LOGOS ENTREPRISES MODERNES
========================== */

.impact-partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.companies-logos-grid {
    margin-top: 50px;
}

.company-logo-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(183, 95, 190, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.company-logo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(183, 95, 190, 0.15);
    border-color: rgba(183, 95, 190, 0.3);
}

.logo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%) opacity(0.9);
    transition: all 0.3s ease;
}

.company-logo-card:hover .company-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.logo-overlay {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #B75FBE, #8B4A94);
    color: white;
    padding: 8px 12px;
    text-align: center;
    transform: translateY(0);
    transition: all 0.3s ease;
    opacity: 0;
    border-radius: 0 0 15px 15px;
}

.company-logo-card:hover .logo-overlay {
    bottom: 0;
    opacity: 1;
}

.company-name {
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* États d'affichage des logos */
.hidden-company {
    display: none !important;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Bouton moderne pour plus de logos */
.btn-modern-outline {
    background: transparent;
    border: 2px solid #B75FBE;
    color: #B75FBE;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.btn-modern-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B75FBE, #8B4A94);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-modern-outline:hover {
    color: white;
    border-color: #B75FBE;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(183, 95, 190, 0.3);
}

.btn-modern-outline:hover::before {
    left: 0;
}

/* Responsive adaptations */
@media (max-width: 1199px) {
    .speaker-card {
        border-radius: 30px;
        background: linear-gradient(135deg, #f8f9fa 60%, #e6d6f3 100%);
        box-shadow: 0 8px 32px rgba(129,76,176,0.10);
        padding: 18px 10px 12px 10px;
        border: none;
        min-height: 240px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
                padding: 18px;
    }

    }
    
    .company-logo-img {
        max-height: 65px;
    }
    
    .company-name {
        font-size: 0.7rem;
    }


@media (max-width: 767px) {
    .impact-partners-section {
        padding: 60px 0;
    }
    
    .company-logo-card {
        height: 120px;
        padding: 15px;
        border-radius: 15px;
    }
    
    .company-logo-img {
        max-height: 60px;
    }
    
    .btn-modern-outline {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .company-logo-card {
        height: 100px;
        padding: 12px;
    }
    
    .company-logo-img {
        max-height: 50px;
    }
    
    .company-name {
        font-size: 0.65rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .impact-main-title {
        font-size: 2.5rem;
        margin: 0 auto; /* Centrage parfait sur tablette */
        padding: 0; /* Pas de padding qui décale */
    }
    
    .impact-content-section {
        padding: 45px 0 30px 0; /* Espacement asymétrique sur tablette - plus en haut */
    }
    
    .impact-content-section::before {
        width: 300px; /* Plus petit sur tablette */
        height: 300px;
        right: -150px;
        top: 30%;
        border-width: 12px; /* Contour encore plus épais sur tablette */
        border-color: rgba(149, 155, 165, 0.15); /* Opacité réduite sur tablette aussi */
    }
    
    .impact-text-content {
        padding-left: 0; /* Suppression complète sur tablette */
        margin-left: 0; /* Pas de chevauchement sur tablette */
        text-align: center;
        margin-top: 40px;
    }
    
    .impact-section-title {
        font-size: 1.8rem;
    }
    
    .impact-description {
        font-size: 1rem;
    }
    
    .impact-candidate-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .impact-main-image {
        max-width: 100%;
    }
    
    .impact-image-container {
        padding-left: 15px; /* Maintenir l'alignement avec le logo sur tablette */
    }
    
    .impact-cta-section {
        padding: 60px 0;
    }
    
    .impact-cta-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .impact-cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .impact-why-section {
        padding: 80px 0;
    }
    
    .impact-why-title {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .impact-why-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    /* Responsive pour tous les demi-cercles ajoutés */
    .impact-why-section::before,
    .impact-themes-section::before,
    .impact-programme-section::before,
    .impact-programme-section::after,
    .impact-partners-section::before,
    .impact-partners-section::after {
        width: 350px !important;
        height: 350px !important;
        border-width: 35px !important;
    }
    
    .impact-why-section::before,
    .impact-programme-section::before,
    .impact-partners-section::before {
        left: -175px !important;
    }
    
    .impact-themes-section::before,
    .impact-programme-section::after,
    .impact-partners-section::after {
        right: -175px !important;
    }
    
    .impact-awards-section {
        padding: 80px 0;
    }
    
    .impact-awards-title {
        font-size: 2.2rem;
        padding: 0 20px;
    }
    
    .impact-awards-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .impact-award-card {
        margin-bottom: 30px;
    }
    
    .award-content {
        padding: 20px 15px;
    }
    
    .impact-awards-btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .impact-main-title {
        font-size: 2rem;
        padding: 0 20px; /* Padding latéral seulement sur mobile */
        margin: 0 auto; /* Centrage parfait sur mobile */
        text-align: center; /* Assurer le centrage */
    }
    
    .impact-content-section::before {
        width: 200px; /* Encore plus petit sur mobile */
        height: 200px;
        right: -100px;
        top: 40%;
        border-width: 10px; /* Contour encore plus épais sur mobile */
        border-color: rgba(149, 155, 165, 0.15); /* Opacité réduite sur mobile aussi */
    }
    
    .impact-section-title {
        font-size: 1.5rem;
    }
    
    .impact-text-content {
        padding-left: 0;
    }
    
    .impact-image-container {
        padding-left: 0; /* Centrer l'image sur mobile */
        text-align: center;
    }
    
    .impact-cta-text {
        font-size: 1rem;
    }
    
    .impact-why-title {
        font-size: 1.8rem;
    }
    
    /* Responsive mobile pour tous les demi-cercles */
    .impact-why-section::before,
    .impact-themes-section::before,
    .impact-programme-section::before,
    .impact-programme-section::after,
    .impact-partners-section::before,
    .impact-partners-section::after {
        width: 250px !important;
        height: 250px !important;
        border-width: 25px !important;
    }
    
    .impact-why-section::before,
    .impact-programme-section::before,
    .impact-partners-section::before {
        left: -125px !important;
    }
    
    .impact-themes-section::before,
    .impact-programme-section::after,
    .impact-partners-section::after {
        right: -125px !important;
    }
    
    .impact-why-description {
        font-size: 1rem;
    }
    
    .impact-why-description br {
        display: none;
    }
    
    .impact-awards-title {
        font-size: 1.8rem;
    }
    
    .impact-awards-subtitle {
        font-size: 0.95rem;
    }
    
    .award-title {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .award-description {
        font-size: 0.9rem;
    }
    
    .conditions-list li,
    .criteria-list li {
        font-size: 0.85rem;
    }
}

/* Décoration géométrique */
.impact-decoration {
    position: absolute;
    z-index: 1;
}

.impact-decoration-1 {
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.impact-decoration-2 {
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===== SECTION 4.5 - NOMINEES IMPACT FÉMININ ===== */
.impact-nominees-section {
    background: var(--impact-gradient);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.impact-nominees-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: transparent;
    border: 50px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 1;
}

.nominees-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.nominees-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.nominee-card {
    background: transparent;
    border: none;
    padding: 0;
    height: 100%;
    transition: all 0.4s ease;
    text-align: center;
    min-height: 280px;
    position: relative;
    z-index: 2;
}

.nominee-card:hover {
    transform: translateY(-10px);
}

.nominee-image-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px auto;
    position: relative;
    border: 3px solid var(--impact-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(129, 76, 176, 0.2);
}

.nominee-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.nominee-card:hover .nominee-image {
    transform: scale(1.05);
}

.nominee-info {
    padding: 0;
    text-align: center;
    background: transparent;
}

.nominee-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--impact-primary);
    margin-bottom: 5px;
    line-height: 1.2;
}

.nominee-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 3px;
    line-height: 1.3;
}

.nominee-company {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.3;
}

.nominee-role {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
    line-height: 1.3;
    font-style: italic;
}

/* Responsive pour les nominees */
@media (max-width: 768px) {
    .impact-nominees-section {
        padding: 80px 0;
    }
    
    .nominees-main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .nominees-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .nominee-card {
        min-height: 240px;
        margin-bottom: 20px;
    }
    
    .nominee-image-container {
        width: 100px;
        height: 100px;
        border-width: 2px;
        margin-bottom: 12px;
    }
    
    .nominee-name {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .nominee-title {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }
    
    .nominee-company {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }
    
    .nominee-role {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .nominees-main-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .nominees-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .nominee-card {
        min-height: 200px;
    }
    
    .nominee-image-container {
        width: 80px;
        height: 80px;
        border-width: 2px;
        margin-bottom: 10px;
    }
    
    .nominee-name {
        font-size: 0.8rem;
    }
    
    .nominee-title {
        font-size: 0.7rem;
    }
    
    .nominee-company {
        font-size: 0.7rem;
    }
    
    .nominee-role {
        font-size: 0.65rem;
    }
}

/* ===== SECTION 5 - THÉMATIQUES ABORDÉES ===== */
.impact-themes-section {
    background: linear-gradient(135deg, rgba(129, 76, 176, 0.08) 0%, rgba(171, 66, 179, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.impact-themes-section::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -200px; /* Sort du côté droit */
    width: 500px;
    height: 500px;
    background: transparent; /* Pas de remplissage */
    border: 50px solid rgba(149, 155, 165, 0.20); /* Opacité réduite comme la première section */
    border-radius: 50%;
    z-index: 1;
}

.themes-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--impact-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.theme-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(129, 76, 176, 0.15);
    transition: all 0.4s ease;
    height: 600px;
    border: 3px solid var(--impact-primary);
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(129, 76, 176, 0.25);
}

.theme-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.theme-card:hover .theme-image {
    transform: scale(1.05);
}

.theme-overlay {
    position: absolute;
    bottom: 2px;
    left: 15px;
    right: 15px;
    padding: 20px;
    border-radius: 0 0 37px 37px;
}

.theme-content {
    text-align: center;
}

.theme-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--impact-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.theme-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.impact-reserve-btn {
    background: #B75FBE;
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(129, 76, 176, 0.3);
}

.impact-reserve-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(129, 76, 176, 0.4);
    color: white;
    text-decoration: none;
    filter: brightness(95%);
}

/* Responsive pour les thématiques */
@media (max-width: 768px) {
    .themes-main-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .theme-card {
        height: 450px;
        border-width: 2px;
    }
    
    .theme-overlay {
        bottom: 5px;
        left: 10px;
        right: 10px;
        padding: 20px;
        border-radius: 0 0 35px 35px;
    }
    
    .theme-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .theme-description {
        font-size: 0.9rem;
    }
    
    .impact-reserve-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* ===== SECTION 6 - APPEL À LA CANDIDATURE ===== */
.impact-candidature-section {
    background: var(--impact-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.candidature-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.candidature-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.candidature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 0;
    height: 100%;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    overflow: hidden;
    min-height: 320px;
}

.candidature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.candidature-header {
    padding: 30px 25px 20px 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.candidature-card-title {
    background: white;
    color: var(--impact-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    padding: 15px 25px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.candidature-content {
    padding: 25px;
    text-align: center;
}

.candidature-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.4;
}

.candidature-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.impact-candidature-btn {
    background: #B75FBE;
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    border: none;
}

.impact-candidature-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    text-decoration: none;
    filter: brightness(95%);
    color: white;
}

/* Responsive pour la section candidature */
@media (max-width: 768px) {
    .impact-candidature-section {
        padding: 80px 0;
    }
    
    .candidature-main-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .candidature-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 20px;
    }
    
    .candidature-card {
        min-height: 280px;
        margin-bottom: 25px;
    }
    
    .candidature-header {
        padding: 25px 20px 15px 20px;
    }
    
    .candidature-card-title {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
    
    .candidature-content {
        padding: 20px;
    }
    
    .candidature-question {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .candidature-description {
        font-size: 0.95rem;
    }
    
    .impact-candidature-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .candidature-main-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .candidature-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .candidature-card {
        min-height: 260px;
    }
    
    .candidature-card-title {
        font-size: 1rem;
        padding: 10px 18px;
    }
    
    .candidature-question {
        font-size: 0.95rem;
    }
    
    .candidature-description {
        font-size: 0.9rem;
    }
    
    .impact-candidature-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ===== SECTION 7 - PROGRAMME OFFICIEL ===== */
.impact-programme-section {
    background: linear-gradient(135deg, rgba(129, 76, 176, 0.08) 0%, rgba(171, 66, 179, 0.03) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.impact-programme-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -200px; /* Sort du côté gauche */
    width: 500px;
    height: 500px;
    background: transparent; /* Pas de remplissage */
    border: 50px solid rgba(149, 155, 165, 0.20); /* Opacité réduite comme la première section */
    border-radius: 50%;
    z-index: 1;
}

.impact-programme-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -200px; /* Sort du côté droit */
    width: 500px;
    height: 500px;
    background: transparent; /* Pas de remplissage */
    border: 50px solid rgba(149, 155, 165, 0.20); /* Opacité réduite comme la première section */
    border-radius: 50%;
    z-index: 1;
}

.programme-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--impact-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: 1px;
}

.programme-card {
    background: transparent;
    border-radius: 25px;
    padding: 0;
    height: 100%;
    box-shadow: none;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 2px solid var(--impact-primary);
    min-height: 200px;
}

.programme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(129, 76, 176, 0.3);
    border-color: var(--impact-primary);
}

.programme-header {
    padding: 25px;
    text-align: left;
    position: relative;
}

.programme-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--impact-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.programme-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: bold;
}

.programme-time {
    background: transparent;
    color: var(--impact-primary);
    padding: 0;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
}

.programme-details {
    padding: 0 25px 25px 25px;
    border-top: 1px solid rgba(129, 76, 176, 0.1);
    margin-top: 15px;
    text-align: left;
}

.programme-details p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 15px 0 0 0;
}

/* Effet spécial pour les cartes avec détails */
.programme-card:has(.programme-details) {
    min-height: 280px;
}

.programme-card:has(.programme-details) .programme-header {
    background: linear-gradient(135deg, rgba(129, 76, 176, 0.05) 0%, rgba(171, 66, 179, 0.02) 100%);
}

/* Responsive pour la section programme */
@media (max-width: 768px) {
    .impact-programme-section {
        padding: 80px 0;
    }
    
    .programme-main-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .programme-card {
        margin-bottom: 25px;
        min-height: 180px;
    }
    
    .programme-card:has(.programme-details) {
        min-height: 250px;
    }
    
    .programme-header {
        padding: 20px;
    }
    
    .programme-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .programme-subtitle {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .programme-time {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
    
    .programme-details {
        padding: 0 20px 20px 20px;
    }
    
    .programme-details p {
        font-size: 0.85rem;
        margin-top: 12px;
    }
}

@media (max-width: 576px) {
    .programme-main-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .programme-card {
        min-height: 160px;
    }
    
    .programme-card:has(.programme-details) {
        min-height: 220px;
    }
    
    .programme-header {
        padding: 18px;
    }
    
    .programme-title {
        font-size: 1.1rem;
    }
    
    .programme-subtitle {
        font-size: 0.9rem;
    }
    
    .programme-time {
        padding: 5px 14px;
        font-size: 0.85rem;
    }
    
    .programme-details {
        padding: 0 18px 18px 18px;
    }
    
    .programme-details p {
        font-size: 0.8rem;
    }
}

.impact-programme-btn {
    background: #B75FBE;
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(129, 76, 176, 0.3);
}

.impact-programme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(129, 76, 176, 0.4);
    color: white;
    text-decoration: none;
    filter: brightness(95%);
}

/* ===== SECTION 8 - INTERVENANTS & PANÉLISTES - VERSION AMÉLIORÉE ===== */
.impact-speakers-section {
    background: var(--impact-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.impact-speakers-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: transparent;
    border: 50px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.impact-speakers-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -200px;
    width: 400px;
    height: 400px;
    background: transparent;
    border: 40px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.speakers-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Cartes intervenants améliorées */
.speaker-card {
    background: white;
    border-radius: 30px;
    padding: 0;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    min-height: 420px;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.speaker-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--impact-primary), #B75FBE, var(--impact-primary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.speaker-card:hover::before {
    opacity: 1;
}

/* Container image avec overlay */
.speaker-image-container {
    height: 260px;
    overflow: hidden;
    position: relative;
    border-radius: 30px 30px 0 0;
}

.speaker-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.speaker-card:hover .speaker-image-container::after {
    opacity: 1;
}

.speaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(10%) brightness(1.05);
}

.speaker-card:hover .speaker-image {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1.1);
}

/* Informations des intervenants */
.speaker-info {
    padding: 28px 25px 25px 25px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    position: relative;
}

.speaker-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--impact-gradient);
    border-radius: 2px;
    opacity: 0;
    transition: all 0.4s ease;
}

.speaker-card:hover .speaker-info::before {
    opacity: 1;
    width: 80px;
}

.speaker-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--impact-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.speaker-card:hover .speaker-name {
    color: #B75FBE;
}

.speaker-title {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.speaker-card:hover .speaker-title {
    color: var(--impact-primary);
}

.speaker-company {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    line-height: 1.4;
    font-style: normal;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.speaker-card:hover .speaker-company {
    opacity: 1;
    color: #666;
}

/* Badge pour les rôles */
.speaker-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: var(--impact-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 4px rgba(129, 76, 176, 0.2);
}

.speaker-card:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Animation staggerée pour l'apparition */
.speaker-card {
    opacity: 0;
    transform: translateY(30px);
    animation: speakerFadeIn 0.8s ease forwards;
}

.speaker-card:nth-child(1) { animation-delay: 0.1s; }
.speaker-card:nth-child(2) { animation-delay: 0.2s; }
.speaker-card:nth-child(3) { animation-delay: 0.3s; }
.speaker-card:nth-child(4) { animation-delay: 0.4s; }
.speaker-card:nth-child(5) { animation-delay: 0.5s; }
.speaker-card:nth-child(6) { animation-delay: 0.6s; }
.speaker-card:nth-child(7) { animation-delay: 0.7s; }
.speaker-card:nth-child(8) { animation-delay: 0.8s; }

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

.impact-speakers-btn {
    background: #B75FBE;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.impact-speakers-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    filter: brightness(95%);
    color: white;
}

/* ===== RESPONSIVE DESIGN - INTERVENANTS & PANÉLISTES ===== */

/* Large screens (1200px et plus) */
@media (min-width: 1200px) {
    .speaker-card {
        min-height: 450px;
    }
    
    .speaker-image-container {
        height: 280px;
    }
}

/* Medium screens (992px - 1199px) */
@media (max-width: 1199px) {
    .speakers-main-title {
        font-size: 2.5rem;
        margin-bottom: 3.5rem;
    }
    
    .speaker-card {
        min-height: 400px;
        border-radius: 25px;
    }
    
    .speaker-image-container {
        height: 240px;
        border-radius: 25px 25px 0 0;
    }
    
    .speaker-info {
        padding: 22px 20px 20px 20px;
    }
    
    .speaker-name {
        font-size: 1.15rem;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .impact-speakers-section {
        padding: 80px 0;
    }
    
    .impact-speakers-section::before {
        width: 400px;
        height: 400px;
        left: -200px;
        border-width: 40px;
    }
    
    .impact-speakers-section::after {
        width: 300px;
        height: 300px;
        right: -150px;
        border-width: 30px;
    }
    
    .speakers-main-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .speaker-card {
        min-height: 380px;
        margin-bottom: 30px;
        border-radius: 22px;
    }
    
    .speaker-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .speaker-image-container {
        height: 220px;
        border-radius: 22px 22px 0 0;
        position: relative;
        overflow: hidden;
    }
    
    /* Adaptation images sur tablette */
    .speaker-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        transition: all 0.4s ease;
        filter: grayscale(5%) brightness(1.02);
        background: #f8f9fa;
    }
    
    .speaker-card:hover .speaker-image {
        transform: scale(1.06);
        filter: grayscale(0%) brightness(1.08);
    }
    
    .speaker-info {
        padding: 20px 18px 18px 18px;
    }
    
    .speaker-name {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .speaker-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .speaker-company {
        font-size: 0.85rem;
    }
    
    .impact-speakers-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* Mobile (576px - 767px) - REPRODUCTION EXACTE DU DESKTOP */
@media (max-width: 767px) {
    .impact-speakers-section {
        padding: 60px 0;
    }
    
    .impact-speakers-section::before {
        width: 300px;
        height: 300px;
        left: -150px;
        border-width: 25px;
    }
    
    .impact-speakers-section::after {
        width: 250px;
        height: 250px;
        right: -125px;
        border-width: 20px;
    }
    
    .speakers-main-title {
        font-size: 1.9rem;
        margin-bottom: 2.5rem;
        padding: 0 20px;
    }
    
    /* CARTES MOBILES - REPRODUCTION DESKTOP */
    .speaker-card {
        background: white;
        border-radius: 20px;
        padding: 0;
        height: 100%;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow: hidden;
        min-height: 350px;
        position: relative;
        z-index: 2;
        border: 2px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 25px;
    }
    
    .speaker-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .speaker-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--impact-primary), #B75FBE, var(--impact-primary));
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .speaker-card:hover::before {
        opacity: 1;
    }
    
    /* CONTAINER IMAGES MOBILE */
    .speaker-image-container {
        height: 200px;
        overflow: hidden;
        position: relative;
        border-radius: 20px 20px 0 0;
        background: #f8f9fa;
    }
    
    .speaker-image-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .speaker-card:hover .speaker-image-container::after {
        opacity: 1;
    }
    
    /* IMAGES MOBILES - ADAPTATION PARFAITE */
    .speaker-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transition: all 0.4s ease;
        filter: grayscale(5%) brightness(1.02);
        display: block;
        border: none;
        outline: none;
        vertical-align: top;
    }
    
    .speaker-card:hover .speaker-image {
        transform: scale(1.05);
        filter: grayscale(0%) brightness(1.08);
    }
    
    /* INFORMATIONS MOBILES */
    .speaker-info {
        padding: 20px 15px 18px 15px;
        text-align: center;
        background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
        position: relative;
    }
    
    .speaker-info::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 45px;
        height: 2px;
        background: var(--impact-gradient);
        border-radius: 2px;
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .speaker-card:hover .speaker-info::before {
        opacity: 1;
        width: 60px;
    }
    
    .speaker-name {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--impact-primary);
        margin-bottom: 6px;
        line-height: 1.3;
        transition: color 0.3s ease;
    }
    
    .speaker-card:hover .speaker-name {
        color: #B75FBE;
    }
    
    .speaker-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: #555;
        margin-bottom: 6px;
        line-height: 1.4;
        transition: color 0.3s ease;
    }
    
    .speaker-card:hover .speaker-title {
        color: var(--impact-primary);
    }
    
    .speaker-company {
        font-size: 0.82rem;
        color: #777;
        margin: 0;
        line-height: 1.4;
        font-style: normal;
        opacity: 0.9;
        transition: all 0.3s ease;
    }
    
    .speaker-card:hover .speaker-company {
        opacity: 1;
        color: #666;
    }
    
    /* Badge mobile */
    .speaker-card::after {
        content: '';
        position: absolute;
        top: 15px;
        right: 15px;
        width: 10px;
        height: 10px;
        background: var(--impact-primary);
        border-radius: 50%;
        opacity: 0;
        transition: all 0.4s ease;
        box-shadow: 0 0 0 3px rgba(129, 76, 176, 0.2);
    }
    
    .speaker-card:hover::after {
        opacity: 1;
        transform: scale(1.1);
    }
    
    .impact-speakers-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
        border-radius: 40px;
    }
}

/* Small mobile (max 575px) - REPRODUCTION EXACTE DU DESKTOP */
@media (max-width: 575px) {
    .impact-speakers-section {
        padding: 50px 0;
    }
    
    .impact-speakers-section::before {
        width: 200px;
        height: 200px;
        left: -100px;
        border-width: 15px;
    }
    
    .impact-speakers-section::after {
        width: 180px;
        height: 180px;
        right: -90px;
        border-width: 12px;
    }
    
    .speakers-main-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    /* CARTES PETIT MOBILE - REPRODUCTION DESKTOP */
    .speaker-card {
        background: white;
        border-radius: 18px;
        padding: 0;
        height: 100%;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow: hidden;
        min-height: 320px;
        position: relative;
        z-index: 2;
        border: 2px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
    }
    
    .speaker-card:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .speaker-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--impact-primary), #B75FBE, var(--impact-primary));
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .speaker-card:hover::before {
        opacity: 1;
    }
    
    /* CONTAINER IMAGES PETIT MOBILE */
    .speaker-image-container {
        height: 180px;
        overflow: hidden;
        position: relative;
        border-radius: 18px 18px 0 0;
        background: #f8f9fa;
    }
    
    .speaker-image-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 30px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .speaker-card:hover .speaker-image-container::after {
        opacity: 1;
    }
    
    /* IMAGES PETIT MOBILE - ADAPTATION PARFAITE */
    .speaker-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transition: all 0.4s ease;
        filter: grayscale(5%) brightness(1.02);
        display: block;
        border: none;
        outline: none;
        vertical-align: top;
    }
    
    .speaker-card:hover .speaker-image {
        transform: scale(1.03);
        filter: grayscale(0%) brightness(1.05);
    }
    
    /* INFORMATIONS PETIT MOBILE */
    .speaker-info {
        padding: 15px 12px 12px 12px;
        text-align: center;
        background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
        position: relative;
    }
    
    .speaker-info::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 35px;
        height: 2px;
        background: var(--impact-gradient);
        border-radius: 2px;
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .speaker-card:hover .speaker-info::before {
        opacity: 1;
        width: 50px;
    }
    
    .speaker-name {
        font-size: 1rem;
        font-weight: 700;
        color: var(--impact-primary);
        margin-bottom: 4px;
        line-height: 1.2;
        transition: color 0.3s ease;
    }
    
    .speaker-card:hover .speaker-name {
        color: #B75FBE;
    }
    
    .speaker-title {
        font-size: 0.85rem;
        font-weight: 600;
        color: #555;
        margin-bottom: 4px;
        line-height: 1.3;
        transition: color 0.3s ease;
    }
    
    .speaker-card:hover .speaker-title {
        color: var(--impact-primary);
    }
    
    .speaker-company {
        font-size: 0.78rem;
        color: #777;
        margin: 0;
        line-height: 1.25;
        font-style: normal;
        opacity: 0.9;
        transition: all 0.3s ease;
    }
    
    .speaker-card:hover .speaker-company {
        opacity: 1;
        color: #666;
    }
    
    .impact-speakers-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* Animation d'apparition simplifiée sur mobile */
    .speaker-card {
        animation-duration: 0.6s;
    }
}

/* Responsive pour les intervenants */
@media (max-width: 768px) {
    .impact-speakers-section {
        padding: 80px 0;
    }
    
    .speakers-main-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .speaker-card {
        min-height: 350px;
        margin-bottom: 25px;
    }
    
    .speaker-image-container {
        height: 220px;
    }
    
    .speaker-info {
        padding: 20px;
    }
    
    .speaker-name {
        font-size: 1.2rem;
    }
    
    .speaker-title {
        font-size: 0.95rem;
    }
    
    .speaker-company {
        font-size: 0.85rem;
    }
    
    .impact-speakers-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .speakers-main-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .speaker-card {
        min-height: 320px;
    }
    
    .speaker-info {
        padding: 15px;
    }
    
    .speaker-name {
        font-size: 1.1rem;
    }
    
    .speaker-title {
        font-size: 0.9rem;
    }
    
    .speaker-company {
        font-size: 0.8rem;
    }

    /* Correction affichage photo paneliste sur mobile */
    .speaker-image {
        object-fit: contain;
        background: #f8f9fa;
    }
}

/* ===== SECTION 8 - ENTREPRISES NOMINEES ===== */
.impact-partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.impact-partners-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -200px; /* Sort du côté gauche */
    width: 500px;
    height: 500px;
    background: transparent; /* Pas de remplissage */
    border: 50px solid rgba(149, 155, 165, 0.20); /* Bordure grise pour fond blanc */
    border-radius: 50%;
    z-index: 1;
}

.impact-partners-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -200px; /* Sort du côté droit */
    width: 500px;
    height: 500px;
    background: transparent; /* Pas de remplissage */
    border: 50px solid rgba(149, 155, 165, 0.20); /* Bordure grise pour fond blanc */
    border-radius: 50%;
    z-index: 1;
}

.partners-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--impact-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.partner-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.partner-logo:hover .partner-image {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive pour les entreprises nominees */
@media (max-width: 768px) {
    .impact-partners-section {
        padding: 80px 0;
    }
    
    .partners-main-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .partner-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .partners-main-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .partner-image {
        width: 80px;
        height: 80px;
    }
}

/* ==========================
   AJUSTEMENTS POUR CONTRASTE SUR FONDS COLORÉS
========================== */

/* Boutons secondaires sur fonds violets */
.impact-why-section .btn-modern-secondary,
.impact-nominees-section .btn-modern-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    backdrop-filter: blur(10px);
}

.impact-why-section .btn-modern-secondary:hover,
.impact-nominees-section .btn-modern-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Messages de succès sur fonds violets */
.impact-why-section #allShownText,
.impact-nominees-section #allShownText,
.impact-why-section #allCompaniesShown,
.impact-nominees-section #allCompaniesShown {
    color: rgba(255, 255, 255, 0.8) !important;
}

.impact-why-section .text-success,
.impact-nominees-section .text-success {
    color: #90EE90 !important; /* Vert clair pour visibilité sur violet */
}

/* Boutons "Voir plus" sur fonds violets */
.impact-why-section .btn-outline-primary,
.impact-nominees-section .btn-outline-primary,
.impact-why-section .btn-modern-outline,
.impact-nominees-section .btn-modern-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.impact-why-section .btn-outline-primary:hover,
.impact-nominees-section .btn-outline-primary:hover,
.impact-why-section .btn-modern-outline:hover,
.impact-nominees-section .btn-modern-outline:hover {
    background: white;
    border-color: white;
    color: var(--impact-primary);
}

/* Textes des nominees - couleurs adaptées au fond violet */
.impact-nominees-section .nominee-name {
    color: white;
    font-weight: 700;
}

.impact-nominees-section .nominee-title {
    color: rgba(255, 255, 255, 0.9);
}

.impact-nominees-section .nominee-company {
    color: rgba(255, 255, 255, 0.9);
}

.impact-nominees-section .nominee-role {
    color: rgba(255, 255, 255, 0.8);
}

/* Boutons spécifiques des nominees sur fond violet */
.impact-nominees-section #showMoreBtn {
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
}

/* HOTFIX: Force logo visibility on mobile to prevent animation bugs */
@media (max-width: 767px) {
  .impact-partners-section .company-logo-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== SECTION PRIVILÈGES - AMÉLIORATION DES CARTES ===== */
.impact-privileges-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.impact-privileges-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: transparent;
    border: 50px solid rgba(149, 155, 165, 0.15);
    border-radius: 50%;
    z-index: 1;
}

.impact-privileges-section .impact-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--impact-primary);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Cartes privilèges améliorées */
.impact-privileges-section .impact-award-card {
    background: white;
    border: none;
    border-radius: 25px;
    padding: 0;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(129, 76, 176, 0.08);
    position: relative;
    min-height: 300px;
    border-left: 4px solid transparent;
}

.impact-privileges-section .impact-award-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(129, 76, 176, 0.2);
    border-left: 4px solid var(--impact-primary);
}

.impact-privileges-section .impact-award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--impact-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-privileges-section .impact-award-card:hover::before {
    opacity: 1;
}

/* En-têtes des cartes privilèges */
.impact-privileges-section .award-header {
    padding: 30px 25px 20px 25px;
    text-align: left;
    border-bottom: 1px solid rgba(129, 76, 176, 0.1);
    background: linear-gradient(135deg, rgba(129, 76, 176, 0.03) 0%, rgba(255, 255, 255, 0.8) 100%);
    position: relative;
}

.impact-privileges-section .award-title {
    background: transparent;
    color: var(--impact-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    border-radius: 0;
    display: block;
    box-shadow: none;
    line-height: 1.4;
}

/* Icônes Font Awesome des privilèges */
.impact-privileges-section .award-title i {
    color: var(--impact-primary);
    margin-right: 12px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(129, 76, 176, 0.2);
}

.impact-privileges-section .impact-award-card:hover .award-title i {
    color: #B75FBE;
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(129, 76, 176, 0.3);
}

/* Contenu des cartes privilèges */
.impact-privileges-section .award-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.impact-privileges-section .award-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.impact-privileges-section .criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-privileges-section .criteria-list li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.impact-privileges-section .criteria-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--impact-primary);
    font-size: 0.8em;
}

/* Animation au survol pour les privilèges */
.impact-privileges-section .impact-award-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(129, 76, 176, 0.05), transparent);
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.6s ease;
}

.impact-privileges-section .impact-award-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive pour les privilèges */
@media (max-width: 1199px) {
    .impact-privileges-section .impact-award-card {
        min-height: 280px;
    }
    
    .impact-privileges-section .award-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .impact-privileges-section {
        padding: 80px 0;
    }
    
    .impact-privileges-section::before {
        width: 350px;
        height: 350px;
        right: -175px;
        border-width: 35px;
    }
    
    .impact-privileges-section .impact-section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .impact-privileges-section .impact-award-card {
        min-height: 260px;
        margin-bottom: 25px;
    }
    
    .impact-privileges-section .award-header {
        padding: 25px 20px 15px 20px;
    }
    
    .impact-privileges-section .award-title {
        font-size: 1.05rem;
    }
    
    .impact-privileges-section .award-content {
        padding: 20px;
    }
    
    .impact-privileges-section .award-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .impact-privileges-section .criteria-list li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .impact-privileges-section::before {
        width: 250px;
        height: 250px;
        right: -125px;
        border-width: 25px;
    }
    
    .impact-privileges-section .impact-section-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .impact-privileges-section .impact-award-card {
        min-height: 240px;
    }
    
    .impact-privileges-section .award-header {
        padding: 20px 18px 12px 18px;
    }
    
    .impact-privileges-section .award-title {
        font-size: 1rem;
    }
    
    .impact-privileges-section .award-content {
        padding: 18px;
    }
    
    .impact-privileges-section .award-description {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .impact-privileges-section .criteria-list li {
        font-size: 0.8rem;
        padding-left: 18px;
    }
}