/* About Us Page Styles */
.about-hero {
    background: #0B0B0F;
    background-image: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    padding: 160px 0 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-hero .subtitle {
    font-size: 1.5rem;
    color: #9CA3AF;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

.about-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

.about-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #D1D5DB;
    margin-bottom: 1.5rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section strong {
    color: #FFFFFF;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.highlight-box p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #9CA3AF;
    font-weight: 500;
}

.tldr-box {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
}

.tldr-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EC4899;
    margin-bottom: 1rem;
}

.tldr-box p {
    font-size: 1.25rem;
    color: #E5E7EB;
    margin: 0;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1.5rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: #9CA3AF;
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 140px 0 80px 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .subtitle {
        font-size: 1.125rem;
    }

    .about-container {
        padding: 60px 24px;
    }

    .about-section {
        padding: 2rem 1.5rem;
    }

    .about-section p {
        font-size: 1.125rem;
    }

    .highlight-box p {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.125rem;
    }
}