.kbd {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .breadcrumbs {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 1rem;
        }
        
        .breadcrumbs a {
            color: #ffd700;
            text-decoration: none;
        }
  
        
        .icon {
            font-size: 2rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Introduction moderne */
        .intro-card {
            background: linear-gradient(135deg, #f8faff 0%, #e6f3ff 100%);
            border-radius: 16px;
            padding: 2.5rem;
            border-left: 6px solid #667eea;
            position: relative;
            overflow: hidden;
        }
        
        .intro-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border-radius: 50%;
            transform: translate(30px, -30px);
        }
        
        .intro-highlight {
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }
        
        .note {
            background: linear-gradient(135deg, #e6fffa, #f0fff4);
            border: 2px solid #48bb78;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            position: relative;
        }
        
        .note::before {
            content: '??';
            position: absolute;
            top: -10px;
            left: 20px;
            background: white;
            padding: 0 10px;
            font-size: 1.2rem;
        }
        
        /* Stats modernes */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(102, 126, 234, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #667eea, #764ba2);
        }
        
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .stat-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a365d;
            margin: 0.5rem 0;
        }
        
        .stat-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #718096;
            line-height: 1.4;
        }
        
        /* Cards modernes */
        .smart-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .smart-card {
            background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .smart-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
            border-radius: 50%;
        }
        
        /* Variantes colorées des cartes */
        .card-green {
            background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
            border: 1px solid rgba(72, 187, 120, 0.2);
        }
        .card-green::before {
            background: linear-gradient(135deg, rgba(72, 187, 120, 0.05), rgba(56, 161, 105, 0.05));
        }
        
        .card-orange {
            background: linear-gradient(135deg, #fffaf0 0%, #fef5e7 100%);
            border: 1px solid rgba(237, 137, 54, 0.2);
        }
        .card-orange::before {
            background: linear-gradient(135deg, rgba(237, 137, 54, 0.05), rgba(221, 107, 32, 0.05));
        }
        
        .card-red {
            background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
            border: 1px solid rgba(245, 101, 101, 0.2);
        }
        .card-red::before {
            background: linear-gradient(135deg, rgba(245, 101, 101, 0.05), rgba(229, 62, 62, 0.05));
        }
        
        .card-purple {
            background: linear-gradient(135deg, #faf5ff 0%, #e9d8fd 100%);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }
        .card-purple::before {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(124, 58, 237, 0.05));
        }
        
        .card-teal {
            background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
            border: 1px solid rgba(45, 212, 191, 0.2);
        }
        .card-teal::before {
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.05), rgba(20, 184, 166, 0.05));
        }
        
        .smart-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .smart-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .smart-card i {
            color: #667eea;
            font-size: 1.4rem;
        }
        
        /* Boutons modernes */
        .btn-product {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            border: none;
            cursor: pointer;
            margin: 0.5rem 0;
            margin-top: auto;
            align-self: flex-start;
        }
        
        .btn-product:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            text-decoration: none;
            color: white;
        }
        
        /* Boutons colorés */
        .btn-green {
            background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
            box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
        }
        .btn-green:hover {
            box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
        }
        
        .btn-orange {
            background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
            box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3);
        }
        .btn-orange:hover {
            box-shadow: 0 8px 25px rgba(237, 137, 54, 0.4);
        }
        
        .btn-red {
            background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
            box-shadow: 0 4px 15px rgba(245, 101, 101, 0.3);
        }
        .btn-red:hover {
            box-shadow: 0 8px 25px rgba(245, 101, 101, 0.4);
        }
        
        .btn-purple {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }
        .btn-purple:hover {
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
        }
        
        .btn-teal {
            background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
            box-shadow: 0 4px 15px rgba(45, 212, 191, 0.3);
        }
        .btn-teal:hover {
            box-shadow: 0 8px 25px rgba(45, 212, 191, 0.4);
        }
        
        /* Checklist améliorée */
        .tips-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        
        .tips-list li {
            background: linear-gradient(135deg, #f8faff 0%, #e6f3ff 100%);
            margin: 1rem 0;
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid #48bb78;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: all 0.3s ease;
        }
        
        .tips-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .tips-list i {
            color: #48bb78;
            font-size: 1.2rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }
        
        /* Encadrés spéciaux */
        .info-box2, .highlight-box2 {
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .info-box2 {
            background: linear-gradient(135deg, #fff3cd 0%, #fef8e7 100%);
            border: 2px solid #f6ad55;
        }
        
        .highlight-box2 {
            background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
            border: 2px solid #48bb78;
        }
        
        .info-box2::before {
            content: '??';
            position: absolute;
            top: -10px;
            left: 20px;
            background: white;
            padding: 0 10px;
            font-size: 1.2rem;
        }
        
        .highlight-box2::before {
            content: '??';
            position: absolute;
            top: -10px;
            left: 20px;
            background: white;
            padding: 0 10px;
            font-size: 1.2rem;
        }
        
        /* FAQ moderne */
        .faq-container {
            margin: 2rem 0;
        }
        
        .faq-item {
            background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
            border-radius: 12px;
            margin: 1rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }
        
        .faq-question {
            padding: 1.5rem 2rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #f8faff 0%, #e6f3ff 100%);
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #e6f3ff 0%, #d6edff 100%);
        }
        
        .faq-answer {
            padding: 1.5rem 2rem;
            background: white;
            border-top: 1px solid rgba(102, 126, 234, 0.1);
            display: block;
        }
        
        .faq-toggle {
            color: #667eea;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        /* Code snippet */
        code {
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            color: #e2e8f0;
            padding: 1.5rem;
            border-radius: 12px;
            display: block;
            font-family: 'Fira Code', monospace;
            line-height: 1.6;
            margin: 1rem 0;
            overflow-x: auto;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
        }

        
        /* Survol des mots clés */
        .highlight-keyword {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .highlight-keyword:hover {
            transform: scale(1.05);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
        }
        
        /* Stats modernes */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(102, 126, 234, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #667eea, #764ba2);
        }
        
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .stat-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a365d;
            margin: 0.5rem 0;
        }
        
        .stat-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #718096;
            line-height: 1.4;
        }
 /* Related articles */
.related-articles {
    background: #f1f1f1;
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    border-radius: 8px;
    display: block !important;

    flex-wrap: wrap;
    align-items: center;}
    .articles-grid {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 20px !important;
      margin-top: 20px !important;
    }
    
    .article-card {
      flex: 1 !important;
      min-width: 300px !important;
      border-radius: var(--border-radius) !important;
      overflow: hidden !important;
      box-shadow: var(--box-shadow) !important;
      background-color: white !important;
      transition: var(--transition) !important;
    }
    
    .article-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .article-image {
      height: 200px;
      overflow: hidden;
    }
    
    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .article-card:hover .article-image img {
      transform: scale(1.1);
    }
    
    .article-content {
      padding: 20px !important;
    }
    
    .article-content h3 {
      margin-top: 0;
      color: var(--primary-color);
    }
.slide-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 50px 0 !important;
    padding-top: 20% !important;
    padding-left: 4% !important;
    padding-bottom: 1% !important;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 6vw, 2rem) !important; /* Force la taille sur le hero */
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);}