/* ===================================================================
   ABOUT PAGE STYLES
   =================================================================== */

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.content-width {
    max-width: 900px;
    margin: 0 auto;
}

/* Story Section */
.story-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-intro .lead {
    color: var(--gray-600);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 120px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-year {
    position: absolute;
    left: -120px;
    width: 100px;
    text-align: right;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    padding-right: 20px;
    top: 0;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -9px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px white, 0 0 0 6px var(--primary);
}

.timeline-content {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
}

.timeline-content h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.timeline-content h3 i {
    font-size: 1.5rem;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.check-list i {
    color: var(--success);
    margin-top: 0.25rem;
}

.insight-box {
    background: var(--gray-100);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.insight-box strong {
    color: var(--accent);
}

/* Stats Grid Small */
.stats-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card-small {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Framework Section */
.framework-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.framework-highlight h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.framework-list {
    margin: 2rem 0;
}

.framework-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.framework-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.1);
}

.framework-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.framework-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.prevalence {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: #fee2e2;
    color: var(--danger);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
}

.impact {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: #d1fae5;
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
}

.framework-details p {
    color: var(--gray-600);
    margin: 0;
}

/* Study Results */
.study-results {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.study-results h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.result-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--gray-200);
    text-align: center;
}

.result-card h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.result-improvement {
    font-size: 3rem;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.result-detail {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.comparison-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
}

.comparison-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.comparison-vs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vs-ours {
    background: #d1fae5;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--success);
}

.vs-them {
    background: #fee2e2;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--danger);
}

.vs-ours strong,
.vs-them strong {
    display: block;
    margin-bottom: 0.5rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-member {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
}

.team-role {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    margin-bottom: 0.75rem;
}

.team-member p strong {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 968px) {
    .stats-grid-small {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 40px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-year {
        left: -40px;
        width: auto;
        font-size: 1rem;
        padding-right: 10px;
    }
    
    .timeline-year::after {
        right: -11px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .story-intro h2 {
        font-size: 1.75rem;
    }
    
    .framework-item {
        flex-direction: column;
    }
    
    .framework-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}
