/* ============================================= */
/* Deep Blue AI - Styles Pages Secondaires */
/* ============================================= */

/* ============================================= */
/* HEADER DYNAMIQUE pour pages secondaires - identique accueil */
/* ============================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

header .logo,
header nav a {
    color: var(--bg-white);
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
}

header .logo:hover,
header nav a:hover {
    color: var(--vibrant-sky-blue);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header.scrolled .logo,
header.scrolled nav a {
    color: var(--text-primary);
}

header.scrolled nav a:hover {
    color: var(--electric-blue);
}

/* Style spécifique pour le logo */
header .logo {
    margin-left: 120px;
}

header .logo img {
    height: 115px;
    transition: transform 0.3s ease;
}

header .logo:hover img {
    transform: scale(1.1);
}

/* Boutons ronds pour la page formations */
.btn {
    border-radius: 50px !important;
}

/* ============================================= */
/* HERO SECTION pour pages secondaires - Style accueil */
/* ============================================= */

.hero {
    padding: 160px 0 100px;
    text-align: center;
    background: var(--gradient-hero);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero-title-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--bg-white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.025em;
}

.hero .gradient-text {
    color: var(--bg-white);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.hero p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 500;
    line-height: 1.8;
}

/* Bouton blanc pour les sections hero */
.btn-hero {
    background: rgba(255, 255, 255, 0.95);
    color: var(--electric-blue);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--electric-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 1);
}

/* ============================================= */
/* DESIGN MINIMALISTE ET PROFESSIONNEL */
/* ============================================= */

.clean-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.clean-header {
    text-align: center;
    margin-bottom: 60px;
}

.clean-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.clean-header p {
    font-size: 1.1rem;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Fond en forme de cercle pour améliorer la lisibilité */
.clean-header.with-background {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 80px;
    padding: 60px 50px;
    margin-bottom: 60px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Effet de bulle avec pseudo-élément */
.clean-header.with-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ============================================= */
/* DIAGNOSTIC - Design épuré */
/* ============================================= */

/* Nouvelles sections pour diagnostic */
.diagnostic-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.diagnostic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 86, 214, 0.3);
}

.diagnostic-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.diagnostic-card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.diagnostic-card-content p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.diagnostic-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.diagnostic-features li {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.diagnostic-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.diagnostic-cta {
    margin-top: 24px;
}

/* Grille méthodologie */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.methodology-step {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.methodology-step:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 86, 214, 0.3);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 86, 214, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--electric-blue);
    transition: all 0.3s ease;
}

.methodology-step:hover .methodology-icon {
    background: rgba(0, 86, 214, 0.15);
    transform: scale(1.05);
}

.methodology-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.methodology-step p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Section conclusion */
.conclusion-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.conclusion-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.conclusion-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Liens vers les services */
.services-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 86, 214, 0.1);
    color: var(--electric-blue);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 214, 0.2);
}

.service-link:hover {
    background: rgba(0, 86, 214, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 86, 214, 0.2);
    border-color: rgba(0, 86, 214, 0.3);
}

.service-link i {
    font-size: 1.1rem;
}

/* Boutons CTA multiples */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Responsive pour nouvelles sections */
@media (max-width: 768px) {
    .diagnostic-card {
        padding: 24px;
        margin-bottom: 24px;
    }

    .diagnostic-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .methodology-icon {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
    }

    .services-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .conclusion-content h2 {
        font-size: 1.8rem;
    }
}

.clean-steps {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

.clean-step {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.2s ease;
    position: relative;
}

.clean-step:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 86, 214, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.step-number-clean {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--electric-blue);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-title-clean {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-description-clean {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}

/* ============================================= */
/* SOLUTIONS - Grille épurée */
/* ============================================= */

.clean-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.clean-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.2s ease;
}

.clean-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 86, 214, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.clean-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 86, 214, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.clean-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.clean-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* ============================================= */
/* ASSISTANCE - Liste épurée */
/* ============================================= */

.clean-list {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

.clean-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.clean-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 86, 214, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.clean-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 86, 214, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.clean-item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.clean-item-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ============================================= */
/* FORMATIONS - Design amélioré */
/* ============================================= */

/* Parcours de formation */
.formation-path {
    background: rgba(248, 250, 252, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0 60px;
    text-align: center;
}

.path-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.path-header p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 32px;
}

.path-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 16px;
}

.path-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.path-number {
    width: 48px;
    height: 48px;
    background: var(--electric-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.path-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.path-content p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.path-connector {
    width: 40px;
    height: 2px;
    background: rgba(0, 86, 214, 0.3);
    flex-shrink: 0;
}

/* Formations améliorées */
.clean-formations {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

.enhanced-formation {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.enhanced-formation:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 86, 214, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.formation-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 86, 214, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.formation-content {
    flex: 1;
}

.formation-badge {
    background: var(--electric-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 12px;
}

.formation-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.formation-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

.formation-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #64748b;
}

.detail-icon {
    font-size: 0.9rem;
}

/* Section avantages */
.formation-benefits {
    background: rgba(248, 250, 252, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
    text-align: center;
}

.formation-benefits h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.benefit-icon {
    font-size: 1.2rem;
}

/* ============================================= */
/* CTA Section épurée */
/* ============================================= */

.clean-cta {
    text-align: center;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 40px 32px;
    margin: 60px auto 0;
    max-width: 600px;
}

.clean-cta h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.clean-cta p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* ============================================= */
/* Responsive simplifié */
/* ============================================= */

@media (max-width: 768px) {
    .clean-container {
        padding: 40px 16px;
    }

    .clean-header h2 {
        font-size: 2rem;
    }

    .clean-header p {
        font-size: 1rem;
    }

    .clean-grid {
        grid-template-columns: 1fr;
    }

    .clean-formations {
        grid-template-columns: 1fr;
    }

    .clean-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .clean-cta {
        padding: 32px 24px;
        margin: 40px auto 0;
    }

    /* Formations responsive */
    .formation-path {
        padding: 24px 20px;
    }

    .path-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .path-connector {
        width: 2px;
        height: 30px;
        background: rgba(0, 86, 214, 0.3);
    }

    .enhanced-formation {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .formation-details {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-item {
        justify-content: center;
    }
}

/* ============================================= */
/* ÉLÉMENTS SPÉCIALISÉS par page */
/* ============================================= */

/* DIAGNOSTIC - Étapes numérotées */
.step {
    margin-bottom: 25px;
    padding-left: 20px;
    position: relative;
}

.step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--electric-blue);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.steps-container {
    counter-reset: step-counter;
}

/* SOLUTIONS - Items avec bordure */
.solution-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    border-left: 4px solid var(--electric-blue);
}

.solution-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 8px;
}

.solution-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ASSISTANCE - Items support */
.support-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    border-left: 4px solid var(--vibrant-sky-blue);
}

.support-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 8px;
}

.support-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* FORMATIONS - Items formation */
.formation-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    border-left: 4px solid var(--vibrant-sky-blue);
}

.formation-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 8px;
}

.formation-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================= */
/* UTILITAIRES */
/* ============================================= */

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

/* ============================================= */
/* RESPONSIVE pour pages secondaires */
/* ============================================= */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .content-card {
        padding: 40px 30px;
    }
}

/* ============================================= */
/* INDICATEURS CIRCULAIRES - Deep Blue AI Style */
/* ============================================= */

.progress-indicators-section {
    padding: 60px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.progress-indicators-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.indicator-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.indicator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0056d6, #0099ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.indicator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 86, 214, 0.15);
    border-color: rgba(0, 86, 214, 0.3);
}

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

.circular-progress {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.progress-ring {
    width: 150px;
    height: 150px;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-ring__background {
    stroke: rgba(59, 130, 246, 0.1);
}

.progress-ring__progress {
    /* stroke: url(#gradient); */
    /* stroke: var(--electric-blue); */
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    animation: fillProgress 2s ease-out forwards;
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b82f6;
    font-family: 'Inter', sans-serif;
}

.indicator-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.indicator-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

/* Animation pour remplir progressivement */
@keyframes fillProgress {
    to {
        stroke-dashoffset: var(--progress-offset);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .indicators-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .progress-indicators-section h3 {
        font-size: 2rem;
    }
    
    .circular-progress {
        width: 120px;
        height: 120px;
    }
    
    .progress-ring {
        width: 120px;
        height: 120px;
    }
    
    .progress-percentage {
        font-size: 1.8rem;
    }
}


/* ============================================= */
/* MODULES - Blocs de formation horizontaux */
/* ============================================= */

.modules-container {
    margin: 60px 0;
}

.module-block {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.module-block:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.module-header {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 24px;
}

.module-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
}

.module-info {
    flex: 1;
}

.module-info h3 {
    margin: 0 0 16px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.module-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item svg {
    flex-shrink: 0;
}

.module-content {
    padding: 32px;
}

.module-description {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.module-keywords {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.keyword {
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #93c5fd;
}

.module-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #e2e8f0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.detail-value {
    color: #6b7280;
    font-size: 0.9rem;
    text-align: right;
    max-width: 60%;
}

.module-info-compact {
    margin: 20px 0;
}

.info-item {
    background: #e0e7ff;
    color: #3730a3;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #c7d2fe;
    white-space: nowrap;
}

.keyword-text {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 400;
    margin-right: 16px;
    display: inline-block;
}

.info-text {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 400;
    margin-right: 16px;
    display: inline-block;
}

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

.info-bullets li {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 8px;
    padding-left: 0;
    position: relative;
}

.info-bullets li:last-child {
    margin-bottom: 0;
}

.info-bullets li::before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: -16px;
}

.module-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border: 2px solid #3b82f6;
}

.btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ============================================= */
/* FORMATEURS - Carte d'identité */
/* ============================================= */

.formateurs-section {
    margin: 80px 0;
    padding: 60px 0;
}

.formateurs-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 50px;
}

.formateur-profile {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 40px;
    display: flex;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.formateur-photo {
    flex-shrink: 0;
}

.formateur-details {
    flex: 1;
}

.formateur-details h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.formateur-title {
    font-size: 1.2rem;
    color: #3b82f6;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.formateur-bio {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.formateur-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.expertise-tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

/* ============================================= */
/* MODULES MODERNES - Améliorations UX/UI */
/* ============================================= */

.modern-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Badges de niveau - Style discret */
.module-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.level-discrete {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

/* Section formateur dans chaque module */
.module-trainer {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.trainer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trainer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.trainer-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trainer-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.trainer-title {
    font-size: 0.85rem;
    color: #3b82f6;
    font-weight: 500;
}

/* Amélioration des informations de prix */
.pricing-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.price-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1d4ed8;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scheduling-info {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 12px;
    text-align: center;
}

/* Nouveau style pour tarifs détaillés */
.pricing-details {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-label {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.price-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1d4ed8;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    font-size: 0.8rem;
    color: #6b7280;
    font-style: italic;
    text-align: center;
    margin-bottom: 8px;
}

/* Nouveau design visuel pour les tarifs */
.pricing-visual {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.pricing-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.pricing-type svg {
    color: #3b82f6;
}

.pricing-amount {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.pricing-unit {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.pricing-minimum {
    font-size: 0.75rem;
    color: #9ca3af;
    font-style: italic;
    margin-top: 8px;
}

.pricing-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.scheduling-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.scheduling-badge svg {
    color: #3b82f6;
}

/* Style discret pour les tarifs */
.pricing-simple {
    background: rgba(248, 250, 252, 0.5);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.pricing-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.pricing-line:last-of-type {
    margin-bottom: 12px;
}

.price-label-simple {
    color: #6b7280;
    font-weight: 500;
}

.price-value-simple {
    color: #374151;
    font-weight: 600;
}

.scheduling-simple {
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

/* Style bullet points encadrés en bleu */
.pricing-bullets {
    list-style: none;
    padding: 16px;
    margin: 0;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
}

.pricing-bullets li {
    font-size: 0.9rem;
    color: #3b82f6;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
    font-weight: 500;
}

.pricing-bullets li:last-child {
    margin-bottom: 0;
}

.pricing-bullets li::before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.reservation-info {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 8px;
    font-style: italic;
}

/* Amélioration des boutons d'action */
.module-actions {
    margin-top: 24px;
    gap: 12px;
}

.btn {
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    position: relative;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::after {
    width: 100%;
}

.btn-outline:hover {
    color: white;
    border-color: #1d4ed8;
}

/* ============================================= */
/* RESPONSIVE */
/* ============================================= */

@media (max-width: 768px) {
    .module-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .module-meta {
        justify-content: center;
        gap: 16px;
    }

    .module-content {
        padding: 24px;
    }

    .module-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .formateur-profile {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .formateur-photo {
        align-self: center;
    }

    .formateur-expertise {
        justify-content: center;
    }

    .pricing-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .pricing-details {
        padding: 16px;
    }

    .price-row {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        margin-bottom: 12px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pricing-visual {
        padding: 20px;
    }

    .pricing-card {
        padding: 16px;
    }

    .pricing-amount {
        font-size: 1.5rem;
    }

    .pricing-simple {
        padding: 12px;
    }

    .pricing-line {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        font-size: 0.85rem;
    }

    .trainer-info {
        justify-content: center;
    }

    .clean-header.with-background {
        padding: 50px 32px;
        margin-bottom: 40px;
        border-radius: 60px;
        max-width: 95%;
    }
}

/* ============================================= */
/* SOLUTIONS CARDS - Style sobre et professionnel */
/* ============================================= */

.solutions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.solution-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.solution-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-info {
    flex: 1;
}

.solution-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.solution-info h3 {
    margin: 0 0 20px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.solution-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item svg {
    flex-shrink: 0;
}

.solution-content {
    padding: 24px 32px 32px;
}

.solution-description {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 24px;
}

.solution-features {
    margin-bottom: 32px;
}

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

.feature-list li {
    position: relative;
    padding: 8px 0 8px 24px;
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1rem;
}

.solution-actions {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-1px);
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.solution-card .solution-content,
.solution-card .solution-actions,
.solution-card .solution-actions .btn,
.solution-card .solution-actions a {
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .solutions-container {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 32px 0;
    }
    
    .solution-header {
        padding: 24px 24px 20px;
        gap: 16px;
    }
    
    .solution-icon {
        width: 56px;
        height: 56px;
    }
    
    .solution-info h3 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    
    .solution-content {
        padding: 20px 24px 24px;
    }
    
    .solution-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

.header-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.header-text {
    flex: 1;
    max-width: 50%;
}

.header-text h2 {
    color: #3b82f6;
    font-weight: 700;
    margin-bottom: 24px;
}

.header-text p {
    line-height: 1.8;
    font-size: 1.1rem;
}

.header-image {
    flex-shrink: 0;
    margin-top: 0;
}

.solutions-illustration {
    max-width: 450px;
    height: auto;
}

/* Responsive pour la mise en page côte à côte */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .header-image {
        margin-top: 0;
        text-align: center;
    }
    
    .solutions-illustration {
        max-width: 250px;
    }
}