/* ═══════════════════════════════════════
   ABOUT PAGE — Rebhni Design System v2
   ═══════════════════════════════════════ */

/* --- About Hero --- */
.about-hero {
    padding-top: 100px;
    text-align: center;
}

/* --- Mission Section --- */
.mission-section .grid-2 {
    gap: 48px;
    align-items: center;
}

.stat-grid {
    gap: 16px;
}

.stat-box {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal-light);
}

.stat-box p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* --- Timeline Section (LIGHT) --- */
/* Uses .section-light from design system for paper background */
.timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

/* Vertical connecting line between dots */
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 7px; /* aligns with dot center in RTL */
    width: 2px;
    height: calc(100% + 8px);
    background: var(--gray-200);
    z-index: 0;
}

[dir="ltr"] .timeline-item:not(:last-child)::after {
    right: auto;
    left: 7px;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

.timeline-item h4 {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.timeline-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* --- Values Section --- */
.values-section .grid-2 {
    gap: 40px;
}

.value-item {
    padding: 32px 0;
}

.value-number {
    display: block;
    color: var(--teal-light);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.value-desc {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* --- CTA inside values section --- */
.about-cta {
    padding-top: 80px;
    text-align: center;
}

/* --- Responsive: stack on mobile --- */
@media (max-width: 768px) {
    .mission-section .grid-2,
    .values-section .grid-2,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    /* Mission: text on top, stats below — natural DOM order */
    .mission-section .grid-2 {
        gap: 32px;
    }

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