/* --- 1. VARIABLES & TOKENS --- */
:root {
    /* Palette A11Y Modernisée */
    --primary: #4F46E5;        /* Indigo 600 */
    --primary-hover: #4338ca;
    --primary-light: #EEF2FF;
    
    --text-main: #0F172A;      /* Slate 900 */
    --text-muted: #64748B;     /* Slate 500 */
    --text-light: #CBD5E1;     /* Slate 300 */
    
    --bg-page: #F8FAFC;        /* Fond très clair */
    --bg-surface: #FFFFFF;     /* Blanc pur */
    --bg-dark: #0F172A;        /* Bleu nuit */
    
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, p, ul { margin: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Accessibilité */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static; width: auto; height: auto; margin: 0;
    overflow: visible; clip: auto; background: white; padding: 10px; z-index: 1000;
}

/* --- 3. COMPOSANTS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.5rem; font-weight: 600; border-radius: 8px;
    transition: all 0.2s ease; cursor: pointer; text-align: center;
    text-decoration: none !important; line-height: 1;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF !important;
    border: 1px solid var(--primary);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary { background-color: white; color: var(--text-main); border: 1px solid #E2E8F0; }
.btn-secondary:hover { background-color: #F1F5F9; border-color: #CBD5E1; }

.btn-white { background-color: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
.btn-white:hover { background-color: rgba(255,255,255,0.2); }

.btn-white-primary { background-color: white; color: var(--primary); }
.btn-white-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* --- 4. HEADER --- */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E2E8F0;
    position: sticky; top: 0; z-index: 100;
}

.header-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 80px; padding: 0 1.5rem;
}

/* Logo */
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img { height: 45px; width: auto; object-fit: contain; display: block; }

/* Menu Desktop */
.main-nav { flex-grow: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 2.5rem; align-items: center; margin: 0; padding: 0; }
/* Navigation & Accessibilité */
.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.2s;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
}

/* Barre sous le lien (cachée par défaut) */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease-out;
}

/* Survol : la barre apparaît */
.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { transform: scaleX(1); }

/* Page courante : barre fixe + couleur + gras */
.main-nav a[aria-current="page"] {
    color: var(--primary);
    font-weight: 700;
}
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    background-color: var(--primary);
}

/* Bouton Contact Desktop */
.header-cta { flex-shrink: 0; }

/* !IMPORTANT : On cache le bouton mobile par défaut sur Desktop */
.mobile-menu-toggle {
    display: none !important;
}

/* --- 5. HERO SECTION --- */
.hero-section {
    background-color: var(--bg-surface); padding: 5rem 0; position: relative; overflow: hidden;
}
.hero-section::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }

.hero-content h1 {
    font-size: 3.5rem; line-height: 1.1; font-weight: 800; color: var(--text-main);
    margin-bottom: 1.5rem; letter-spacing: -0.03em;
}
.text-gradient {
    /* Dégradé Indigo 600 vers Violet 700 - ratio > 4.5:1 sur blanc */
    background: linear-gradient(135deg, #4338CA 0%, #6D28D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #4338CA; /* Fallback */
}
.hero-lead { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 540px; }

/* Tags référentiels (Hero Audit) */
.standards-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem 0;
    padding: 0;
    list-style: none;
}
.std-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748B;
    background-color: white;
    border: 1px solid #E2E8F0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: 0.2s;
}
.std-tag:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-1px);
}
.hero-badge {
    display: inline-flex; align-items: center; background-color: #F1F5F9; padding: 6px 16px;
    border-radius: var(--radius-full); font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero-badge p { margin: 0; display: flex; align-items: center; }
.hero-badge span { margin-right: 8px; }
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { height: 450px; display: flex; align-items: center; justify-content: center; position: relative; }
.audit-card {
    background: white; border-radius: var(--radius-lg); width: 340px; padding: 2rem;
    box-shadow: var(--shadow-float); border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative; 
    animation: float 6s ease-in-out 1 forwards;
}
.stats-list { list-style: none; margin: 0; }
.stats-list .stat-item { list-style: none; }
.card-header { display: flex; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #F1F5F9; }
.card-title { font-weight: 700; }
.card-subtitle { font-size: 0.85rem; color: var(--text-muted); }
.score-circle {
    width: 55px; height: 55px; border-radius: 50%; border: 4px solid #10B981;
    color: #10B981; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.check-item { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; color: var(--text-muted); }
.check-icon { color: #10B981; flex-shrink: 0; }
.floating-badge {
    position: absolute; bottom: 40px; left: -20px; 
    background: #0F172A; color: white;
    padding: 0.75rem 1.25rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    font-weight: 600; display: flex; align-items: center; gap: 10px;
    animation: float 7s ease-in-out 1 reverse forwards;
}
.status-dot { width: 10px; height: 10px; background: #4ADE80; border-radius: 50%; }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
.animation-stopped {
    animation: none !important;
    transform: translateY(0px) !important; /* Remet l'élément à sa place d'origine */
    transition: transform 1s ease; /* Transition douce pour l'arrêt */
}

/* --- 6. LOGOS --- */
.logos-section { background: white; padding: 3rem 0; border-bottom: 1px solid #F1F5F9; text-align: center; }
.section-label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 2rem; font-weight: 500; }
.logos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem; align-items: center; }
.client-logo { max-height: 40px; width: auto; filter: grayscale(100%); opacity: 0.5; transition: 0.3s; }
.client-logo:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
.link-simple { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.link-simple:hover { text-decoration: underline; }

/* --- 7. SERVICES & GRIDS --- */
.section-padding { padding: 5rem 0; }
.bg-grey { background-color: #F8FAFC; }
.section-intro { max-width: 600px; margin-bottom: 3rem; }
.section-intro h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-main); }
.pill-label { background: var(--primary-light); color: var(--primary); padding: 4px 12px; border-radius: 99px; font-size: 0.8rem; font-weight: 600; margin: 0 0 1rem 0; display: inline-block; }

.cards-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.feature-card {
    background: white; padding: 2rem; border-radius: var(--radius-lg);
    border: 1px solid #E2E8F0; box-shadow: var(--shadow-sm); transition: 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.icon-box { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.icon-box.blue { background: #EEF2FF; color: #4F46E5; }
.icon-box.purple { background: #F3E8FF; color: #9333EA; }
.icon-box.green { background: #ECFDF5; color: #10B981; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

.services-nav { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.nav-link {
    display: flex; align-items: center; justify-content: space-between;
    background: white; padding: 1.25rem; border: 1px solid #E2E8F0; border-radius: var(--radius-md);
    font-weight: 600; color: var(--text-main); transition: 0.2s; box-shadow: var(--shadow-sm);
}
.nav-link:hover { border-color: var(--primary); box-shadow: var(--shadow-md); color: var(--primary); transform: translateY(-2px); }
.nav-link .arrow { color: #CBD5E1; transition: 0.2s; }
.nav-link:hover .arrow { color: var(--primary); transform: translateX(4px); }

/* --- 8. FORMATIONS (Dark Mode) --- */
.feature-case-section { background-color: var(--bg-dark); padding: 5rem 0; color: white; }
.text-white { color: white !important; }
.text-light { color: #94A3B8; }
.section-header-center { text-align: center; max-width: 700px; margin: 0 auto 4rem auto; }
.badge-pill { background: rgba(255,255,255,0.1); padding: 6px 12px; border-radius: 99px; font-size: 0.8rem; margin: 0 0 1rem 0; display: inline-block; }

.formation-card {
    background: rgba(255,255,255,0.05); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; align-items: flex-start;
}
.formation-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.formation-card .duration {
    /* Contraste A11Y corrigé */
    background-color: #38BDF8; /* Sky 400 */
    color: #0F172A; /* Slate 900 */
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 0 1rem 0;
    font-weight: 700;
    display: inline-block;
}
.formation-card p { margin-bottom: 2rem; flex-grow: 1; }
.highlight-border { border-color: #3B82F6; background: rgba(59, 130, 246, 0.1); }

/* --- 9. ARTICLES --- */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.article-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid #E2E8F0; transition: 0.2s; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-link-wrapper { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.article-image { width: 100%; height: 200px; object-fit: cover; }
.card-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-meta { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 0.5rem 0; }
.card-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.4; color: var(--text-main); }
.card-content p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; flex-grow: 1; }
.read-more { font-weight: 600; color: var(--primary); font-size: 0.9rem; margin-top: auto; }
.center-btn-wrapper { text-align: center; }

/* --- 10. FOOTER --- */
.final-cta-section { background: white; padding: 4rem 0; border-top: 1px solid #F1F5F9; }
.cta-container {
    background: linear-gradient(135deg, var(--primary) 0%, #4338CA 100%);
    border-radius: 24px; padding: 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; color: white;
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.3);
}
.cta-content h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.cta-content p { color: #E0E7FF; font-size: 1.1rem; }

.site-footer { background-color: var(--bg-dark); color: #94A3B8; padding-top: 4rem; padding-bottom: 2rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo .logo-text { color: white; font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; }
.footer-desc { margin: 1rem 0; max-width: 300px; }
.footer-col h4, .footer-col .footer-title { color: white; margin-bottom: 1rem; font-size: 1rem; font-weight: 600; }
.footer-logo h2.logo-text { margin: 0; font-size: 1.5rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a:hover { color: white; text-decoration: underline; }

/* Liste contact footer */
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0 0; }
.contact-list li { margin-bottom: 0.75rem; }
.contact-list a { display: flex; align-items: center; gap: 12px; color: #CBD5E1; text-decoration: none; font-size: 0.95rem; transition: color 0.2s ease; }
.contact-list a:hover { color: white; }
.contact-icon { width: 20px !important; height: 20px !important; color: var(--primary); flex-shrink: 0; }

/* Contact sidebar (page contact) */
.contact-name { font-weight: 700; font-size: 1.1rem; color: white; margin: 0; }
.contact-role { color: #94A3B8; font-size: 0.9rem; margin: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; }

/* --- 11. RESPONSIVE (SECTION UNIQUE ET PROPRE) --- */
@media (max-width: 990px) {
    /* 1. On affiche le bouton Burger */
    .mobile-menu-toggle {
        display: block !important;
        background: none; border: none; cursor: pointer; color: var(--text-main); padding: 0.5rem;
    }

    /* 2. On cache le menu et le bouton Desktop par défaut */
    .main-nav, .header-cta {
        display: none;
    }

    /* 3. Style du menu quand il est ouvert (classe ajoutée par JS) */
    .main-nav.is-open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 1px solid #E2E8F0;
        box-shadow: var(--shadow-lg);
        z-index: 200;
    }

    .main-nav.is-open ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-nav.is-open li {
        width: 100%;
    }

    .main-nav.is-open a {
        display: block;
        padding: 1rem 2rem;
        text-align: center;
        border-bottom: 1px solid #F1F5F9;
    }
    
    /* Bouton Contact dans le menu mobile */
    .header-cta-mobile { display: block !important; }

    /* Ajustements généraux mobile */
    .hero-grid, .cta-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; } /* On cache l'animation lourde sur mobile */
    .cta-group { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-col { align-items: center; display: flex; flex-direction: column; }
}

/* PAGE AUDIT-ACCESSIBILITE */
        /* --- AMBIANCE GÉNÉRALE --- */
        /* Ajout du "Glow" en arrière-plan pour casser le blanc */
        body::before {
            content: ''; position: fixed; top: -20%; right: -10%; width: 800px; height: 800px;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
            pointer-events: none; z-index: -1;
        }

        /* --- BENTO GRID (AMÉLIORÉE) --- */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .bento-card {
            background: rgba(255, 255, 255, 0.8); /* Légère transparence */
            backdrop-filter: blur(10px); /* Effet verre */
            border: 1px solid #E2E8F0; 
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem; 
            transition: all 0.3s ease; 
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        /* Effet de survol : la carte remonte et l'ombre grandit */
        .bento-card:hover { 
            border-color: var(--primary-light); 
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); 
            transform: translateY(-5px); 
        }

        /* NUMÉROS "MAGIQUES" (Gradient) */
        .bento-number { 
            font-size: 5rem; 
            font-weight: 900; 
            line-height: 1; 
            margin-bottom: 0.5rem; 
            font-family: 'Inter', sans-serif; 
            
            /* Le dégradé sur le texte */
            background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0.8;
            transition: 0.3s;
        }
        
        /* Au survol, le numéro s'allume en couleur primaire */
        .bento-card:hover .bento-number {
            background: linear-gradient(135deg, var(--primary) 0%, #818CF8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 1;
        }

        .bento-card h3 { 
            font-size: 1.25rem; 
            margin-bottom: 1rem; 
            color: var(--text-main); 
            font-weight: 700;
        }
        
        /* --- TIMELINE (DYNAMISÉE) --- */
        .timeline-section { position: relative; padding: 2rem 0; }
        
        .timeline-item {
            display: grid; grid-template-columns: 80px 1fr; gap: 2rem; margin-bottom: 4rem; position: relative;
        }
        .timeline-item:last-child { margin-bottom: 0; }
        
        /* La ligne verticale connectrice */
        .timeline-item::before {
            content: ''; position: absolute; left: 39px; top: 80px; bottom: -80px;
            width: 2px; 
            background: linear-gradient(to bottom, var(--primary) 0%, #E2E8F0 100%); /* Dégradé sur la ligne */
            z-index: 0;
        }
        .timeline-item:last-child::before { display: none; }
        
        /* Le rond avec le chiffre */
        .timeline-marker {
            width: 80px; height: 80px; 
            background: white; 
            border: 2px solid var(--primary-light);
            border-radius: 50%; 
            color: var(--primary); 
            font-weight: 800; font-size: 1.75rem;
            display: flex; align-items: center; justify-content: center; 
            z-index: 1; position: relative;
            box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.1);
            transition: 0.3s;
        }
        
        /* Effet hover sur l'étape */
        .timeline-item:hover .timeline-marker {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: scale(1.1);
        }
        
        .timeline-content { 
            background: white; padding: 2.5rem; border-radius: var(--radius-lg); 
            border: 1px solid #E2E8F0; 
            box-shadow: var(--shadow-sm); 
        }
        
        .timeline-content h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-main); }
        
        /* Types de rapports (Step 2) */
        .report-types-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem;
        }
        .report-card { 
            background: #F8FAFC; padding: 1.5rem; border-radius: 12px; border: 1px solid #E2E8F0; transition:0.2s;
        }
        .report-card:hover { background: white; border-color: var(--primary-light); box-shadow: var(--shadow-md); }
        .report-card h4 { color: var(--text-main); margin-bottom: 0.5rem; font-size: 1.1rem; font-weight:700; }
        .report-card p { font-size: 0.9rem; color: var(--text-muted); }

        /* Responsive */
        @media (max-width: 768px) {
            .timeline-item { grid-template-columns: 1fr; gap: 1rem; }
            .timeline-marker { width: 60px; height: 60px; font-size: 1.25rem; margin-bottom: 0.5rem; }
            .timeline-item::before { left: 29px; top: 60px; }
            .bento-number { font-size: 3.5rem; }
        }





        /* PAGE DEVELOPPEMENT */
        
 /* --- TÉMOIGNAGE STYLE PREMIUM --- */
        .testimonial-section {
            background-color: #0F172A; /* Bleu Nuit */
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        /* Fond subtil dégradé pour casser le plat */
        .testimonial-section::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 10% 90%, rgba(79, 70, 229, 0.15) 0%, transparent 40%);
            pointer-events: none;
        }

        .testimonial-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px; /* Texte à gauche, Image à droite */
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* L'immense guillemet en arrière-plan */
        .quote-icon-bg {
            position: absolute;
            top: -40px;
            left: -40px;
            color: rgba(255, 255, 255, 0.05); /* Très discret */
            z-index: -1;
            transform: scale(1.5);
        }

        .testimonial-content blockquote {
            font-size: 1.5rem; /* Plus gros pour l'impact */
            line-height: 1.5;
            font-weight: 500;
            color: #FFFF;
            margin: 0 0 2rem 0;
            font-family: 'Inter', sans-serif;
            border-left: 4px solid var(--primary); /* Ligne bleue à gauche */
            padding-left: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            padding-left: 2rem; /* Aligné avec le texte */
        }

        .author-info p {
            margin: 0;
        }

        .author-info p strong,
        .author-info strong {
            display: block;
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
        }

        .author-info p:last-child,
        .author-info span {
            color: #94A3B8; /* Slate 400 */
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Gestion de l'image avec effet de lueur */
        .testimonial-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .image-glow {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 180px; height: 180px;
            background: var(--primary);
            filter: blur(50px); /* Le flou lumineux derrière */
            opacity: 0.4;
            border-radius: 50%;
            z-index: 0;
        }

        .author-img {
            width: 180px; height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .testimonial-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            .testimonial-content blockquote {
                font-size: 1.25rem;
                padding-left: 0;
                border-left: none; /* On retire la ligne sur mobile */
                border-top: 4px solid var(--primary); /* On la met en haut */
                padding-top: 2rem;
            }
            .testimonial-author { padding-left: 0; justify-content: center; }
            .quote-icon-bg { left: 50%; transform: translateX(-50%); top: -20px; }
            /* On inverse l'ordre pour mettre l'image au dessus du texte sur mobile */
            .testimonial-image-wrapper { order: -1; }
        }


        /* --- PAGE FORMATION --- */
        
        /* Ambiance */
        body::before {
            content: ''; position: fixed; top: -20%; right: -10%; width: 800px; height: 800px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0) 70%); /* Lueur verte légère pour changer du bleu */
            pointer-events: none; z-index: -1;
        }

        /* Cartes "Cas d'usage" (Personas) */
        .persona-card {
            background: white;
            border: 1px solid #E2E8F0;
            border-radius: var(--radius-lg);
            padding: 2rem;
            transition: 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .persona-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }
        .persona-header {
            border-bottom: 1px solid #F1F5F9;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        .persona-badge {
            background: #F1F5F9; color: var(--text-muted);
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
            padding: 4px 10px; border-radius: 4px; display: inline-block; margin: 0 0 0.5rem 0;
        }
        .persona-title { font-size: 1.25rem; font-weight: 700; color: var(--text-main); line-height: 1.4; }
        
        .persona-detail { margin-bottom: 1rem; font-size: 0.95rem; color: var(--text-muted); }
        .persona-detail h4, .persona-solution h4 { color: var(--text-main); margin: 0 0 0.25rem 0; font-size: 0.95rem; font-weight: 600; }
        .persona-detail p, .persona-solution p { margin: 0; }
        .persona-detail strong { color: var(--text-main); display: block; margin-bottom: 0.25rem; font-weight: 600; }
        .persona-solution { 
            margin-top: auto; 
            background: #F8FAFC; 
            padding: 1rem; 
            border-radius: 8px; 
            border-left: 3px solid #10B981; /* Touche verte pour la "Solution" */
            font-size: 0.9rem;
        }

        /* Cartes Catalogue (Fin de page) */
        .catalog-card {
            background: #0F172A; /* Dark mode */
            color: white;
            padding: 2rem;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: 0.3s;
        }
        .catalog-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
        .catalog-icon { 
            width: 60px; height: 60px; background: rgba(255,255,255,0.1); 
            border-radius: 50%; display: flex; align-items: center; justify-content: center; 
            margin: 0 auto 1.5rem auto; font-size: 1.5rem;
        }

        /* Témoignage Style Premium (Copié de l'accompagnement) */
        .testimonial-section { background-color: #0F172A; padding: 6rem 0; position: relative; overflow: hidden; }
        .testimonial-section::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 10% 90%, rgba(79, 70, 229, 0.15) 0%, transparent 40%); pointer-events: none; }
        .testimonial-wrapper { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: center; position: relative; z-index: 1; }
        .quote-icon-bg { position: absolute; top: -40px; left: -40px; color: rgba(255, 255, 255, 0.05); z-index: -1; transform: scale(1.5); }
        .testimonial-content blockquote { font-size: 1.5rem; line-height: 1.5; font-weight: 500; color: #FFFF; margin: 0 0 2rem 0; font-family: 'Inter', sans-serif; border-left: 4px solid var(--primary); padding-left: 2rem; }
        .testimonial-author { display: flex; align-items: center; padding-left: 2rem; }
        .author-info p { margin: 0; }
        .author-info p strong, .author-info strong { display: block; color: white; font-size: 1.1rem; margin-bottom: 0.2rem; }
        .author-info p:last-child, .author-info span { color: #94A3B8; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
        .testimonial-image-wrapper { position: relative; display: flex; justify-content: center; }
        .image-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 180px; height: 180px; background: var(--primary); filter: blur(50px); opacity: 0.4; border-radius: 50%; z-index: 0; }
        .author-img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(255, 255, 255, 0.1); position: relative; z-index: 1; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
        @media (max-width: 900px) {
            .testimonial-wrapper { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
            .testimonial-content blockquote { font-size: 1.25rem; padding-left: 0; border-left: none; border-top: 4px solid var(--primary); padding-top: 2rem; }
            .testimonial-author { padding-left: 0; justify-content: center; }
            .quote-icon-bg { left: 50%; transform: translateX(-50%); top: -20px; }
            .testimonial-image-wrapper { order: -1; }
        }


        /* --- PAGE ÉQUIPE --- */
        
        /* TIMELINE HORIZONTALE (Processus) */
        .process-timeline {
            display: flex; justify-content: space-between; position: relative; margin: 4rem 0;
            list-style: none; padding: 0;
            max-width: 900px; margin-left: auto; margin-right: auto;
        }
        /* La ligne grise derrière */
        .process-timeline::before {
            content: ''; position: absolute; top: 20px; left: 0; right: 0; height: 2px; background: #E2E8F0; z-index: 0;
        }
        .process-step {
            position: relative; z-index: 1; text-align: center; width: 100px;
        }
        .step-circle {
            width: 40px; height: 40px; background: white; border: 2px solid var(--primary); border-radius: 50%;
            margin: 0 auto 1rem auto; display: flex; align-items: center; justify-content: center;
            font-weight: 700; color: var(--primary); box-shadow: 0 0 0 8px white; /* Marge blanche autour */
        }
        .step-label { font-weight: 600; font-size: 0.9rem; color: var(--text-main); }

        /* CARTES ÉQUIPE (Profile Cards) */
        .team-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem;
        }
        .profile-card {
            background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); overflow: hidden;
            transition: 0.3s; display: flex; flex-direction: column;
        }
        .profile-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
        
        .profile-header {
            background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%); padding: 2rem; text-align: center;
        }
        .profile-img {
            width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem auto;
            border: 4px solid white; box-shadow: var(--shadow-md);
        }
        .profile-name { font-size: 1.25rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.25rem; }
        .profile-role { font-size: 0.9rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
        
        .profile-body { padding: 2rem; font-size: 0.95rem; color: var(--text-muted); flex-grow: 1; }
        .certifications-list { list-style: none; padding: 0; margin: 1rem 0 0 0; }
        .certifications-list li { margin-bottom: 0.25rem; }
        .profile-footer { 
            padding: 1rem 2rem; border-top: 1px solid #F1F5F9; background: #FAFAFA; text-align: right; 
        }
        .linkedin-link {
            display: inline-flex; align-items: center; gap: 6px; color: #0077B5; font-weight: 600; font-size: 0.9rem;
        }
        .linkedin-link:hover { text-decoration: underline; }

        /* Responsive */
        @media (max-width: 768px) {
            .process-timeline { flex-direction: column; gap: 2rem; align-items: flex-start; padding-left: 20px; }
            .process-timeline::before { width: 2px; height: 100%; top: 0; left: 39px; }
            .process-step { display: flex; align-items: center; width: auto; gap: 1rem; text-align: left; }
            .step-circle { margin: 0; }
        }

        /* --- PAGE CONTACT --- */
        
        /* Layout : Formulaire à gauche / Info à droite */
        .contact-layout {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Style du Formulaire */
        .contact-form-card {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid #E2E8F0;
            box-shadow: var(--shadow-sm);
        }

        .form-group { margin-bottom: 1.5rem; }
        
        .form-label {
            display: block;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #CBD5E1;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--text-main);
            background-color: #F8FAFC;
            transition: 0.2s;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-light);
            background-color: white;
        }

        .form-textarea { resize: vertical; min-height: 150px; }

        .form-legal {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 1.5rem;
            line-height: 1.5;
        }
        .form-required-notice {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
            margin: 0 0 1.5rem 0;
        }
        .form-error {
            font-size: 0.85rem;
            color: #DC2626;
            margin: 0.25rem 0 0 0;
        }
        .form-input.is-invalid, .form-textarea.is-invalid {
            border-color: #DC2626;
        }
        .alert {
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        .alert-error {
            background-color: #FEF2F2;
            border: 1px solid #FECACA;
            color: #991B1B;
        }

        /* Style de la Carte Contact (Sidebar) */
        .contact-sidebar-card {
            background: #0F172A; /* Dark Mode pour le contraste */
            color: white;
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            position: sticky;
            top: 120px; /* Reste visible au scroll */
        }

        .contact-sidebar-card h2 { font-size: 1.5rem; margin-bottom: 2rem; color: white; }

        .contact-person {
            display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
        }
        .contact-avatar {
            width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
            border: 2px solid var(--primary);
        }
        
        .contact-links { list-style: none; padding: 0; margin: 0 0 2rem 0; }
        .contact-links li { margin-bottom: 1rem; }
        .contact-links a {
            display: flex; align-items: center; gap: 12px;
            color: #E2E8F0; font-weight: 500; transition: 0.2s;
        }
        .contact-links a:hover { color: var(--primary-light); transform: translateX(5px); }
        
        .contact-address {
            font-style: normal;
            color: #94A3B8;
            font-size: 0.95rem;
            line-height: 1.6;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
        }

        /* Alertes PHP (Succès/Erreur) */
        .alert { padding: 1rem; border-radius: 8px; margin-bottom: 2rem; font-weight: 500; }
        .alert-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
        .alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }

        /* Info box (mentions légales) */
        .info-box-purple { background: #F3E8FF; color: #6B21A8; padding: 1rem; border-radius: 8px; font-size: 0.9rem; margin-top: 1rem; }
        .info-box-purple h3 { font-size: 0.9rem; font-weight: 700; margin: 0 0 0.5rem 0; color: inherit; }
        .info-box-purple p { margin: 0; }
        .info-box-purple a { text-decoration: underline; color: inherit; }

        @media (max-width: 900px) {
            .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
            .contact-sidebar-card { position: static; order: -1; /* On met les infos avant le formulaire sur mobile */ }
        }


        /* --- CONFIRMATION-CONTACT--- */
        
        .success-box {
            background: #F0FDF4; /* Vert très pâle */
            border: 1px solid #BBF7D0;
            border-radius: var(--radius-lg);
            padding: 3rem;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem auto;
            position: relative;
            overflow: hidden;
        }

        .success-icon-wrapper {
            width: 80px; height: 80px;
            background: #22C55E; /* Vert vif */
            color: white;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.5rem auto;
            box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
            animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes popIn {
            0% { transform: scale(0); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .success-title { font-size: 2rem; font-weight: 800; color: #14532D; margin-bottom: 1rem; }
        .success-message { font-size: 1.1rem; color: #166534; line-height: 1.6; }

        /* Grille "En attendant" */
        .next-steps-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
        }
        
        /* On réutilise le style .feature-card du CSS principal mais on l'ajuste un peu */
        .resource-card {
            background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 2rem;
            transition: 0.2s; display: flex; flex-direction: column; align-items: flex-start;
            text-decoration: none; color: inherit;
        }
        .resource-card:hover { 
            border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); 
        }
        .resource-icon { 
            width: 48px; height: 48px; background: #F1F5F9; border-radius: 12px; 
            display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; 
            color: var(--text-main); transition:0.2s;
        }
        .resource-card:hover .resource-icon { background: var(--primary); color: white; }
        
        .resource-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
        .resource-card p { font-size: 0.9rem; color: var(--text-muted); flex-grow: 1; margin-bottom: 1.5rem; }
        
        .card-link-text { font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
        .resource-card:hover .card-link-text { text-decoration: underline; }

        /* --- ARTICLES-ACCESSIBILITE --- */

        /* Article "À la une" (Featured) */
        .featured-article {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 3rem;
            background: white;
            border: 1px solid #E2E8F0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 4rem;
            box-shadow: var(--shadow-md);
            transition: 0.3s;
        }
        .featured-article:hover {
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
            transform: translateY(-2px);
        }
        .featured-img-wrapper {
            height: 100%;
            min-height: 400px;
        }
        .featured-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .featured-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .featured-tag {
            display: inline-block;
            background: #EEF2FF;
            color: var(--primary);
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 4px 10px;
            border-radius: 4px;
            margin: 0 0 1rem 0;
            width: fit-content;
        }
        .featured-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .featured-excerpt {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* Grille des articles standards (déjà présente dans style.css mais rappel) */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        @media (max-width: 900px) {
            .featured-article { grid-template-columns: 1fr; }
            .featured-img-wrapper { min-height: 250px; }
            .featured-content { padding: 2rem; }
            .featured-title { font-size: 1.5rem; }
        }


        /* --- -PLAN-SITE --- */
        
        /* Grille des colonnes */
        .sitemap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        /* Carte Blanche pour chaque colonne */
        .sitemap-card {
            background: white;
            border: 1px solid #E2E8F0;
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-sm);
            transition: 0.3s;
            height: 100%;
        }

        .sitemap-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        /* Titre de colonne */
        .sitemap-column-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary); /* Titre en bleu pour structurer */
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #F1F5F9;
        }

        /* Listes */
        .sitemap-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sitemap-list > li {
            margin-bottom: 0.75rem;
        }

        /* Liens principaux */
        .sitemap-list > li > a {
            font-weight: 600;
            color: var(--text-main);
            display: inline-block;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .sitemap-list > li > a:hover {
            color: var(--primary);
            transform: translateX(5px); /* Petit mouvement au survol */
        }

        /* Sous-listes */
        .sitemap-sublist {
            list-style: none;
            padding-left: 1.5rem;
            margin-top: 0.75rem;
            margin-bottom: 1.5rem;
            border-left: 2px solid #E2E8F0; /* Ligne verticale guide */
        }

        .sitemap-sublist li {
            margin-bottom: 0.5rem;
        }

        .sitemap-sublist a {
            font-size: 0.95rem;
            color: var(--text-muted);
            transition: 0.2s;
        }

        .sitemap-sublist a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
  

        /* SPECIFICATIONS-ACCESSIBILITE */
        .spec-card {
            background: #1E293B; /* Fond code sombre */
            border-radius: 12px;
            padding: 1.5rem;
            width: 320px;
            box-shadow: var(--shadow-float);
            position: relative;
            animation: float 6s ease-in-out infinite;
            border: 1px solid #334155;
        }
        .code-line {
            height: 8px;
            border-radius: 4px;
            margin-bottom: 12px;
            background: #334155;
            width: 100%;
        }
        .code-line.short { width: 60%; }
        .code-line.medium { width: 80%; }
        .code-highlight { background: #38BDF8; width: 40%; } /* Bleu clair */
        
        .spec-badge {
            position: absolute; bottom: 20px; right: -20px;
            background: white; color: var(--text-main);
            padding: 0.5rem 1rem; border-radius: 8px; font-weight: 700; font-size: 0.9rem;
            box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 8px;
            animation: float 7s ease-in-out 1 reverse forwards;
        }

        /* Bento Grid personnalisée pour cette page */
        .bento-grid-specs {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 colonnes par défaut */
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .bento-item {
            background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 2rem;
            transition: 0.3s;
        }
        .bento-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
        .bento-item h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-main); display: flex; align-items: center; gap: 10px; }
        
        /* Liste à puces stylisée */
        .custom-list { list-style: none; padding: 0; margin: 0; }
        .custom-list li {
            position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: var(--text-muted);
        }
        .custom-list li::before {
            content: '•'; color: var(--primary); font-weight: bold; font-size: 1.5rem;
            position: absolute; left: 0; top: -5px;
        }

        @media (max-width: 768px) {
            .bento-grid-specs { grid-template-columns: 1fr; }
        }
  

        /* ACCESSIBILITE-MAQUETTES-UX-UI */
        .maquette-visual-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 2rem;
            width: 340px;
            box-shadow: var(--shadow-float);
            position: relative;
            animation: float 6s ease-in-out infinite;
            border: 1px solid rgba(226, 232, 240, 0.8);
        }
        .maquette-header {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #F1F5F9;
        }
        .maquette-title-card { font-weight: 700; color: var(--text-main); }
        .maquette-status {
            background: #EEF2FF; color: var(--primary);
            padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 600;
        }
        .color-palette { display: flex; gap: 8px; margin-top: 1rem; }
        .color-swatch { width: 30px; height: 30px; border-radius: 4px; border: 1px solid #E2E8F0; }
        .color-swatch.primary { background: var(--primary); }
        .color-swatch.secondary { background: #9333EA; }
        .color-swatch.accent { background: #10B981; }

        .form-element {
            background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px;
            height: 40px; margin-bottom: 10px; width: 100%;
        }
        .form-element.small { width: 60%; }

        .contrast-check {
            position: absolute; bottom: 20px; left: -20px;
            background: #0F172A; color: white;
            padding: 0.75rem 1.25rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
            font-weight: 600; display: flex; align-items: center; gap: 8px;
            animation: float 7s ease-in-out 1 reverse forwards;
        }
        .contrast-dot { width: 10px; height: 10px; background: #4ADE80; border-radius: 50%; }

        /* Grille d'arguments (Réutilise .bento-grid-specs du CSS de la page Spécifications) */
        .bento-grid-specs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .bento-item {
            background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 2rem;
            transition: 0.3s;
        }
        .bento-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
        .bento-item h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-main); display: flex; align-items: center; gap: 10px; }
        
        /* Liste à puces stylisée */
        .custom-list { list-style: none; padding: 0; margin: 0; }
        .custom-list li {
            position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: var(--text-muted);
        }
        .custom-list li::before {
            content: '•'; color: var(--primary); font-weight: bold; font-size: 1.5rem;
            position: absolute; left: 0; top: -5px;
        }

        /* Cartes "Persona" pour les cas d'usage (Réutilise le style de la page Formations) */
        .persona-card {
            background: white;
            border: 1px solid #E2E8F0;
            border-radius: var(--radius-lg);
            padding: 2rem;
            transition: 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .persona-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }
        .persona-header {
            border-bottom: 1px solid #F1F5F9;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        .persona-badge {
            background: #F1F5F9; color: var(--text-muted);
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
            padding: 4px 10px; border-radius: 4px; display: inline-block; margin: 0 0 0.5rem 0;
        }
        .persona-title { font-size: 1.25rem; font-weight: 700; color: var(--text-main); line-height: 1.4; }
        .persona-detail { margin-bottom: 1rem; font-size: 0.95rem; color: var(--text-muted); }
        .persona-detail h4, .persona-solution h4 { color: var(--text-main); margin: 0 0 0.25rem 0; font-size: 0.95rem; font-weight: 600; }
        .persona-detail p, .persona-solution p { margin: 0; }
        .persona-detail strong { color: var(--text-main); display: block; margin-bottom: 0.25rem; font-weight: 600; }
        .persona-solution { 
            margin-top: auto; 
            background: #F8FAFC; 
            padding: 1rem; 
            border-radius: 8px; 
            border-left: 3px solid #F59E0B; /* Orange pour le côté "Design/UI" */
            font-size: 0.9rem;
        }
        .cards-grid-2 { display:grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap:2rem;} /* Responsive grid for personas */

        @media (max-width: 768px) {
            .bento-grid-specs, .cards-grid-2 { grid-template-columns: 1fr; }
        }


 
        /* ACCOMPAGNEMENT-AUDITEUR-ACCESSIBILITE */
        .review-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 2rem;
            width: 340px;
            box-shadow: var(--shadow-float);
            position: relative;
            animation: float 6s ease-in-out infinite;
            border: 1px solid rgba(226, 232, 240, 0.8);
        }
        .review-header {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #F1F5F9;
        }
        .review-title { font-weight: 700; color: var(--text-main); }
        .review-badge {
            background: #F0FDF4; color: #166534;
            padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 600;
        }
        
        .comment-bubble {
            background: #FEF2F2; border-left: 3px solid #EF4444;
            padding: 0.75rem; border-radius: 4px; margin-bottom: 10px; font-size: 0.85rem; color: #7F1D1D;
        }
        .comment-bubble.valid {
            background: #F0FDF4; border-left: 3px solid #10B981; color: #064E3B;
        }

        .expert-stamp {
            position: absolute; bottom: -15px; right: -15px;
            width: 60px; height: 60px; background: var(--primary);
            border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 10px 20px rgba(79, 70, 229, 0.4);
            font-size: 1.5rem; animation: float 7s ease-in-out 1 reverse forwards;
        }

        /* Grille d'arguments (Bento) */
        .bento-grid-review {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem;
        }
        .bento-item {
            background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 2rem;
            transition: 0.3s;
        }
        .bento-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
        .bento-item h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-main); display: flex; align-items: center; gap: 10px; }
        
        /* Liste style */
        .custom-list { list-style: none; padding: 0; margin: 0; }
        .custom-list li {
            position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: var(--text-muted);
        }
        .custom-list li::before {
            content: '✓'; color: #10B981; font-weight: bold; position: absolute; left: 0;
        }

        /* Personas Grid (identique aux autres pages) */
        .persona-card {
            background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 2rem;
            transition: 0.3s; height: 100%; display: flex; flex-direction: column;
        }
        .persona-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
        .persona-header { border-bottom: 1px solid #F1F5F9; padding-bottom: 1rem; margin-bottom: 1.5rem; }
        .persona-badge {
            background: #F1F5F9; color: var(--text-muted);
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
            padding: 4px 10px; border-radius: 4px; display: inline-block; margin: 0 0 0.5rem 0;
        }
        .persona-title { font-size: 1.25rem; font-weight: 700; color: var(--text-main); line-height: 1.4; }
        .persona-detail { margin-bottom: 1rem; font-size: 0.95rem; color: var(--text-muted); }
        .persona-detail h4, .persona-solution h4 { color: var(--text-main); margin: 0 0 0.25rem 0; font-size: 0.95rem; font-weight: 600; }
        .persona-detail p, .persona-solution p { margin: 0; }
        .persona-solution { 
            margin-top: auto; background: #F8FAFC; padding: 1rem; border-radius: 8px; 
            border-left: 3px solid var(--primary); font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .bento-grid-review { grid-template-columns: 1fr; }
        }
 

        /* DECLARATION-ACCESSIBILITE */
        .doc-card {
            background: white; border-radius: 4px; /* Coins peu arrondis pour faire "papier" */
            width: 280px; height: 360px; padding: 2rem; position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 1px solid #E2E8F0;
            animation: float 8s ease-in-out infinite;
        }
        .doc-header { border-bottom: 2px solid var(--text-main); padding-bottom: 1rem; margin-bottom: 1.5rem; }
        .doc-lines { display: flex; flex-direction: column; gap: 10px; }
        .doc-line { height: 6px; background: #F1F5F9; width: 100%; border-radius: 2px; }
        .doc-line.short { width: 60%; }
        .doc-stamp {
            position: absolute; bottom: 20px; right: 20px;
            width: 80px; height: 80px; border: 3px solid #10B981; border-radius: 50%;
            color: #10B981; font-weight: 700; display: flex; align-items: center; justify-content: center;
            transform: rotate(-15deg); opacity: 0.8; font-size: 0.9rem; text-transform: uppercase;
        }

        /* Bento Grid Déclaration */
        .bento-grid-legal {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem;
        }
        .bento-item {
            background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 2rem;
            transition: 0.3s;
        }
        .bento-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
        .bento-item h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-main); display: flex; align-items: center; gap: 10px; }
        
        /* Liste style */
        .custom-list { list-style: none; padding: 0; margin: 0; }
        .custom-list li {
            position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: var(--text-muted); font-size: 0.95rem;
        }
        .custom-list li::before {
            content: '•'; color: var(--primary); font-weight: bold; position: absolute; left: 0; font-size: 1.5rem; line-height: 1rem;
        }

        @media (max-width: 768px) {
            .bento-grid-legal { grid-template-columns: 1fr; }
        }
    

        /* ACCESSIBILITE-SCHEMA-PLURIANNUEL */
        .roadmap-card {
            background: white;
            border-radius: var(--radius-lg);
            width: 320px;
            padding: 2rem;
            box-shadow: var(--shadow-float);
            position: relative;
            animation: float 7s ease-in-out infinite;
            border: 1px solid rgba(226, 232, 240, 0.8);
        }
        
        .roadmap-year {
            display: flex; align-items: center; gap: 15px; margin-bottom: 1.5rem; position: relative;
        }
        .roadmap-year:last-child { margin-bottom: 0; }
        
        /* Ligne verticale */
        .roadmap-card::before {
            content: ''; position: absolute; left: 45px; top: 40px; bottom: 40px;
            width: 2px; background: #E2E8F0; z-index: 0;
        }

        .year-badge {
            background: var(--primary); color: white; font-weight: 700; font-size: 0.8rem;
            padding: 4px 8px; border-radius: 4px; width: 50px; text-align: center; z-index: 1;
        }
        .year-content {
            background: #F8FAFC; padding: 10px 15px; border-radius: 8px; font-size: 0.85rem; width: 100%; border: 1px solid #E2E8F0;
        }
        
        /* Bento Grid Schéma (2 colonnes larges) */
        .bento-grid-schema {
            display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem;
        }
        .bento-large-card {
            background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 2.5rem;
            transition: 0.3s; height: 100%;
        }
        .bento-large-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); }
        
        .bento-large-card h3 { 
            font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-main); 
            display: flex; align-items: center; gap: 12px;
        }

        /* Liste style "Check" */
        .prog-list { list-style: none; padding: 0; margin: 0; }
        .prog-list li {
            position: relative; padding-left: 1.8rem; margin-bottom: 1rem; color: var(--text-muted); line-height: 1.6;
        }
        .prog-list li::before {
            content: '✓'; color: white; background: #10B981; 
            font-size: 0.7rem; font-weight: bold; 
            position: absolute; left: 0; top: 4px;
            width: 18px; height: 18px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
        }

        @media (max-width: 900px) {
            .bento-grid-schema { grid-template-columns: 1fr; }
        }
  


        /* ASSISTANCE-ACCESSIBILITE */
        .project-card {
            background: white; border-radius: var(--radius-lg); width: 320px; padding: 1.5rem;
            box-shadow: var(--shadow-float); position: relative; animation: float 6s ease-in-out infinite;
            border: 1px solid rgba(226, 232, 240, 0.8);
        }
        
        .task-row {
            display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
            padding: 0.75rem; border-radius: 8px; background: #F8FAFC; border: 1px solid #F1F5F9;
        }
        .task-check {
            width: 20px; height: 20px; border-radius: 50%; border: 2px solid #CBD5E1;
            display: flex; align-items: center; justify-content: center;
        }
        .task-check.checked { background: var(--primary); border-color: var(--primary); color: white; }
        .task-line { height: 6px; background: #E2E8F0; width: 60%; border-radius: 3px; }
        .task-tag { margin-left: auto; width: 30px; height: 6px; background: #9333EA; border-radius: 3px; opacity: 0.3; }

        .project-badge {
            position: absolute; bottom: -15px; right: -15px;
            background: #10B981; color: white; padding: 0.5rem 1rem; border-radius: 99px;
            font-weight: 700; font-size: 0.85rem; box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
            animation: float 7s ease-in-out 1 reverse forwards;
        }

        /* Colonnes AMOA / AMOE */
        .split-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem;
        }
        .split-card {
            background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 2.5rem;
            height: 100%; transition: 0.3s; position: relative; overflow: hidden;
        }
        .split-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
        
        /* Barre colorée en haut */
        .split-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px;
        }
        .split-card.amoa::before { background: var(--primary); }
        .split-card.amoe::before { background: #9333EA; }

        .split-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 12px; }
        .split-desc { font-size: 1.1rem; color: var(--text-main); margin-bottom: 2rem; font-weight: 500; }

        /* Liste à puces */
        .custom-list { list-style: none; padding: 0; margin: 0; }
        .custom-list li {
            position: relative; padding-left: 2rem; margin-bottom: 1rem; color: var(--text-muted); line-height: 1.6;
        }
        .custom-list li::before {
            content: '→'; color: var(--text-main); font-weight: bold; position: absolute; left: 0; top: 0;
            font-family: 'Inter', sans-serif;
        }
        .split-card.amoa .custom-list li::before { color: var(--primary); }
        .split-card.amoe .custom-list li::before { color: #9333EA; }

        @media (max-width: 900px) {
            .split-grid { grid-template-columns: 1fr; }
        }
  

  /* =========================================
   STYLES SPÉCIFIQUES AUX ARTICLES (BLOG)
   (Factorisés pour tous les articles)
   ========================================= */

/* --- 1. EN-TÊTE ARTICLE --- */
.article-header {
    padding: 4rem 0 3rem 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* Centré pour l'élégance */
}
.article-meta {
    font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem;
    display: inline-flex; align-items: center; gap: 1rem; justify-content: center;
}
.article-tag {
    background: #EEF2FF; color: var(--primary); padding: 4px 10px; 
    border-radius: 4px; font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em;
    margin: 0; display: inline-block;
}
.article-meta p { margin: 0; }
.article-title {
    font-size: 2.5rem; line-height: 1.2; font-weight: 800; color: var(--text-main); margin-bottom: 1.5rem;
}
/* Intro / Chapeau */
.article-intro-text {
    font-size: 1.25rem; line-height: 1.6; color: var(--text-muted); margin: 0 auto 3rem auto; max-width: 700px;
}

/* --- 2. VISUEL PRINCIPAL --- */
.article-main-image {
    width: 100%; 
    height: auto; 
    max-height: 500px; 
    object-fit: cover; 
    
    /* AJOUTS POUR LA NETTETÉ : */
    max-width: 1000px; /* On limite la largeur max */
    display: block;    /* Nécessaire pour le centrage */
    margin: 0 auto 4rem auto; /* Le "auto" sur les côtés centre l'image */
    
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); 
    border: 1px solid #E2E8F0;
}

/* --- 3. STRUCTURE CORPS + SIDEBAR --- */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px; /* Contenu principal + Sidebar */
    gap: 4rem;
    align-items: start;
}

/* --- 4. TYPOGRAPHIE DU CONTENU (.article-body) --- */
/* C'est ici qu'on stylise votre texte brut */
.article-body {
    font-size: 1.125rem; /* ~18px pour confort lecture */
    line-height: 1.7;
    color: #334155;
}

.article-body h2 {
    font-size: 1.8rem; font-weight: 800; color: var(--text-main);
    margin-top: 3rem; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}

.article-body h3 {
    font-size: 1.4rem; font-weight: 700; color: var(--text-main);
    margin-top: 2.5rem; margin-bottom: 1rem;
}

.article-body h4 {
    font-size: 1.15rem; font-weight: 700; color: var(--text-main);
    margin-top: 1.5rem; margin-bottom: 0.5rem;
}

.article-body p { margin-bottom: 1.5rem; }

.article-body ul, .article-body ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; padding-left: 0.5rem; }
.article-body li::marker { color: var(--primary); font-weight: bold; }

.article-body strong { color: var(--text-main); font-weight: 700; }

.article-body a { 
    color: var(--primary); text-decoration: underline; 
    text-decoration-thickness: 2px; text-underline-offset: 3px; 
    transition: 0.2s;
}
.article-body a:hover { color: var(--primary-hover); text-decoration-color: transparent; }

.article-body blockquote {
    border-left: 4px solid var(--primary); background: #F8FAFC;
    padding: 1.5rem; margin: 2rem 0; font-style: italic; color: var(--text-main);
    border-radius: 0 8px 8px 0;
}

/* --- 5. SIDEBAR (Auteur & Navigation) --- */
.article-sidebar { position: sticky; top: 120px; }

.author-box-small {
    background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 1.5rem;
    margin-bottom: 2rem; box-shadow: var(--shadow-sm);
}
.author-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.author-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid #E2E8F0; }
.author-name { font-weight: 700; color: var(--text-main); display: block; font-size: 1.1rem; margin: 0; }
.author-role { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin: 0; }
.sidebar-title { font-size: 1rem; font-weight: 700; color: var(--text-main); margin: 0 0 1rem 0; }
.cta-title { font-size: 0.9rem; font-weight: 600; margin: 0 0 1rem 0; color: var(--text-main); }
.article-breadcrumb { margin-bottom: 2rem; }
.article-breadcrumb a { color: var(--primary); font-weight: 500; text-decoration: none; font-size: 0.95rem; }
.article-breadcrumb a:hover { text-decoration: underline; }

.sidebar-links h4 {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; 
    color: var(--text-muted); margin-bottom: 1rem; font-weight: 700; border-bottom: 1px solid #E2E8F0; padding-bottom: 0.5rem;
}
.sidebar-links ul { list-style: none; padding: 0; }
.sidebar-links li { margin-bottom: 1rem; }
.sidebar-links a { 
    text-decoration: none; font-weight: 600; color: var(--text-main); 
    font-size: 0.95rem; display: block; transition: 0.2s; 
}
.sidebar-links a:hover { color: var(--primary); transform: translateX(5px); }


/* --- 6. BLOC "ALLER PLUS LOIN" (Redesign Light) --- */
.next-read-box {
    background: #F8FAFC; /* Gris très clair au lieu de bleu nuit */
    border: 1px solid #E2E8F0; /* Bordure subtile */
    color: var(--text-main); /* Texte sombre */
    padding: 3rem; 
    border-radius: var(--radius-lg);
    text-align: center; 
    margin-top: 5rem;
    margin-bottom: 5rem; /* Ajout d'espace avant le footer ! IMPORTANT */
    box-shadow: var(--shadow-sm);
}

.next-read-box h2 { 
    font-size: 1.8rem; 
    margin-bottom: 1rem; 
    color: var(--text-main); /* Titre sombre */
}

.next-read-box p { 
    font-size: 1.1rem; 
    color: var(--text-muted); /* Texte gris moyen */
    margin-bottom: 0; 
    max-width: 700px; 
    margin: 0 auto; 
}

.next-read-box a { 
    color: var(--primary); /* Lien en bleu vibrant */
    font-weight: 700; 
    text-decoration: none; 
}
.next-read-box a:hover { 
    text-decoration: underline; 
}

/* Responsive */
@media (max-width: 900px) {
    .article-layout { grid-template-columns: 1fr; gap: 3rem; }
    .article-sidebar { position: static; order: 2; border-top: 1px solid #E2E8F0; padding-top: 2rem; }
    .article-header { padding-top: 2rem; text-align: left; }
    .article-intro-text { margin-left: 0; text-align: left; font-size: 1.1rem; }
    .article-meta { justify-content: flex-start; }
    .article-title { font-size: 2rem; }
}

/* --- FIX TAILLE ICONES SVG --- */

/* Force la taille des icônes SVG dans les carrés colorés */
.livrable-icon svg,
.icon-title {
    width: 28px !important;
    height: 28px !important;
    display: block;
}

/* Force la couleur blanche pour les icônes sur fond sombre (Section Livrables) */
.livrable-icon svg {
    color: white; /* Assure que le stroke="currentColor" devienne blanc */
}

/* Force la couleur primaire pour les icônes dans les titres (Bento Grid) */
.icon-title {
    color: var(--primary); /* Assure que le stroke="currentColor" devienne bleu */
}

/* --- CORRECTIF DESIGN BENTO GRID (Services) --- */

/* 1. La Grille (Mise en page 2 colonnes) */
.bento-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes strictes */
    gap: 1.5rem;
    margin-top: 3rem;
}

/* 2. Les Cartes (Fond blanc, bordures, ombres) */
.bento-card-service {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px; /* var(--radius-lg) */
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Effet au survol */
.bento-card-service:hover {
    border-color: #EEF2FF; /* var(--primary-light) */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* var(--shadow-lg) */
    transform: translateY(-3px);
}

/* 3. Le Titre avec l'icône alignée */
.bento-card-service h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0F172A; /* var(--text-main) */
    display: flex;
    align-items: center;
    gap: 12px; /* Espace entre icône et texte */
}

/* 4. Taille des icônes SVG dans les titres */
.icon-title {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    color: #4F46E5; /* var(--primary) */
    display: block;
}

/* 5. Listes à puces dans les cartes */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #64748B; /* var(--text-muted) */
}
/* La petite flèche ou le point devant */
.custom-list li::before {
    content: '→'; 
    color: #4F46E5; 
    font-weight: bold; 
    position: absolute; 
    left: 0; 
    top: 0;
}

/* 6. Responsive Mobile */
@media (max-width: 900px) {
    .bento-grid-2 {
        grid-template-columns: 1fr; /* 1 seule colonne sur mobile */
    }
}