/* About Page Styles */

/* About Hero */
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #eef2ff 100%);
    text-align: center;
}

.about-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(91, 95, 199, 0.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.story-content p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-dark);
}

.story-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mission-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, #818cf8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.mission-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 100px 0;
}

.values-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.values-section .section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(91, 95, 199, 0.15);
    transform: translateY(-4px);
}

.value-num {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Numbers Section */
.numbers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #312e81 100%);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.number-item {
    text-align: center;
}

.number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.number-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.team-section .section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
}

.team-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: var(--white);
}

.about-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 32px;
}

.about-cta .btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    background: var(--accent);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background 0.2s ease;
}

.about-cta .btn:hover {
    background: var(--accent-light);
}

.about-cta p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image {
        order: -1;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero p {
        font-size: 17px;
    }

    .story-section {
        padding: 60px 0;
    }

    .story-content h2 {
        font-size: 28px;
    }

    .story-content p {
        font-size: 16px;
    }

    .mission-section {
        padding: 60px 0;
    }

    .mission-card {
        padding: 28px;
    }

    .values-section {
        padding: 60px 0;
    }

    .values-section .section-header h2 {
        font-size: 28px;
    }

    .numbers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .number {
        font-size: 36px;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-section .section-header h2 {
        font-size: 28px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .about-cta {
        padding: 60px 0;
    }

    .about-cta h2 {
        font-size: 28px;
    }
}
