/* ==========================================================================
   ChromeTrack - About Page CSS
   ========================================================================== */

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

.about-hero h1 {
    margin-bottom: var(--spacing-sm);
}

.about-hero p {
    font-size: 20px;
    color: var(--medium);
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Story Section
   -------------------------------------------------------------------------- */
.story-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-text h2 {
    margin-bottom: var(--spacing-md);
}

.story-text p {
    font-size: 18px;
    color: var(--medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.story-visual {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.story-stat {
    padding: var(--spacing-md);
}

.story-stat .number {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.story-stat .label {
    font-size: 14px;
    color: var(--medium);
}

/* --------------------------------------------------------------------------
   Mission Section
   -------------------------------------------------------------------------- */
.mission-section {
    padding: var(--spacing-2xl) 0;
    background: var(--dark);
    color: var(--white);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.mission-content p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Values Section
   -------------------------------------------------------------------------- */
.values-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.value-card {
    padding: var(--spacing-lg);
    background: var(--light);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-xs);
}

.value-card p {
    color: var(--medium);
    font-size: 15px;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Team Section (Optional)
   -------------------------------------------------------------------------- */
.team-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--light);
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.team-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Why K-12 Section
   -------------------------------------------------------------------------- */
.why-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.why-text h2 {
    margin-bottom: var(--spacing-md);
}

.why-text p {
    font-size: 18px;
    color: var(--medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.why-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    flex-shrink: 0;
}

.why-visual {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    color: var(--white);
    text-align: center;
}

.why-visual .big-number {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
}

.why-visual .big-label {
    font-size: 18px;
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Responsive - About Page
   -------------------------------------------------------------------------- */
@media (max-width: 968px) {
    .story-content,
    .why-content {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .why-visual .big-number {
        font-size: 56px;
    }
}
