.about {
    padding: 100px 20px;
    background: var(--color-black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* TITRE SECTION */
.about-content .section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 32px;
    margin-top: 20px;
}

/* TEXTES */
.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
    text-align: justify;
}

/* --- STATISTIQUES --- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--color-gray);
    border: 1px solid var(--color-gray-border);
    border-radius: 12px;
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-green);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 14px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center
}

/* --- IMAGE CENTRÉE --- */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 20px;
    margin-left: 160px;
}

.about-image img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* --------------------------------------------------------- */
/* ------------------- DIVISIONS --------------------------- */
/* --------------------------------------------------------- */

.divisions {
    padding: 100px 20px;
    background: var(--color-gray-dark);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.division-card {
    background: var(--color-gray);
    border: 1px solid var(--color-gray-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.division-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.division-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2), rgba(0, 255, 65, 0.1));
    border: 2px solid var(--color-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.division-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-green);
}

.division-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-white);
}

.division-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 24px;
}

.division-features {
    list-style: none;
}

.division-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: #999999;
}

.division-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 700;
}

/* --------------------------------------------------------- */
/* ---------------------- TECH ----------------------------- */
/* --------------------------------------------------------- */

.security-tech {
    padding: 100px 20px;
    background: var(--color-black);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-card {
    background: var(--color-gray);
    border: 1px solid var(--color-gray-border);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.tech-card:hover::before {
    transform: scaleY(1);
}

.tech-card:hover {
    transform: translateX(10px);
    border-color: var(--color-green);
}

.tech-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(0, 255, 0);
    margin-bottom: 16px;
    line-height: 1;
}

.tech-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
}

.tech-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
}

/* --------------------------------------------------------- */
/* ------------------ CERTIFICATIONS ----------------------- */
/* --------------------------------------------------------- */

.certifications {
    padding: 100px 20px;
    background: var(--color-gray-dark);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.cert-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--color-gray);
    border: 1px solid var(--color-gray-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    border-color: var(--color-green);
    transform: translateY(-5px);
}

.cert-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2), rgba(0, 255, 65, 0.1));
    border: 3px solid var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--color-green);
}

.cert-name {
    font-size: 14px;
    color: #999999;
    line-height: 1.5;
}

/* --------------------------------------------------------- */
/* ----------------------- RESPONSIVE ----------------------- */
/* --------------------------------------------------------- */

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .divisions-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image img {
        max-width: 100%;
    }
}
