/* ===== ABOUT PAGE ===== */

.about-hero {
    height: 50vh;
    margin-top: 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.page-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.about-main {
    padding: 80px 0;
    background: var(--primary-black);
}

.about-section {
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease;
}

.section-icon {
    font-size: 72px;
    text-align: center;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #8b5cf6;
    text-align: center;
    margin-bottom: 40px;
}

.section-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stats-section {
    margin: 80px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.stat-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.stat-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.value-card h3 {
    font-size: 24px;
    color: #8b5cf6;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.cta-section {
    margin-top: 100px;
    margin-bottom: 60px;
}

.cta-card {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background: var(--text-white);
    color: #8b5cf6;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #f5f5f5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 42px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-text {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .cta-card h2 {
        font-size: 28px;
    }

    .cta-card p {
        font-size: 16px;
    }
}