/* صفحة عن المنصة */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.team-member {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.team-member:hover {
    border-bottom-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.member-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 15px;
    background: var(--primary-soft);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.member-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.member-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stats-section {
    background: linear-gradient(145deg, var(--primary-soft), var(--card-bg));
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.stats-section .stat-item {
    text-align: center;
    flex: 1 1 180px;
}

.stats-section .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stats-section .stat-label {
    color: var(--text-soft);
    font-size: 1rem;
    font-weight: 600;
}

.floating-home {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 1000;
    font-size: 1.5rem;
}

.floating-home:hover {
    background: var(--primary-dark);
    transform: scale(1.1) rotate(360deg);
}

.value-list {
    list-style: none;
    padding-right: 0;
}

.value-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-list i {
    color: var(--primary);
    font-size: 1.1rem;
}