/* ── ABOUT PAGE STYLES ── */
.about-hero {
    background: radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.05) 0%, var(--gray-50) 100%);
    padding: 10rem 0 6rem;
    text-align: center;
}

.about-hero .hero-h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    max-width: 900px;
    margin: 1.5rem auto;
}
.about-hero .hero-p {
    margin: 0 auto;
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--gray-500);
}

.stats-dashboard {
    transform: none;
    background: var(--grad-indigo);
    padding: 40px;
    height: auto;
    border-radius: 24px;
    margin-top: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values-grid {
    margin-top: 4rem;
}

.value-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.team-bubble {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    width: 200px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-bubble:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.bubble-icon {
    font-size: 2.5rem;
}
