/* ========== HERO ABOUT TEXT ========== */

.hero-about {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(
        135deg,
        rgba(20, 20, 45, 0.6) 0%,
        rgba(30, 30, 60, 0.6) 100%
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s var(--animation-easing) 0.6s backwards;
}

.hero-about__lead {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-align: center;
}

.hero-about__description {
    font-size: 1rem;
    color: var(--color-dark-text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.hero-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-light);
    transition: all 0.3s var(--animation-easing);
}

.hero-value:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.hero-value svg {
    flex-shrink: 0;
    color: var(--color-primary-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-about {
        padding: 2rem 1.5rem;
        margin: 2rem auto 0;
    }
    
    .hero-about__lead {
        font-size: 1rem;
    }
    
    .hero-about__description {
        font-size: 0.9rem;
    }
    
    .hero-values {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-value {
        justify-content: center;
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-about {
        padding: 1.5rem 1rem;
    }
    
    .hero-value svg {
        width: 16px;
        height: 16px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
