/* --- SEKTION 5: KI-POWER --- */

.ki-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    background: transparent;
}

/* Header Bereich */
.ki-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
}

.ki-label {
    color: var(--primary-orange);
    font-size: 0.9rem;      /* Klein */
    font-weight: 600;       /* Dünn (Light) */
    letter-spacing: 1px;    /* Leicht gesperrt für cleanen Look */
    text-transform: uppercase; /* Optional: Wirkt oft technischer */
    opacity: 0.9;
}

.ki-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.ki-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* Das Grid Layout */
.ki-grid {
    display: grid;
    /* 4 Spalten wie im Bild */
    grid-template-columns: repeat(4, 1fr); 
    gap: 24px;
    width: 100%;
    max-width: 1400px;
}

/* Karten Design (Style wie Screenshot 2) */
.ki-card {
    /* Dunkler Hintergrund, leicht verrauscht/technisch linear-gradient(145deg, #131315 0%, #0c0b09 100%)*/
    background: #0c0b09;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effekt: Leichter Glow und Border Farbe */
.ki-card:hover {
    border-color: rgba(249, 115, 22, 0.4); /* Orange Border */
    transform: translateY(-5px); /* Leichtes Schweben */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Icon Box (Style wie die 'Key' Box im Screenshot 2) */
.ki-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.03); /* Sehr subtiler HG */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.ki-card:hover .ki-icon-box {
    background-color: rgba(249, 115, 22, 0.1); /* Orangener HG bei Hover */
    color: #fff;
}

/* Inhalte */
.ki-content h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.ki-content p {
    color: #9ca3af; /* Grau */
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 20px 0;
    flex-grow: 1; /* Schiebt den Tag nach unten */
}

/* Der Tag unten (Pill) */
.ki-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    
    /* Dunkelgrauer Look wie im Screenshot 1 */
    background-color: rgba(255, 255, 255, 0.05);
    color: #71717a;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Anpassung */
@media (max-width: 1200px) {
    .ki-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .ki-grid { grid-template-columns: 1fr; }
    .ki-title { font-size: 2rem; }
}