/* Reset et base */
* {
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #fdf8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 0px;
}

/* Modern Corporate Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 12px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6366f1;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #6366f1;
}

.btn-contact {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background: #6366f1;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
}

.btn-contact:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #6366f1;
}

/* Section 1: Hero avec dégradé */
.fond-metagora {
    /* Couleur de fond de sécurité */
    background-color: #f0f2f5;
    
    /* Dégradé organique avec auréoles et vagues */
    background: 
        /* Fondu vers le haut et le bas pour finir en blanc */
        linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0.3) 85%, #ffffff 100%),
        linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0.3) 85%, #ffffff 100%),
        
        /* Auréoles circulaires dispersées */
        radial-gradient(circle at 20% 30%, #cee5fb 0%, rgba(206, 229, 251, 0.7) 25%, transparent 50%),
        radial-gradient(circle at 80% 25%, #f5dee3 0%, rgba(245, 222, 227, 0.6) 30%, transparent 60%),
        radial-gradient(circle at 15% 70%, #f5dee3 0%, rgba(245, 222, 227, 0.8) 20%, transparent 45%),
        radial-gradient(circle at 85% 75%, #cee5fb 0%, rgba(206, 229, 251, 0.6) 35%, transparent 65%),
        radial-gradient(circle at 50% 50%, #cee5fb 0%, rgba(206, 229, 251, 0.5) 40%, transparent 70%),
        
        /* Vagues ondulantes */
        radial-gradient(ellipse 120% 40% at 30% 40%, rgba(206, 229, 251, 0.7) 0%, transparent 50%),
        radial-gradient(ellipse 100% 30% at 70% 60%, rgba(245, 222, 227, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 80% 25% at 10% 80%, rgba(206, 229, 251, 0.6) 0%, transparent 50%),
        
        /* Base douce */
        linear-gradient(135deg, rgba(206, 229, 251, 0.3) 0%, rgba(245, 222, 227, 0.3) 100%);
    
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}



.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #007aff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #424245;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-description-2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #6e6e73;
    line-height: 1.6;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    -webkit-mask: linear-gradient(to bottom, black 80%, transparent 100%);
    mask: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Images dans la section hero */
.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}



/* Section 2: Partenaires */
.partners-section {
    background-color: #ffffff;
    padding: 50px 30px 50px;
}

.partners-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
    color: #1d1d1f;
    margin-bottom: 0px;
    line-height: 1.3;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background: #ffffff;
    padding: 50px 0;
}

.marquee {
    display: flex;
    animation: scroll 25s linear infinite;
    width: fit-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
    flex-shrink: 0;
}

.partner-logo {
    height: 75px;
    width: auto;
    opacity: 1;
    transition: transform 0.3s ease;
    filter: grayscale(0%);
}

.partner-logo:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Section 3: Training */

/* Section vidéo avec image responsive et bouton de lecture */
.video-section {
    background-color: #ffffff;
    padding: 100px 100px;
    padding-bottom: 50px;
    position: relative;
}

.video-container {
     position: relative;
     width: 100%;
     max-width: none;
     margin: 0;
     border-radius: 0;
     overflow: visible;
     box-shadow: none;
     cursor: pointer;
     transition: transform 0.3s ease;
     background: transparent;
 }

.video-container:hover {
     /* Suppression de l'animation de scale */
 }

/* Conteneur de la miniature */
.video-thumbnail-container {
    position: relative;
    width: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Conteneur du lecteur vidéo */
.video-player-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
     width: 100%;
     height: auto;
     display: block;
     transition: filter 0.3s ease;
     object-fit: cover;
     background: transparent;
     filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
 }

.video-container:hover .video-thumbnail {
    filter: brightness(0.9) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    /* Suppression du mouvement vertical */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #007aff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(245, 222, 227, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Responsive pour la section vidéo */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-container {
        margin: 0 0px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button::before {
        border-left: 15px solid #007aff;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        margin-left: 3px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 40px 0;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button::before {
        border-left: 12px solid #007aff;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        margin-left: 2px;
    }
 }

/* Section 5: Features */
.features-section {
    /* Couleur de fond de sécurité */
    background-color: #f0f2f5;
    
    /* Dégradé organique avec auréoles et vagues */
    background: 
        /* Fondu vers le haut et le bas pour finir en blanc */
        linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0.3) 85%, #ffffff 100%),
        linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0.3) 85%, #ffffff 100%),
        
        /* Auréoles circulaires dispersées */
        radial-gradient(circle at 20% 30%, #cee5fb 0%, rgba(206, 229, 251, 0.7) 25%, transparent 50%),
        radial-gradient(circle at 80% 25%, #f5dee3 0%, rgba(245, 222, 227, 0.6) 30%, transparent 60%),
        radial-gradient(circle at 15% 70%, #f5dee3 0%, rgba(245, 222, 227, 0.8) 20%, transparent 45%),
        radial-gradient(circle at 85% 75%, #cee5fb 0%, rgba(206, 229, 251, 0.6) 35%, transparent 65%),
        radial-gradient(circle at 50% 50%, #cee5fb 0%, rgba(206, 229, 251, 0.5) 40%, transparent 70%),
        
        /* Vagues ondulantes */
        radial-gradient(ellipse 120% 40% at 30% 40%, rgba(206, 229, 251, 0.7) 0%, transparent 50%),
        radial-gradient(ellipse 100% 30% at 70% 60%, rgba(245, 222, 227, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 80% 25% at 10% 80%, rgba(206, 229, 251, 0.6) 0%, transparent 50%),
        
        /* Base douce */
        linear-gradient(135deg, rgba(206, 229, 251, 0.3) 0%, rgba(245, 222, 227, 0.3) 100%);
    
    padding: 20px 0;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.features-pretitle {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-description {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #e9ecef;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    display: block;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-text {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive pour la section features */
@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
    }
    
    .features-header {
        margin-bottom: 60px;
    }
    
    .features-title {
        font-size: 2.2rem;
    }
    
    .features-description {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 0px 0;
    }
    
    .features-title {
        font-size: 1.8rem;
    }
    
    .features-description {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
}

 /* Section 6: Learning Layout */
.learning-section {
    background-color: #ffffff;
    padding: 20px 0;
}

.learning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.learning-image {
    position: relative;
}

.learning-img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
    mix-blend-mode: multiply;
    mask: linear-gradient(to bottom, black 90%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, black 90%, transparent 100%);
}

.learning-text {
    padding-left: 40px;
}

.learning-pretitle {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.learning-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.learning-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 32px;
}

.learning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.learning-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #495057;
    line-height: 1.5;
}

.learning-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #007aff;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Section 7: Statistics */
.stats-section {
    /* Couleur de fond de sécurité */
    background-color: #6B46C1;
    
    /* Dégradé organique avec auréoles et vagues - couleurs violettes */
    background: 
        /* Auréoles circulaires dispersées - tons violets */
        radial-gradient(circle at 20% 30%, rgba(164, 20, 100, 0.8) 0%, rgba(164, 20, 100, 0.5) 25%, transparent 50%),
        radial-gradient(circle at 80% 25%, rgba(43, 37, 123, 0.7) 0%, rgba(43, 37, 123, 0.4) 30%, transparent 60%),
        radial-gradient(circle at 15% 70%, rgba(164, 20, 100, 0.6) 0%, rgba(164, 20, 100, 0.3) 20%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(43, 37, 123, 0.8) 0%, rgba(43, 37, 123, 0.5) 35%, transparent 65%),
        radial-gradient(circle at 50% 50%, rgba(107, 70, 193, 0.6) 0%, rgba(107, 70, 193, 0.3) 40%, transparent 70%),
        
        /* Vagues ondulantes - tons violets */
        radial-gradient(ellipse 120% 40% at 30% 40%, rgba(164, 20, 100, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 100% 30% at 70% 60%, rgba(43, 37, 123, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 80% 25% at 10% 80%, rgba(107, 70, 193, 0.5) 0%, transparent 50%),
        
        /* Base principale - dégradé violet */
        linear-gradient(135deg, #A41464 0%, #2B257B 100%);
    
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 2s ease-out;
}

.stat-text {
    font-size: 1.1rem;
    line-height: 1.4;
    opacity: 0.9;
}

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

/* Responsive pour les sections 6 et 7 */
@media (max-width: 768px) {
    .learning-section {
        padding: 80px 0;
    }
    
    .learning-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .learning-text {
        padding-left: 0;
    }
    
    .learning-title {
        font-size: 2.2rem;
    }
    
    .stats-section {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .learning-section {
        padding: 0px 0;
    }
    
    .learning-title {
        font-size: 1.8rem;
    }
    
    .learning-description {
        font-size: 1rem;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
}

  .training-section {
     /* Couleur de fond de sécurité */
     background-color: #f0f2f5;
     
     /* Dégradé organique avec auréoles et vagues */
     background: 
         /* Fondu vers le haut et le bas pour finir en blanc */
         linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0.3) 85%, #ffffff 100%),
         linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0.3) 85%, #ffffff 100%),
         
         /* Auréoles circulaires dispersées */
         radial-gradient(circle at 20% 30%, #cee5fb 0%, rgba(206, 229, 251, 0.7) 25%, transparent 50%),
         radial-gradient(circle at 80% 25%, #f5dee3 0%, rgba(245, 222, 227, 0.6) 30%, transparent 60%),
         radial-gradient(circle at 15% 70%, #f5dee3 0%, rgba(245, 222, 227, 0.8) 20%, transparent 45%),
         radial-gradient(circle at 85% 75%, #cee5fb 0%, rgba(206, 229, 251, 0.6) 35%, transparent 65%),
         radial-gradient(circle at 50% 50%, #cee5fb 0%, rgba(206, 229, 251, 0.5) 40%, transparent 70%),
         
         /* Vagues ondulantes */
         radial-gradient(ellipse 120% 40% at 30% 40%, rgba(206, 229, 251, 0.7) 0%, transparent 50%),
         radial-gradient(ellipse 100% 30% at 70% 60%, rgba(245, 222, 227, 0.6) 0%, transparent 50%),
         radial-gradient(ellipse 80% 25% at 10% 80%, rgba(206, 229, 251, 0.6) 0%, transparent 50%),
         
         /* Base douce */
         linear-gradient(135deg, rgba(206, 229, 251, 0.3) 0%, rgba(245, 222, 227, 0.3) 100%);
     
     padding: 50px 0;
}

.training-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.training-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.training-row-reverse {
    grid-template-columns: 1fr 1fr;
}

.training-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #1d1d1f;
    line-height: 1.2;
}

.training-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #424245;
    margin-bottom: 25px;
    line-height: 1.7;
}



.training-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    background: transparent;
    mix-blend-mode: normal;
    margin: 0 auto;
    display: block;
}

.training-image:hover {
    transform: scale(1.02);
}

.rocket-icon {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.rocket-icon:hover {
    transform: scale(1.02) rotate(5deg);
}

.rocket-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    background: transparent;
    mix-blend-mode: normal;
    margin: 0 auto;
    display: block;
}

.rocket-image:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .header-content {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }
    
    .logo-img {
        height: 22px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        justify-content: flex-start;
        flex: none;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-link {
        padding: 16px 0;
        border-radius: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        color: #1a1a1a;
        font-size: 18px;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(99, 102, 241, 0.05);
        color: #6366f1;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }
    
    .nav-right {
        flex: 0 0 auto;
    }
    
    .btn-contact {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .partners-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .training-row,
    .training-row-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .training-row-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .training-title {
        font-size: 2.2rem;
    }
    

    
    .training-image {
        display: none;
    }
    
    .training-text-spacer {
        height: 320px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
    }
    
    .training-text-spacer::after {
        content: '';
        width: 100%;
        max-height: 300px;
        height: 300px;
        background-image: url('../images/avatar-train-groupe.webp');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
    }
    
    .rocket-image {
        width: 75%; /* 2x plus grand que les 37.5% précédents */
        height: 376px; /* 2x plus grand que les 188px précédents */
    }
    
    .rocket-icon {
        height: 250px;
        font-size: 4rem;
    }
    
    .rocket-image {
        height: 300px;
    }
    
    .marquee-content {
        gap: 40px;
        padding-right: 40px;
    }
    
    .partner-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .training-title {
        font-size: 1.8rem;
    }
    
    .partners-title {
        font-size: 1.3rem;
    }
    

    
    .training-image {
        height: 350px;
    }
    
    .rocket-icon {
        height: 250px;
        font-size: 4rem;
    }
    
    .rocket-image {
        width: 80%; /* 2x plus petit que les 75% du desktop */
        height: 280px;
    }
    
    .logo-img {
        height: 22px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 12px 25px;
    }
    
    .btn-demo {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Section 8: AI Automations */
.automations-section {
    /* Couleur de fond de sécurité */
    background-color: #f0f2f5;
    
    /* Dégradé organique avec auréoles et vagues - couleurs pastel */
    background: 
        /* Fondu vers le haut et le bas pour finir en blanc */
        linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0.3) 85%, #ffffff 100%),
        linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0.3) 85%, #ffffff 100%),
        
        /* Auréoles circulaires dispersées */
        radial-gradient(circle at 20% 30%, #cee5fb 0%, rgba(206, 229, 251, 0.7) 25%, transparent 50%),
        radial-gradient(circle at 80% 25%, #f5dee3 0%, rgba(245, 222, 227, 0.6) 30%, transparent 60%),
        radial-gradient(circle at 15% 70%, #f5dee3 0%, rgba(245, 222, 227, 0.8) 20%, transparent 45%),
        radial-gradient(circle at 85% 75%, #cee5fb 0%, rgba(206, 229, 251, 0.6) 35%, transparent 65%),
        radial-gradient(circle at 50% 50%, #cee5fb 0%, rgba(206, 229, 251, 0.5) 40%, transparent 70%),
        
        /* Vagues ondulantes */
        radial-gradient(ellipse 120% 40% at 30% 40%, rgba(206, 229, 251, 0.7) 0%, transparent 50%),
        radial-gradient(ellipse 100% 30% at 70% 60%, rgba(245, 222, 227, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 80% 25% at 10% 80%, rgba(206, 229, 251, 0.6) 0%, transparent 50%),
        
        /* Base douce */
        linear-gradient(135deg, rgba(206, 229, 251, 0.3) 0%, rgba(245, 222, 227, 0.3) 100%);
    
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.automations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.automations-pretitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #007aff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.automations-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #1d1d1f;
    margin-bottom: 24px;
    line-height: 1.2;
}

.automations-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #424245;
    line-height: 1.7;
    margin-bottom: 0;
}

.automations-img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
}

/* Section 9: Impact & ROI */
.impact-section {
    /* Couleur de fond de sécurité */
    background-color: #f0f2f5;
    
    /* Dégradé organique avec auréoles et vagues - couleurs pastel */
    background: 
        /* Fondu vers le haut et le bas pour finir en blanc */
        linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0.3) 85%, #ffffff 100%),
        linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0.3) 85%, #ffffff 100%),
        
        /* Auréoles circulaires dispersées */
        radial-gradient(circle at 20% 30%, #cee5fb 0%, rgba(206, 229, 251, 0.7) 25%, transparent 50%),
        radial-gradient(circle at 80% 25%, #f5dee3 0%, rgba(245, 222, 227, 0.6) 30%, transparent 60%),
        radial-gradient(circle at 15% 70%, #f5dee3 0%, rgba(245, 222, 227, 0.8) 20%, transparent 45%),
        radial-gradient(circle at 85% 75%, #cee5fb 0%, rgba(206, 229, 251, 0.6) 35%, transparent 65%),
        radial-gradient(circle at 50% 50%, #cee5fb 0%, rgba(206, 229, 251, 0.5) 40%, transparent 70%),
        
        /* Vagues ondulantes */
        radial-gradient(ellipse 120% 40% at 30% 40%, rgba(206, 229, 251, 0.7) 0%, transparent 50%),
        radial-gradient(ellipse 100% 30% at 70% 60%, rgba(245, 222, 227, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 80% 25% at 10% 80%, rgba(206, 229, 251, 0.6) 0%, transparent 50%),
        
        /* Base douce */
        linear-gradient(135deg, rgba(206, 229, 251, 0.3) 0%, rgba(245, 222, 227, 0.3) 100%);
    
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-pretitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #007aff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.impact-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #1d1d1f;
    margin-bottom: 24px;
    line-height: 1.2;
}

.impact-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #424245;
    line-height: 1.7;
    margin-bottom: 40px;
}

.impact-img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
}

.impact-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.impact-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.impact-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.impact-feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #1d1d1f;
    margin-bottom: 8px;
    line-height: 1.3;
}

.impact-feature-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Section 10: Contact Form */
.contact-section {
    background: linear-gradient(135deg, #A41464 0%, #2B257B 100%);
    padding: 120px 0;
    color: white;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: white;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    background: linear-gradient(135deg, #007aff 0%, #0056cc 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
}

/* Responsive Design pour les nouvelles sections */
@media (max-width: 768px) {
    .automations-section,
    .impact-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .automations-content,
    .impact-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .impact-image {
        order: 2;
    }
    
    .impact-text {
        order: 1;
    }
    
    .automations-title,
    .impact-title,
    .contact-title {
        font-size: 2.2rem;
    }
    
    .automations-description,
    .impact-description {
        font-size: 1rem;
    }
    
    .impact-feature {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .impact-feature-icon {
        align-self: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .automations-section,
    .impact-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .automations-title,
    .impact-title,
    .contact-title {
        font-size: 1.8rem;
    }
    
    .automations-pretitle,
    .impact-pretitle {
        font-size: 0.8rem;
    }
    
    .impact-features {
        gap: 24px;
    }
    
    .impact-feature-title {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .btn-submit {
        padding: 14px 30px;
        font-size: 1rem;
    }
}