/* ── Section ── */
.about-us-section {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1040 50%, #0f0c29 100%);
    padding: 90px 20px;
    direction: rtl;
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Container ── */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Badge & Title ── */
.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    color: #f1f5f9;
    margin: 0 0 20px;line-height: 1.4;
}

.about-title span {
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Paragraphs ── */
.about-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 14px;
}

/* ── Features ── */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.about-feature {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(139,92,246,0.18);
    border-radius: 12px;
    padding: 12px 16px;
    color: #cbd5e1;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-feature:hover {
    transform: translateY(-2px);
    border-color: rgba(139,92,246,0.45);
}

.about-feature i {
    color: #a78bfa;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Stats side ── */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Main stat box ── */
.stats-box {
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(99,102,241,0.12));
    border: 1px solid rgba(139,92,246,0.3);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;margin-bottom: 10px;
}

.stats-label {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
}

/* ── Stats grid ── */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.s-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.s-card:hover {
    transform: translateY(-3px);
    border-color: rgba(139,92,246,0.4);
}

.s-card i {
    font-size: 1.4rem;
    color: #a78bfa;
    display: block;
    margin-bottom: 10px;
}

.s-card p {
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-title {
        font-size: 1.5rem;
    }
}
