/* Import des polices Gantari */
@import url('fonts.css');

/* Variables CSS */
:root {
    /* Palette basée sur le logo Trust in Process */
    --color-primary: #6B8EFF;  /* Bleu principal du logo */
    --color-primary-light: #8FA8FF;
    --color-primary-dark: #5176E8;
    --color-secondary: #95ABFF;  /* Bleu plus clair */
    --color-accent: #FF6B47;  /* Orange comme dans les slides */
    --color-accent-light: #FF8563;
    --color-orange: #FF6B47;  /* Orange principal */
    --color-orange-light: #FF8563;
    --color-white: #FFFFFF;
    --color-off-white: #FDFEFF;
    --color-gray-light: #F5F7FB;
    --color-gray: #8B95A6;
    --color-dark: #2C3E50;
    
    /* Typographie ludique */
    --font-family: 'Gantari', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Gantari', sans-serif;
    
    /* Border radius bubble style */
    --radius-small: 15px;
    --radius-medium: 25px;
    --radius-large: 35px;
    --radius-bubble: 50% 45% 55% 50% / 45% 50% 50% 55%;
    
    /* Shadows douces */
    --shadow-soft: 0 5px 25px rgba(107, 142, 255, 0.1);
    --shadow-medium: 0 10px 40px rgba(107, 142, 255, 0.15);
    --shadow-large: 0 20px 60px rgba(107, 142, 255, 0.2);
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Smooth transitions globales */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

/* Smooth scroll global */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-dark);
    overflow-x: hidden;
    background: var(--color-off-white);
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    /* Smooth page transitions */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Navigation - Modern & Professional */
.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 18px 40px;
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(107, 142, 255, 0.12);
    border: 1px solid rgba(107, 142, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar:hover {
    box-shadow: 0 12px 40px rgba(107, 142, 255, 0.18);
    border-color: rgba(107, 142, 255, 0.12);
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 20px);
        padding: 15px 20px;
        top: 10px;
    }

    .selector-label {
        font-size: 1.2rem;
    }

    .user-type-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 10px;
    }
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

/* User Type Selector dans la section Notre Offre */
.user-type-selector-section {
    text-align: center;
    margin: 40px 0;
    animation: fadeInUp 0.8s ease-out;
}

.selector-label {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-align: center;
}

.user-type-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.user-type-btn {
    padding: 18px 40px;
    border: 3px solid var(--color-primary);
    border-radius: 50px;
    background: white;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(107, 142, 255, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-type-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.user-type-btn:hover i {
    transform: scale(1.2);
}

.user-type-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: 0;
}

.user-type-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 142, 255, 0.3);
    border-color: var(--color-primary-dark);
}

.user-type-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(107, 142, 255, 0.4);
    transform: scale(1.05);
}

/* Mode CHR avec couleur beige/crème */
.user-type-btn[data-type="chr"].active {
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
    border-color: #D4A574;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

.user-type-btn.active::before {
    width: 300px;
    height: 300px;
}

.user-type-btn span {
    position: relative;
    z-index: 1;
}

/* Social Proof CHR */
.social-proof-chr {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50px;
    margin: 20px 0;
    font-weight: 700;
    font-size: 1rem;
    color: #B8956A;
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.social-proof-chr i {
    font-size: 1.3rem;
    color: #D4A574;
}

/* Vidéo de présentation OPCO */
.video-presentation-opco {
    max-width: 1000px;
    width: 100%;
    margin: 50px auto;
    display: block;
    opacity: 1;
    transition: all 0.5s ease;
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    width: clamp(300px, 32vw, 480px);
    margin: 0 auto;
    aspect-ratio: 9 / 14;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 142, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Gradient animé en arrière-plan */
    background: linear-gradient(135deg,
        #6B8EFF 0%,
        #8FA8FF 25%,
        #FF6B47 50%,
        #6B8EFF 75%,
        #95ABFF 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(107, 142, 255, 0.25);
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    object-fit: cover;
}

/* Responsive vidéo */
@media (max-width: 768px) {
    .video-presentation-opco {
        margin: 30px auto;
        padding: 0 10px;
    }

    .video-wrapper {
        border-radius: 15px;
        aspect-ratio: 9 / 16;
        width: 90vw;
    }

    /* Ajustements pour les boutons de sélection sur mobile */
    .user-type-buttons {
        flex-direction: column;
        width: 100%;
    }

    .user-type-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 14px 30px;
    }

    /* Amélioration de la section Notre Offre sur mobile */
    .offre-content {
        flex-direction: column;
    }

    .offre-image {
        margin-top: 30px;
    }

    /* Expertises grid sur mobile */
    .expertises-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expertise-icon {
        width: 70px;
        height: 70px;
    }

    .expertise-icon i {
        font-size: 2rem;
    }

    /* Hero section ajustements */
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Section titles mobile */
    .section-title {
        font-size: 2rem;
    }

    /* Processus mobile */
    .processus-content {
        flex-direction: column;
    }

    .processus-left,
    .processus-right {
        width: 100%;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--color-primary);
    background: rgba(107, 142, 255, 0.08);
    transform: translateY(-2px);
}

/* Bouton CTA "Réserver" avec style moderne */
.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
    color: white;
    padding: 12px 28px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 71, 0.25);
    position: relative;
    overflow: hidden;
}

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

.nav-link.nav-cta:hover::before {
    left: 100%;
}

.nav-link.nav-cta:hover {
    background: linear-gradient(135deg, var(--color-orange-light) 0%, var(--color-orange) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 71, 0.35);
}

.nav-link.nav-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-link.nav-cta:hover i {
    transform: scale(1.1);
}

.nav-link::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Modern & Professional */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 50%, #EEF3FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 20px 80px;
}

/* Background Shapes */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-orange), #FFB347);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary-light));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Hero Content */
.hero-content {
    text-align: center;
    color: var(--color-dark);
    z-index: 2;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(107, 142, 255, 0.2);
    box-shadow: 0 8px 30px rgba(107, 142, 255, 0.15);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    animation: fadeInDown 1s ease-out;
}

.hero-badge i {
    color: var(--color-orange);
    font-size: 1.1rem;
}

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

.hero-logo {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-logo-img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 8px 30px rgba(107, 142, 255, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-img:hover {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 15px 40px rgba(107, 142, 255, 0.3));
}

/* Hero Title - Modern */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-display);
    color: var(--color-dark);
    text-align: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.title-highlight {
    color: var(--color-orange);
    font-weight: 900;
}

.badge-100-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 2.5rem;
    font-weight: 900;
    margin-left: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 71, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 71, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 71, 0.4);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 142, 255, 0.15);
}

.cta-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 142, 255, 0.3);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-stat i {
    font-size: 2.5rem;
    color: var(--color-primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Section Introduction - Inspirée de TrustProcess_slide_A */
.introduction-slide-a {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0;
}

.slide-container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.intro-header {
    margin-bottom: 40px;
    position: relative;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1.2;
    text-align: center;
}

.formation-highlight {
    color: var(--color-orange);
    font-weight: 900;
    text-shadow:
        0 2px 8px rgba(255, 255, 255, 0.15),
        0 4px 16px rgba(255, 255, 255, 0.1);
}

.digital-highlight {
    color: var(--color-orange);
    font-weight: 700;
    position: relative;
    text-shadow:
        0 2px 6px rgba(255, 255, 255, 0.12),
        0 4px 12px rgba(255, 255, 255, 0.08);
}

.digital-highlight::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-orange);
    border-radius: 2px;
}

/* Éléments décoratifs inspirés du slide */
.introduction-slide-a::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 71, 0.2);
    border-radius: 60% 40% 60% 40%;
    animation: float 20s ease-in-out infinite;
}

.introduction-slide-a::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50% 60% 40% 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: var(--radius-medium);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-orange) 0%, #FF8563 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(255, 107, 71, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 71, 0.5);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.9rem;
    opacity: 0.85;
}

.intro-cta {
    margin-top: 50px;
    text-align: center;
}

.intro-cta .cta-button {
    background: var(--color-orange);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: var(--radius-medium);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.intro-cta .cta-button:hover {
    background: var(--color-orange-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

/* Responsive pour la section introduction */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 40px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
}

.introduction::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 500px;
    background: white;
    border-radius: var(--radius-bubble);
    opacity: 0.1;
    transform: rotate(25deg);
    animation: float 15s ease-in-out infinite reverse;
}

/* Layout de la section introduction */
.introduction-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.introduction-main {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.introduction-visual {
    position: relative;
    height: 400px;
    z-index: 2;
}

/* Statistiques */
.introduction-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius-medium);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Éléments visuels */
.visual-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation: floatIcon 3s ease-in-out infinite;
}

.icon-2 {
    top: 10%;
    right: 20%;
    animation: floatIcon 3s ease-in-out infinite 0.5s;
}

.icon-3 {
    bottom: 30%;
    left: 20%;
    animation: floatIcon 3s ease-in-out infinite 1s;
}

.icon-4 {
    bottom: 20%;
    right: 10%;
    animation: floatIcon 3s ease-in-out infinite 1.5s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Graphique central */
.central-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.main-circle {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    animation: pulseMain 2s ease-in-out infinite;
}

.sub-circle-1 {
    width: 100px;
    height: 100px;
    top: -120px;
    left: -30px;
    animation: orbitCircle 8s linear infinite;
}

.sub-circle-2 {
    width: 90px;
    height: 90px;
    bottom: -110px;
    right: -20px;
    animation: orbitCircle 8s linear infinite reverse;
}

.circle-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

@keyframes pulseMain {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes orbitCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section des bénéfices */
.introduction-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    z-index: 2;
    position: relative;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius-large);
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

/* CTA amélioré */
.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 15px;
    text-align: center;
}

/* Décorations */
.intro-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.intro-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-bubble-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 5%;
    animation: gentleFloat 6s ease-in-out infinite;
}

.intro-bubble-2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 8%;
    animation: gentleFloat 8s ease-in-out infinite reverse;
}

.intro-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    height: 2px;
}

.intro-line-1 {
    width: 150px;
    top: 25%;
    left: 3%;
    transform: rotate(-25deg);
}

.intro-line-2 {
    width: 120px;
    bottom: 30%;
    right: 6%;
    transform: rotate(35deg);
}

.introduction-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 30px;
}

.introduction-rocket {
    font-size: 4rem;
    margin: 30px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.introduction-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.introduction-subtitle .highlight {
    font-weight: 700;
    color: var(--color-orange);
}

.introduction-arrow {
    font-size: 3rem;
    color: var(--color-orange);
    margin-top: 20px;
}

/* Section Notre Offre */
.notre-offre {
    padding: 120px 0;
    background: linear-gradient(145deg, var(--color-off-white) 0%, #F8FAFF 50%, var(--color-gray-light) 100%);
    position: relative;
    border-top: 3px solid rgba(107, 142, 255, 0.2);
    border-bottom: 3px solid rgba(107, 142, 255, 0.2);
    box-shadow: inset 0 5px 15px rgba(107, 142, 255, 0.05);
}

.section-badge {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 50px;
    line-height: 1.2;
}

.section-title .highlight {
    font-weight: 800;
    color: var(--color-primary);
}

.offre-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.offre-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(107, 142, 255, 0.25));
    transition: transform 0.3s ease;
    border-radius: var(--radius-medium);
}

.offre-image img:hover {
    transform: scale(1.05) rotate(-1deg);
}

.offre-box {
    background: white;
    padding: 45px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-large);
    border: 2px solid var(--color-gray-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.offre-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(107, 142, 255, 0.25);
}

.offre-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--color-gray);
}

.offre-list {
    list-style: none;
}

.offre-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.offre-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.offre-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
}

/* Section Processus */
.processus {
    padding: 120px 0;
    background: linear-gradient(135deg, #FDFEFF 0%, white 50%, #F5F7FB 100%);
    position: relative;
    border-top: 3px solid rgba(255, 107, 71, 0.2);
    border-bottom: 3px solid rgba(255, 107, 71, 0.2);
    box-shadow: inset 0 -5px 15px rgba(255, 107, 71, 0.05), inset 0 5px 15px rgba(255, 107, 71, 0.05);
}

.processus::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 100px;
    width: 150px;
    height: 150px;
    background: var(--color-orange);
    border-radius: 50%;
    opacity: 0.1;
}

.processus::after {
    content: '';
    position: absolute;
    bottom: 100px;
    right: 150px;
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    border-radius: 30% 70% 60% 40%;
    opacity: 0.1;
}

.processus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.processus-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--color-gray);
}

.processus-chez {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.processus-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.processus-title .small {
    font-size: 1.5rem;
    font-weight: 400;
}

.processus-accompagne {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.processus-az {
    font-size: 1.8rem;
    font-weight: 600;
}

.highlight-orange {
    color: var(--color-orange);
    font-weight: 900;
    font-size: 2.4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Roadmap Styles */
.roadmap-container {
    position: relative;
    padding: 40px 0;
    margin-bottom: 40px;
}

.roadmap-timeline {
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: 80px;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-orange) 100%);
    border-radius: 2px;
    opacity: 0.3;
}

.roadmap-timeline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-orange) 100%);
    border-radius: 2px;
    transition: height 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.roadmap-container.animate-timeline .roadmap-timeline::after {
    height: 100%;
}

.roadmap-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.roadmap-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-step[data-step="1"].visible { transition-delay: 0.2s; }
.roadmap-step[data-step="2"].visible { transition-delay: 0.4s; }
.roadmap-step[data-step="3"].visible { transition-delay: 0.6s; }
.roadmap-step[data-step="4"].visible { transition-delay: 0.8s; }

.step-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(107, 142, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.roadmap-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(107, 142, 255, 0.4);
}

.step-number {
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-content {
    background: white;
    padding: 25px;
    border-radius: var(--radius-medium);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
}

.roadmap-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: var(--color-orange);
}

.step-content h4 {
    color: var(--color-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.processus-list {
    list-style: none;
}

.processus-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.processus-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.processus-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.badge-zero {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    border: 2px solid var(--color-gray-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.badge-zero i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.badge-zero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.badge-100-processus {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
    color: white;
    padding: 20px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-align: center;
    box-shadow: var(--shadow-medium);
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-100-processus i {
    font-size: 1.3rem;
}

/* Section Nos Expertises */
.nos-expertises {
    padding: 100px 0;
    background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.nos-expertises::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 600px;
    height: 400px;
    background: white;
    border-radius: 60% 40% 80% 20%;
    opacity: 0.1;
    transform: rotate(-10deg);
}

.nos-expertises::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 300px;
    background: white;
    border-radius: 50% 30% 70% 50%;
    opacity: 0.1;
    transform: rotate(20deg);
}

.nos-expertises .section-badge {
    background: white;
    color: var(--color-orange);
}

.nos-expertises .section-title {
    color: white;
}

.expertises-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.expertise-item {
    background: white;
    color: var(--color-dark);
    padding: 35px;
    border-radius: var(--radius-large);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.expertise-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 20px 50px rgba(107, 142, 255, 0.3);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(107, 142, 255, 0.3);
}

.expertise-item:hover .expertise-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(107, 142, 255, 0.4);
}

.expertise-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.expertise-icon i {
    font-size: 2.2rem;
    color: white;
}

.expertise-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.expertise-text p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.expertises-footer {
    background: white;
    color: var(--color-dark);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.expertises-footer p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Section Types de Formation */
.types-formation {
    padding: 100px 0;
    background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.types-formation::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 600px;
    height: 400px;
    background: white;
    border-radius: 60% 40% 80% 20%;
    opacity: 0.1;
    transform: rotate(-10deg);
}

.types-formation::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 300px;
    background: white;
    border-radius: 50% 30% 70% 50%;
    opacity: 0.1;
    transform: rotate(20deg);
}

.types-formation .section-badge {
    background: white;
    color: var(--color-orange);
}

.types-formation .section-title {
    color: white;
}

.highlight-format {
    color: var(--color-orange);
    font-weight: 700;
    text-shadow:
        0 2px 8px rgba(255, 255, 255, 0.15),
        0 4px 16px rgba(255, 255, 255, 0.1);
}

.formations-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.formation-type-card {
    background: white;
    color: var(--color-dark);
    padding: 40px 30px;
    border-radius: var(--radius-large);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formation-type-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 20px 50px rgba(107, 142, 255, 0.3);
}

.formation-type-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    margin-bottom: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(107, 142, 255, 0.3);
}

.formation-type-card:hover .formation-type-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(107, 142, 255, 0.4);
}

.formation-type-icon i {
    font-size: 2.5rem;
    color: white;
}

.formation-type-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.formation-type-description {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.formation-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(107, 142, 255, 0.1) 0%, rgba(255, 107, 71, 0.1) 100%);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    border: 1px solid var(--color-primary-light);
}

.formation-type-badge i {
    font-size: 1rem;
}

.formations-types-footer {
    background: white;
    color: var(--color-dark);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.formations-types-footer p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Galerie CHR */
.chr-gallery {
    margin-top: 80px;
    text-align: center;
}

.chr-gallery .gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    color: white;
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay i {
    font-size: 2.5rem;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.2) translateY(-5px);
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Formations avec Vraies Images */
.formations {
    padding: 120px 0;
    background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.formations::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -200px;
    width: 500px;
    height: 400px;
    background: var(--color-primary);
    border-radius: 60% 40% 70% 30%;
    opacity: 0.3;
    transform: rotate(-20deg);
}

.formations::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 300px;
    background: var(--color-primary);
    border-radius: 50% 30% 60% 40%;
    opacity: 0.3;
    transform: rotate(15deg);
}

.formations-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.formations-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.formations-brain {
    font-size: 4rem;
    margin: 30px 0;
    animation: bounce 2s infinite;
}

.formations-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
}

.formations-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-formation {
    text-align: center;
}

.stat-formation .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-orange);
    display: block;
    margin-bottom: 8px;
    text-shadow:
        0 2px 8px rgba(255, 255, 255, 0.15),
        0 4px 16px rgba(255, 255, 255, 0.1);
}

.stat-formation .label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-orange {
    color: var(--color-orange);
    font-weight: 700;
    text-shadow:
        0 2px 6px rgba(255, 255, 255, 0.12),
        0 4px 12px rgba(255, 255, 255, 0.08);
}

/* Carrousel formations avec encadrement adaptatif */
.formations-carousel-real {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* Grid de formations modernes */
.formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.formation-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-large);
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.formation-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.formation-icon {
    width: 80px;
    height: 80px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 71, 0.3);
    transition: transform 0.3s ease;
}

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

.formation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.formation-card p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 25px;
}

.formation-cta {
    background: var(--color-orange);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: var(--radius-medium);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.formation-cta:hover {
    background: var(--color-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 71, 0.3);
}

.carousel-container-real {
    overflow: hidden;
    display: inline-block;
}

.carousel-track-real {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.formation-slide-real {
    flex: 0 0 100%;
    width: 100%;
    display: block;
    padding: 0;
}

.formation-image-real {
    display: block;
    height: auto;
    max-height: 600px;
    width: 100%;
    object-fit: contain;
    border: 4px solid transparent;
    border-radius: var(--radius-large);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--color-primary) 0%, var(--color-orange) 50%, var(--color-secondary) 100%) border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(107, 142, 255, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.formation-image-real:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(107, 142, 255, 0.15),
        0 12px 30px rgba(0, 0, 0, 0.12);
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--color-orange) 0%, var(--color-primary) 50%, var(--color-secondary) 100%) border-box;
}

/* Navigation du carrousel */
.carousel-nav-real {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 3;
}

.carousel-btn-real {
    background: linear-gradient(135deg, white 0%, #f8faff 100%);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(107, 142, 255, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.carousel-btn-real:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(107, 142, 255, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--color-orange);
}

.carousel-btn-real:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    background: #f5f5f5;
    color: #ccc;
    border-color: #ddd;
}

.carousel-indicators-real {
    display: flex;
    gap: 12px;
    align-items: center;
}

.indicator-real {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.indicator-real::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.indicator-real.active {
    background: white;
    transform: scale(1.3);
    border-color: var(--color-orange);
    box-shadow: 
        0 0 0 3px rgba(255, 107, 71, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.indicator-real.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.indicator-real:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.9);
}

/* Section Sur-Mesure */
/* Section Sur-Mesure - Style TrustProcess_slide_C */
.sur-mesure-slide-c {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFF 0%, white 50%, #F0F4FF 100%);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    min-height: 80vh;
    max-height: 100vh;
    border-radius: var(--radius-large);
    box-shadow: 0 10px 40px rgba(107, 142, 255, 0.08);
}

.sur-mesure-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Décoration géométrique subtile */
.geometric-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.geo-circle {
    position: absolute;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0.1;
}

.geo-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 15%;
    animation: gentleFloat 8s ease-in-out infinite;
}

.geo-circle-2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 10%;
    border-color: var(--color-orange);
    animation: gentleFloat 6s ease-in-out infinite reverse;
}

.geo-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    height: 2px;
    opacity: 0.15;
}

.geo-line-1 {
    width: 300px;
    top: 30%;
    left: 5%;
    transform: rotate(-15deg);
}

.geo-line-2 {
    width: 250px;
    bottom: 35%;
    right: 8%;
    background: linear-gradient(90deg, transparent 0%, var(--color-orange) 50%, transparent 100%);
    transform: rotate(25deg);
}

.geo-dots {
    position: absolute;
    top: 60%;
    right: 25%;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.2;
}

.geo-dots::before,
.geo-dots::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-orange);
    border-radius: 50%;
    opacity: 0.3;
}

.geo-dots::before {
    top: -20px;
    left: -15px;
}

.geo-dots::after {
    bottom: -25px;
    right: -20px;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-10px) translateX(5px); }
    66% { transform: translateY(5px) translateX(-3px); }
}

.sur-mesure-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 3;
}

/* Texte principal */
.sur-mesure-intro-text {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 40px;
}

.highlight-formation {
    font-weight: 800;
    color: var(--color-primary);
}

.highlight-catalogue {
    font-weight: 700;
    color: var(--color-primary);
}

.highlight-creons {
    font-weight: 800;
    color: var(--color-primary);
}

.highlight-surmesure {
    font-weight: 900;
    color: var(--color-primary);
    font-size: 2.8rem;
}

/* Section adaptation */
.adaptation-section {
    margin-top: 40px;
}

.adaptation-title-orange {
    font-size: 1.8rem;
    color: var(--color-orange);
    margin-bottom: 30px;
    font-weight: 400;
}

.highlight-sadapte {
    font-weight: 800;
}

.adaptation-checklist {
    background: white;
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: 0 15px 40px rgba(107, 142, 255, 0.15);
    border: 2px solid rgba(107, 142, 255, 0.1);
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.check-item:last-child {
    margin-bottom: 0;
}

.check-circle {
    width: 35px;
    height: 35px;
    background: var(--color-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.check-label {
    color: var(--color-gray);
    font-weight: 400;
}

.check-highlight {
    color: var(--color-orange);
    font-weight: 800;
    font-size: 1.6rem;
    text-shadow:
        0 2px 8px rgba(255, 255, 255, 0.15),
        0 4px 16px rgba(255, 255, 255, 0.1);
}

/* Côté droit */
.sur-mesure-side {
    position: relative;
}

.target-icon-top {
    position: absolute;
    top: -50px;
    right: 0;
    z-index: 4;
}

.target-svg {
    animation: targetFloat 3s ease-in-out infinite;
}

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

/* Section administrative */
.admin-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 35px 40px;
    border-radius: var(--radius-bubble);
    margin-top: 80px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(107, 142, 255, 0.3);
    position: relative;
    z-index: 3;
}

.admin-intro {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.admin-main {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.admin-highlight {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.admin-opco {
    font-size: 1rem;
    opacity: 0.8;
}

.opco-highlight {
    font-weight: 800;
    color: var(--color-orange);
    text-shadow:
        0 2px 6px rgba(255, 255, 255, 0.12),
        0 4px 12px rgba(255, 255, 255, 0.08);
}

/* Responsive pour sur-mesure */
@media (max-width: 768px) {
    .sur-mesure-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sur-mesure-intro-text {
        font-size: 2rem;
        text-align: center;
    }
    
    .highlight-surmesure {
        font-size: 2.2rem;
    }
    
    .target-icon-top {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .admin-section {
        margin-top: 50px;
    }
    
    .geometric-decoration {
        opacity: 0.6;
    }
    
    .geo-circle-1 {
        width: 120px;
        height: 120px;
    }
    
    .geo-circle-2 {
        width: 80px;
        height: 80px;
    }
    
    .geo-line-1,
    .geo-line-2 {
        width: 150px;
    }
    
    .adaptation-checklist {
        padding: 30px 20px;
    }
    
    .check-item {
        font-size: 1.2rem;
    }
    
    .check-highlight {
        font-size: 1.4rem;
    }
    
    .sur-mesure-container {
        padding: 0 20px;
    }
}

/* Section Nos Atouts */
.nos-atouts {
    padding: 120px 0;
    background: linear-gradient(145deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%);
    border-top: 3px solid var(--color-orange);
    position: relative;
    overflow: hidden;
}

.nos-atouts .section-title {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 20px;
}

.nos-atouts .section-subtitle {
    color: var(--color-gray);
    text-align: center;
}

/* Éléments décoratifs modernes pour nos-atouts */
.nos-atouts::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: var(--color-orange);
    border-radius: 60% 40% 60% 40%;
    opacity: 0.08;
    transform: rotate(25deg);
    animation: float 20s ease-in-out infinite;
}

.nos-atouts::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: var(--color-primary);
    border-radius: 40% 60% 40% 60%;
    opacity: 0.06;
    transform: rotate(-15deg);
    animation: float 25s ease-in-out infinite reverse;
}

.atouts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.atout-item {
    background: white;
    padding: 45px;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: 0 8px 25px rgba(107, 142, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.atout-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(107, 142, 255, 0.2);
    border-color: var(--color-orange);
}

.atout-item:hover::before {
    left: 100%;
}

.atout-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atout-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.atout-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.atout-item p {
    color: var(--color-gray);
    line-height: 1.6;
}

/* Footer Contact Style TrustProcess_slideContact */
.contact-footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px 0;
    color: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.contact-left {
    padding-right: 40px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    color: white;
}

.big-text {
    font-size: 4.5rem;
    font-weight: 800;
    display: block;
    line-height: 0.9;
}

.dot-separator {
    color: var(--color-orange);
    font-weight: 800;
}

.contact-info {
    margin: 50px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    margin: 20px 0;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-item {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-dark);
}

.phone-item {
    background: var(--color-orange);
    color: white;
}

.contact-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    margin-right: 15px;
    font-size: 1.5rem;
}

.contact-cta-text {
    margin-top: 60px;
}

.contact-cta-text p {
    font-size: 1.8rem;
    margin: 5px 0;
    opacity: 0.8;
}

.des-maintenant {
    font-weight: 800 !important;
    opacity: 1 !important;
    color: white !important;
}

.contact-right {
    background: white;
    border-radius: var(--radius-large);
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    height: fit-content;
}

.calendly-inline-widget {
    border-radius: var(--radius-large);
    overflow: hidden;
}

.big-cta {
    font-size: 1.4rem !important;
    padding: 25px 50px !important;
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-copyright {
    font-size: 1rem;
    opacity: 0.7;
    margin: 0;
}

.contact-decoration {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 400px;
    background: var(--color-orange);
    border-radius: var(--radius-bubble);
    opacity: 0.1;
    transform: rotate(25deg);
    animation: float 20s ease-in-out infinite;
}

/* Responsive Design */
/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding: 120px 15px 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .badge-100-hero {
        font-size: 1.8rem;
        padding: 6px 15px;
        display: block;
        margin: 15px auto 0;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }

    .hero-stat {
        width: 100%;
        justify-content: center;
    }

    .hero-logo-img {
        height: 100px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-stat i {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: calc(100% - 40px);
        max-width: 100vw;
        text-align: center;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        margin: 0 20px;
        border-radius: var(--radius-medium);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        display: none;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 15px 20px;
    }

    .introduction-title {
        font-size: 2.5rem;
    }

    .introduction-subtitle {
        font-size: 1.1rem;
    }

    /* Introduction responsive */
    .introduction-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .introduction-visual {
        height: 250px;
    }

    .introduction-stats {
        gap: 20px;
        margin: 30px 0;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .introduction-benefits {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .benefit-item {
        padding: 25px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .main-circle {
        width: 120px;
        height: 120px;
    }

    .sub-circle-1,
    .sub-circle-2 {
        width: 70px;
        height: 70px;
    }

    .circle-text {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .formations-title {
        font-size: 2rem;
    }

    .offre-content,
    .processus-content,
    .sur-mesure-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertises-grid,
    .atouts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .processus-badges {
        flex-direction: column;
        align-items: center;
    }

    .carousel-container-real {
        margin: 0 10px;
    }

    .formation-image-real {
        max-height: 400px;
    }

    .carousel-nav-real {
        gap: 20px;
    }

    .carousel-btn-real {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Fix formations stats overflow on mobile */
    .formations-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
        padding: 0 20px;
    }

    .stat-formation {
        text-align: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-medium);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-formation .number {
        font-size: 2rem;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: visible;
    }

    .stat-formation .label {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Fix hero badge on mobile */
    .badge-100 {
        padding: 12px 25px;
        font-size: 1.1rem;
        white-space: nowrap;
    }

    /* Fix processus badges on mobile */
    .badge-100-processus {
        padding: 15px 25px;
        font-size: 0.9rem;
        white-space: nowrap;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        height: 120px;
    }
    .hero-title {
        font-size: 2rem;
    }

    .introduction-title {
        font-size: 2rem;
    }

    .formations-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .formation-image-real {
        max-height: 300px;
    }

    /* Footer responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left {
        padding-right: 0;
        text-align: center;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .big-text {
        font-size: 3rem;
    }

    .contact-right {
        margin: 0 auto;
        max-width: 400px;
    }

    .calendly-inline-widget {
        height: 500px !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-container {
        padding: 0 20px;
    }

    /* Additional fixes for formations stats on very small screens */
    .formations-stats {
        gap: 20px;
        padding: 0 10px;
    }

    .stat-formation .number {
        font-size: 1.8rem;
    }

    .stat-formation .label {
        font-size: 0.75rem;
    }

    /* Ensure badges don't overflow on very small screens */
    .badge-100 {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .badge-100-processus {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Fix hero subtitle container on very small screens */
    .hero-subtitle-container {
        gap: 15px;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 20px 25px;
        line-height: 1.3;
    }
}

/* Style Bubble/Blob supplémentaires */
.bubble-decoration {
    position: absolute;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-bubble);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.bubble-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.bubble-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

/* Effet de texte ludique */
.playful-text {
    display: inline-block;
    position: relative;
}

.playful-text::before {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 2px;
    z-index: -1;
    filter: blur(3px);
    opacity: 0.3;
}

/* Boutons style bubble */
.btn-bubble {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-bubble:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-large);
}

.btn-bubble:hover::before {
    width: 300px;
    height: 300px;
}

/* CTA Calendly Styles */
.cta-calendly {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
    color: white;
    padding: 20px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 107, 71, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    animation: pulse-cta 2s ease-in-out infinite;
}

.cta-calendly i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cta-calendly:hover i {
    transform: translateX(5px);
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 107, 71, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 15px 40px rgba(255, 107, 71, 0.4); }
}

.cta-calendly:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 20px 50px rgba(255, 107, 71, 0.5);
}

.cta-container {
    text-align: center;
    margin: 50px 0 0 0;
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Modal Calendly */
.calendly-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.calendly-modal.active {
    display: flex;
}

.calendly-modal-content {
    background: white;
    border-radius: var(--radius-large);
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.calendly-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.calendly-close:hover {
    background: var(--color-primary-dark);
    transform: rotate(90deg);
}

.calendly-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-large);
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 71, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    animation: float-cta 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-cta i {
    font-size: 1.2rem;
}

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

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 71, 0.5);
}

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

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

@keyframes blob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.blob-shape {
    animation: blob 8s ease-in-out infinite;
}

/* Animation du gradient de la vidéo */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animations de scroll fluides */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.zoom-in {
    animation: zoomIn 0.8s ease-out;
}

.rotate-in {
    animation: rotateIn 0.8s ease-out;
}

/* Indicateur de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 30px;
    height: 50px;
    border: 3px solid white;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(15px); opacity: 0.5; }
    100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* Parallax elements */
.parallax-element {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Effet de r\u00e9v\u00e9lation au scroll */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Séparateurs entre sections */
.section-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    margin: 0 auto;
    width: 60%;
    opacity: 0.3;
}

.section-separator-wave {
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%236B8EFF' fill-opacity='0.1'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

/* Améliorations des contrastes de texte */
.expertise-text h3 {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    color: var(--color-primary) !important;
}

.expertise-text p {
    color: var(--color-dark) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

.atout-item h3 {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    color: var(--color-primary) !important;
}

.atout-item p {
    color: var(--color-dark) !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}

.offre-description {
    font-size: 1.2rem !important;
    margin-bottom: 30px !important;
    color: var(--color-dark) !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
}

.offre-list li {
    padding: 12px 0 !important;
    padding-left: 35px !important;
    position: relative !important;
    font-weight: 600 !important;
    color: var(--color-dark) !important;
    font-size: 1.1rem !important;
}

.processus-intro {
    font-size: 1.2rem !important;
    margin-bottom: 40px !important;
    color: var(--color-dark) !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
}

/* Smooth scroll déjà défini au début */

/* ===== BOUTON TÉLÉCHARGEMENT CATALOGUE ===== */
.catalogue-download-container {
    max-width: 600px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.catalogue-download-box {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogue-download-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 71, 0.2);
}

.catalogue-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 71, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.catalogue-icon i {
    font-size: 2.2rem;
    color: white;
}

.catalogue-download-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.catalogue-download-description {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

.catalogue-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 45px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 107, 71, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.catalogue-download-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 71, 0.5);
}

.catalogue-download-btn i:first-child {
    font-size: 1.3rem;
}

.catalogue-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.catalogue-download-btn:hover .catalogue-arrow {
    transform: translateY(3px);
    animation: bounce 1s infinite;
}

.catalogue-file-info {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.catalogue-file-info i {
    color: var(--color-accent);
    font-size: 1rem;
}

/* Mobile responsive pour bouton catalogue */
@media (max-width: 768px) {
    .catalogue-download-box {
        padding: 40px 25px;
    }

    .catalogue-download-title {
        font-size: 1.6rem;
    }

    .catalogue-download-description {
        font-size: 1rem;
    }

    .catalogue-download-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

/* ===== LOGOS DE CERTIFICATION (QUALIOPI & AKTO) ===== */
.certification-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.logo-qualiopi {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(107, 142, 255, 0.15));
}

.logo-akto {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(107, 142, 255, 0.15));
}

.logo-qualiopi:hover,
.logo-akto:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(107, 142, 255, 0.25));
}

@media (max-width: 768px) {
    .certification-logos {
        gap: 20px;
        margin-top: 30px;
    }

    .logo-qualiopi {
        height: 55px;
    }

    .logo-akto {
        height: 65px;
    }

    /* Responsive Types de Formation */
    .formations-types-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .formation-type-card {
        padding: 35px 25px;
    }

    .formation-type-icon {
        width: 80px;
        height: 80px;
    }

    .formation-type-icon i {
        font-size: 2rem;
    }

    .formation-type-title {
        font-size: 1.4rem;
    }

    .formation-type-description {
        font-size: 0.95rem;
    }

    .formations-types-footer {
        padding: 30px 20px;
    }

    .formations-types-footer p {
        font-size: 1rem;
    }

    /* Responsive Galerie CHR */
    .chr-gallery {
        margin-top: 60px;
    }

    .chr-gallery .gallery-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image {
        height: 280px;
    }

    .gallery-overlay {
        padding: 30px 20px 20px;
    }

    .gallery-overlay i {
        font-size: 2rem;
    }

    .gallery-overlay h4 {
        font-size: 1.2rem;
    }
}

/* ===== Slides Grid (Entreprise) ===== */
.slides-grid-entreprise {
    display: none; /* visible uniquement pour Entreprise via JS */
    display: none;
    gap: 20px;
    padding: 32px 0 16px 0;
    /* Flex layout to center last row */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.slides-grid-entreprise .slide-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(107, 142, 255, 0.12);
    border: 1px solid rgba(107, 142, 255, 0.08);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    position: relative;
    transform-origin: center;
    will-change: transform;
}

.slides-grid-entreprise .slide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(107, 142, 255, 0.18);
}

.slides-grid-entreprise .slide-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
    padding: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: zoom-in;
}

.slides-grid-entreprise .slide-card:hover {
    transform: scale(1.12);
    box-shadow: 0 20px 55px rgba(107, 142, 255, 0.28);
    z-index: 3;
}

@media (max-width: 900px) {
  .slides-grid-entreprise .slide-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 900px) {
  .slides-grid-entreprise .slide-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (min-width: 1200px) {
  .slides-grid-entreprise .slide-card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

/* Widen formations container slightly for 3 columns */
.formations .container {
  max-width: 1700px;
}
