/* About Hero Section */
.about-hero {
    position: relative;
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 4.5rem;
    overflow: hidden;
    background: transparent;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero .hero-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.gradient-title {
    font-size: 3.2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.62rem 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.6rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.04em;
}

.hero-subtitle {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.82;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .gradient-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: calc(var(--header-height) + 3.2rem);
        padding-bottom: 3.2rem;
    }

    .gradient-title {
        font-size: 2.15rem;
        margin-bottom: 0.9rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }
}
