.about-page {
    padding-top: 120px;
    padding-bottom: 10rem;
}

.about-hero {
    text-align: center;
    margin-bottom: 6rem;
}

.about-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: white;
}

.about-hero p {
    font-size: 1.5rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 8rem;
}

.stat-item {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-bright);
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--tr-spring);
    box-shadow: var(--shadow-md), var(--glass-inner-glow);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg), 0 0 25px var(--primary-glow), var(--glass-inner-glow);
}

.stat-item .value {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    display: block;
    margin-bottom: 0.2rem;
    font-family: 'Outfit', sans-serif;
}

.stat-item .label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.stat-item.secondary { border-color: var(--secondary); }
.stat-item.accent { border-color: var(--accent); }

.team-section {
    margin-top: 8rem;
}

.team-section h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    transition: var(--tr-spring);
    box-shadow: var(--shadow-md), var(--glass-inner-glow);
}

.team-member:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0,0,0,0.4), var(--glass-inner-glow);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 28px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.member-avatar.secondary { background: linear-gradient(135deg, var(--secondary), #059669); }
.member-avatar.accent { background: linear-gradient(135deg, var(--accent), #d97706); }

.timeline {
    position: relative;
    max-width: 800px;
    margin: 10rem auto 0;
    padding-right: 2.5rem;
    border-right: 2px solid var(--border);
}

.timeline h2 {
    font-size: 3.5rem;
    text-align: right;
    margin-bottom: 5rem;
}

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

.timeline-item p {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    right: -2.7rem;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 3px solid var(--bg-main);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-glow);
}

.timeline-date {
    font-weight: 900;
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.values-section {
    margin-top: 10rem;
    text-align: center;
}

.values-section h2 {
    font-size: 3.5rem;
    margin-bottom: 5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    transition: var(--tr-spring);
    box-shadow: var(--shadow-md), var(--glass-inner-glow);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.value-card p {
    color: var(--text-dim);
    line-height: 1.6;
}

.about-cta {
    margin-top: 12rem;
    text-align: center;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-card p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.8rem; }
    .about-hero p { font-size: 1.2rem; }
    .timeline { border-right: none; padding-right: 0; }
    .timeline-item::before { display: none; }
    .cta-card h2 { font-size: 2.2rem; }
    .cta-btns { flex-direction: column; }
    .team-section h2, .values-section h2 { font-size: 2.5rem; }
}
