/* Bannière Management */
.management-banner {
    background: linear-gradient(135deg, #06668C 0%, #427AA1 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(6, 102, 140, 0.2);
}

.management-text h3 { color: #A4BD01; margin-bottom: 10px; }

.softskills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tag {
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.85em;
    text-align: center;
}

/* Dashboard Tech */
.tech-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.tech-card {
    background: #fff;
    border: 1px solid #EBF2FA;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.principal { border-top: 5px solid #679436; }

.languages-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.lang-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.lang-item img { width: 45px; height: 45px; margin-bottom: 8px; transition: 0.3s; }
.lang-item:hover img { transform: scale(1.1); }
.lang-item span { font-size: 0.75em; font-weight: bold; text-align: center; }

.mini-bar {
    width: 100%;
    height: 4px;
    background: #eee;
    margin-top: 5px;
    border-radius: 2px;
}

.fill { background: #679436; height: 100%; border-radius: 2px; }

.note { font-size: 0.8em; color: #888; margin-top: 15px; font-style: italic; }

/* AC Boxes */
.ac-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.ac-box {
    text-align: center;
    padding: 15px 5px;
    border-radius: 8px;
    transition: 0.3s;
    background: #fff;
    border: 1px solid #ddd;
}

.ac-box:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.ac-top { font-weight: 800; font-size: 1.2em; margin-bottom: 5px; }
.ac-box h4 { font-size: 0.8em; text-transform: uppercase; }
.ac-box p { font-size: 0.7em; line-height: 1.2; padding: 0 5px; }

/* Couleurs AC */
.red { border-bottom: 5px solid #BF1402; color: #BF1402; }
.orange { border-bottom: 5px solid #FF6800; color: #FF6800; }
.yellow { border-bottom: 5px solid #E3CF00; color: #E3CF00; }
.green { border-bottom: 5px solid #37B804; color: #37B804; }
.blue { border-bottom: 5px solid #006EC4; color: #006EC4; }
.black { border-bottom: 5px solid #505050; color: #505050; }

@media (max-width: 1024px) {
    .tech-dashboard, .ac-grid { grid-template-columns: 1fr; }
    .management-banner { flex-direction: column; }
}