/**
 * Design Minimaliste et Aéré pour les pages catégorie
 * Style épuré, léger et bien proportionné
 */

/* Palette de couleurs douces */
:root {
    --light-blue: #e0f2fe;
    --soft-blue: #7dd3fc;
    --accent-blue: #0ea5e9;
    --light-gray: #f8fafc;
    --medium-gray: #94a3b8;
    --dark-gray: #475569;
    --white: #ffffff;
    --light-green: #d1fae5;
    --light-yellow: #fef3c7;
    --light-purple: #ede9fe;
    --light-pink: #fce7f3;
}

/* Séparateur visuel avant la zone */
.hero-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 1.75rem;
    max-width: 100%;
    width: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 2px solid #475569;
    border-radius: 16px;
    box-shadow: 
        0 0 0 4px rgba(71, 85, 105, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
}

/* Ligne de séparation au-dessus */
.hero-dashboard::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #cbd5e1 50%, transparent 100%);
    display: block;
}

/* Badge d'information plus visible - Désactivé car remplacé par le titre de section */
.hero-dashboard::after {
    display: none;
}

/* Réinitialisation des animations lourdes */
.hero-dashboard::before {
    display: none;
}

/* Labels de section - Plus discrets */
.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== SECTION MÉTRIQUES - Version compacte ===== */
.metrics-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 0.875rem;
    border: 1px solid rgba(203, 213, 225, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.metrics-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.metric-card {
    flex: 1;
    min-width: 100px;
    max-width: 150px;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.metric-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--medium-gray);
    font-weight: 400;
}

.metric-icon {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    opacity: 0.7;
}

/* Suppression des animations complexes */
.metric-card.pulse .metric-icon,
.metric-card.slide,
.metric-card.bounce,
.metric-card.glow {
    animation: none;
}

/* ===== SECTION SERVICES - Design moderne UI/UX ===== */
.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Effet de gradient subtil en haut */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    opacity: 0.8;
}

/* Titre de section amélioré */
.services-section h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-section h3::before {
    content: '📑';
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 0.875rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

/* Gradient backgrounds avec meilleur contraste */
.service-card.purple { 
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: #e9d5ff;
}
.service-card.blue { 
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #bfdbfe;
}
.service-card.green { 
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}
.service-card.orange { 
    background: linear-gradient(135deg, #fffbeb 0%, #fed7aa 100%);
    border-color: #fed7aa;
}

/* Hover effect amélioré */
.service-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.service-card.purple:hover { border-color: #c084fc; }
.service-card.blue:hover { border-color: #60a5fa; }
.service-card.green:hover { border-color: #4ade80; }
.service-card.orange:hover { border-color: #fb923c; }

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.service-icon {
    font-size: 1.125rem;
    filter: saturate(1.2);
}

.service-arrow {
    font-size: 0.875rem;
    color: #6b7280;
    opacity: 0;
    transition: all 0.2s ease;
    transform: translateX(-3px);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

/* Conteneur du contenu pour meilleure organisation */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

/* Indicateur de nombre pour les sous-catégories */
.service-count {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 12px;
    line-height: 1;
}

/* Amélioration de la lisibilité sur fond coloré */
.service-card.purple .service-title { color: #581c87; }
.service-card.purple .service-desc { color: #6b21a8; }
.service-card.blue .service-title { color: #1e3a8a; }
.service-card.blue .service-desc { color: #1e40af; }
.service-card.green .service-title { color: #14532d; }
.service-card.green .service-desc { color: #166534; }
.service-card.orange .service-title { color: #7c2d12; }
.service-card.orange .service-desc { color: #9a3412; }

/* ===== SECTION ACTIONS - Boutons simplifiés ===== */
.actions-section {
    background: transparent;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    background: var(--white);
    border: 1px solid var(--light-blue);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Suppression des animations complexes */
.action-btn::before {
    display: none;
}

/* Styles simplifiés des boutons */
.action-btn.primary {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.action-btn.primary:hover {
    background: var(--light-blue);
}

.action-btn.warning {
    color: #f59e0b;
    border-color: #fed7aa;
}

.action-btn.warning:hover {
    background: var(--light-yellow);
}

.action-btn.success {
    color: #10b981;
    border-color: #86efac;
}

.action-btn.success:hover {
    background: var(--light-green);
}

.action-btn.special {
    background: linear-gradient(135deg, #e0f2fe 0%, #ede9fe 100%);
    color: var(--accent-blue);
    border: none;
}

.action-btn.special:hover {
    background: linear-gradient(135deg, #7dd3fc 0%, #c4b5fd 100%);
    color: white;
}

.btn-icon {
    font-size: 1rem;
}

.btn-text {
    font-size: 0.8rem;
}

.btn-badge {
    background: var(--light-gray);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--medium-gray);
}

/* ===== VERSION HORIZONTALE COMPACTE ===== */
@media (min-width: 1024px) {
    .hero-dashboard {
        display: grid;
        grid-template-columns: 250px 1fr 280px;
        gap: 1.5rem;
        align-items: start;
    }
    
    .metrics-section {
        grid-column: 1;
    }
    
    .services-section {
        grid-column: 2;
    }
    
    .actions-section {
        grid-column: 3;
    }
    
    .metrics-cards {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .metric-card {
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 0.625rem 0.875rem;
    }
    
    .metric-icon {
        order: -1;
        margin-right: 0.75rem;
        margin-bottom: 0;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.625rem;
    }
    
    .service-card {
        padding: 0.625rem;
    }
    
    .service-icon {
        font-size: 0.8rem;
    }
    
    .service-title {
        font-size: 0.65rem;
    }
    
    .service-desc {
        font-size: 0.6rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .action-btn {
        justify-content: center;
    }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    .hero-dashboard {
        gap: 1rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-dashboard::after {
        font-size: 0.7rem;
        padding: 0 10px;
    }
    
    .metrics-section,
    .services-section {
        padding: 0.875rem;
    }
    
    .metrics-cards {
        justify-content: space-around;
    }
    
    .metric-card {
        min-width: 70px;
        padding: 0.625rem 0.5rem;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .service-card {
        padding: 0.75rem;
    }
    
    .action-buttons {
        justify-content: stretch;
    }
    
    .action-btn {
        flex: 1;
        min-width: 140px;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .metrics-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .metric-card {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
}

/* ===== ANIMATIONS LÉGÈRES ===== */
.hero-dashboard > * {
    animation: fadeIn 0.4s ease-out;
}

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

/* ===== AMÉLIORATIONS RESPONSIVE POUR NAVIGATION ===== */
@media (max-width: 768px) {
    .services-section {
        padding: 0.875rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }
    
    .service-card {
        padding: 0.75rem;
    }
    
    .service-title {
        font-size: 0.8rem;
    }
    
    .service-desc {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .service-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 0.75rem;
    }
    
    .services-section h3 {
        font-size: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .service-card {
        padding: 0.875rem;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
    
    .service-header {
        margin-bottom: 0;
    }
    
    .service-icon {
        font-size: 1.25rem;
    }
    
    .service-content {
        flex: 1;
    }
    
    .service-arrow {
        opacity: 0.3;
    }
}

/* ===== FIX POUR LE FLASH DE NAVIGATION ===== */
.cat-sidebar-nav {
    opacity: 1;
    transition: opacity 0.2s ease;
}

.cat-sidebar-nav.loading {
    opacity: 0;
    pointer-events: none;
}

/* ===== ACCESSIBILITÉ ET LISIBILITÉ ===== */
/* Augmentation du contraste pour meilleure lisibilité */
@media (prefers-contrast: high) {
    .service-card {
        border-width: 2px;
    }
    
    .service-title {
        color: #000000;
        font-weight: 800;
    }
    
    .service-desc {
        color: #1f2937;
        font-weight: 500;
    }
}

/* Support pour les lecteurs d'écran */
.service-card:focus-visible {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* Animation réduite pour les utilisateurs sensibles */
@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-arrow {
        transition: none;
    }
    
    .service-card:hover {
        transform: none;
    }
}

/* ===== NAVIGATION DES SOUS-CATÉGORIES (Fix double menu) ===== */
.cat-smart-nav-complete {
    display: block; /* Toujours visible maintenant */
    margin-top: 1rem; /* Réduit l'espace */
    padding: 1.25rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    animation: slideDown 0.3s ease-out;
}

/* Afficher seulement quand prêt */
.cat-smart-nav-complete.loaded {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.cat-smart-nav-complete .section-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.625rem;
    max-width: 100%;
}

/* Limite à 7 colonnes maximum sur grand écran */
@media (min-width: 1200px) {
    .nav-grid-compact {
        grid-template-columns: repeat(7, 1fr);
    }
}

.cat-nav-item-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.875rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    color: #1f2937;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cat-nav-item-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transition: width 0.3s ease;
    z-index: 0;
}

.cat-nav-item-compact:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.cat-nav-item-compact:hover::before {
    width: 100%;
}

.nav-item-name {
    font-weight: 500;
    flex: 1;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

.nav-item-count {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #3b82f6;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    min-width: 22px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
    border: 1px solid #bfdbfe;
}

.cat-nav-item-compact:hover .nav-item-name,
.cat-nav-item-compact:hover .nav-item-count {
    color: white;
}

.cat-nav-item-compact:hover .nav-item-count {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Animation d'entrée */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== GRILLE UNIFIÉE POUR OUTILS ET SERVICES ===== */
.services-grid-unified {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
    max-width: 100%;
}

/* Limite à 7 colonnes maximum sur grand écran */
@media (min-width: 1200px) {
    .services-grid-unified {
        grid-template-columns: repeat(7, 1fr);
    }
}

/* Cartes mini harmonisées */
.service-card-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 0.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 90px;
    position: relative;
    overflow: hidden;
}

.service-card-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

/* Header avec icône et badge/flèche */
.service-mini-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-mini-header .service-icon {
    font-size: 1.5rem;
    opacity: 0.9;
}

.service-mini-header .service-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.service-mini-header .service-arrow {
    position: absolute;
    top: -8px;
    right: -12px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
}

.service-card-mini:hover .service-arrow {
    opacity: 1;
    transform: scale(1);
}

/* Contenu avec titre */
.service-mini-content {
    text-align: center;
}

.service-mini-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-mini:hover .service-mini-title {
    color: #3b82f6;
}

/* Couleurs des cartes */
.service-card-mini.purple {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: #e9d5ff;
}

.service-card-mini.purple:hover {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    border-color: #a855f7;
}

.service-card-mini.blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #bfdbfe;
}

.service-card-mini.blue:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #3b82f6;
}

.service-card-mini.green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.service-card-mini.green:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-color: #22c55e;
}

.service-card-mini.orange {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-color: #fed7aa;
}

.service-card-mini.orange:hover {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    border-color: #fb923c;
}

.service-card-mini.pink {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-color: #fbcfe8;
}

.service-card-mini.pink:hover {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border-color: #ec4899;
}

.service-card-mini.indigo {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-color: #c7d2fe;
}

.service-card-mini.indigo:hover {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-color: #6366f1;
}

.service-card-mini.teal {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-color: #99f6e4;
}

.service-card-mini.teal:hover {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-color: #14b8a6;
}

/* Au hover, texte blanc pour toutes les couleurs */
.service-card-mini:hover .service-mini-title,
.service-card-mini:hover .service-icon {
    color: white;
}

.service-card-mini:hover .service-badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Différenciation entre sous-catégories et outils */
.service-card-mini.tool-card .service-icon {
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid-unified {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    
    .service-card-mini {
        padding: 0.75rem 0.375rem;
        min-height: 80px;
    }
    
    .service-mini-title {
        font-size: 0.7rem;
    }
    
    .service-mini-header .service-icon {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .services-grid-unified {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== STYLES POUR CONTENU UNIFIÉ SEO 2025 ===== */
.seo-2025-revolution {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f9ff 100%);
    border-radius: 12px;
    border: 1px solid #e0f2fe;
}

.seo-2025-intro {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-left: 4px solid #3b82f6;
    border-radius: 4px;
}

.seo-2025-intro strong {
    color: #1e40af;
}

/* Informations complémentaires */
.cat-complementary-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.cat-additional-details {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #cbd5e1;
}

.cat-additional-details summary {
    cursor: pointer;
    font-weight: 600;
    color: #475569;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.cat-additional-details summary:hover {
    color: #3b82f6;
}

.cat-additional-details[open] summary {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.cat-additional-details .cat-section-content {
    padding: 0 0.5rem;
}