﻿.about-hero {
    background: linear-gradient(135deg, var(--primary-bg) 0%, #DBEAFE 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.3;
}

    .about-hero h1 span {
        color: var(--primary);
    }

.about-hero p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.9;
}

/* Story Section */
.story-section {
    padding: 70px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    align-items: center;
}

.story-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--card-bg);
    position: relative;
}

    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.story-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-image-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.story-image-badge strong {
    font-size: 20px;
    display: block;
}

.story-image-badge small {
    font-size: 12px;
    color: var(--text-muted);
}

.story-content .section-title {
    font-size: 30px;
    margin-bottom: 16px;
}

.story-content p {
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 16px;
    font-size: 15px;
}

/* Values */
.values-section {
    background: var(--card-bg);
    padding: 70px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

    .value-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary);
    }

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.value-icon-1 {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.value-icon-2 {
    background: linear-gradient(135deg, var(--action), #FB923C);
}

.value-icon-3 {
    background: linear-gradient(135deg, var(--success), #34D399);
}

.value-icon-4 {
    background: linear-gradient(135deg, #EC4899, #F472B6);
}

.value-icon-5 {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.value-icon-6 {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.value-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
}

/* Numbers */
.numbers-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    text-align: center;
}

    .numbers-section h2 {
        color: white;
        font-size: 32px;
        margin-bottom: 14px;
    }

    .numbers-section > p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
    }

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.number-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
}

.number-card-value {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: white;
}

.number-card-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Team */
.team-section {
    padding: 70px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}

.team-card h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.team-position {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .team-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--card-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        transition: var(--transition);
    }

        .team-social a:hover {
            background: var(--primary);
            color: white;
        }

/* CTA */
.cta-section {
    background: var(--card-bg);
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .cta-card::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
        border-radius: 50%;
    }

    .cta-card h2 {
        color: white;
        font-size: 30px;
        margin-bottom: 14px;
        position: relative;
    }

    .cta-card p {
        opacity: 0.95;
        font-size: 16px;
        margin-bottom: 28px;
        position: relative;
    }

    .cta-card .btn {
        position: relative;
    }

@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .numbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .about-hero h1 {
        font-size: 26px;
    }

    .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        gap: 16px;
    }

    .number-card-value {
        font-size: 30px;
    }

    .cta-card {
        padding: 30px 20px;
    }

        .cta-card h2 {
            font-size: 22px;
        }
}
