/* =============================================
   🟦 سيكشن الأثر والإنجازات – نسخة غامقة
============================================= */

.msahem-impact {
    padding: 90px 0;
    background: radial-gradient(circle at top, #070b19 0, #050815 40%, #020308 100%);
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
}

/* طبقة إضاءة خفيفة */
.msahem-impact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(56,189,248,0.16) 0, transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(217,179,106,0.22) 0, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.msahem-impact .container {
    position: relative;
    z-index: 1;
}

/* ====== العنوان ====== */
.impact-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.impact-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 12px;
}

.impact-header p {
    font-size: 15px;
    color: #cbd5f5;
    line-height: 1.9;
}

/* ====== شبكة الأرقام ====== */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

@media (max-width: 992px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }
}

/* ====== مربع الإنجاز ====== */
.impact-box {
    background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
    padding: 32px 20px;
    border-radius: 22px;
    text-align: center;

    border: 1px solid rgba(217,179,106,0.7);      /* ذهب أوضح */
    box-shadow:
        0 18px 40px rgba(0,0,0,0.65),
        0 0 0 1px rgba(15,23,42,0.9);
    transition: 0.25s ease;
}

.impact-box:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 55px rgba(0,0,0,0.9),
        0 0 0 1px rgba(217,179,106,0.9);
}

/* ====== الرقم ====== */
.impact-number {
    font-size: 34px;
    font-weight: 800;
    color: #fbbf24; /* ذهبي فاتح */
    margin-bottom: 8px;
}

/* ====== النص ====== */
.impact-label {
    font-size: 15px;
    color: #e5e7eb;
}
