/* Page Hero */
.page-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(165deg, var(--gray-50) 0%, var(--white) 100%);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-hero-description {
    font-size: 1.25rem;
    color: var(--navy-600);
    line-height: 1.7;
}

/* Story Section */
.about-story {
    padding: 6rem 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-content p {
    font-size: 1.125rem;
    color: var(--navy-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-color: var(--orange-300);
    box-shadow: var(--shadow-lg);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange-500);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--navy-600);
    font-weight: 500;
}

/* Values Section */
.about-values {
    padding: 6rem 0;
    background: var(--gray-50);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange-100) 0%, var(--orange-50) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--orange-500);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--navy-600);
    line-height: 1.6;
}

/* Team Section */
.about-team {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-800) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--orange-500);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9375rem;
    color: var(--navy-600);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 8rem 0 3rem;
    }
}
