/* ============================================
   ABOUT US PAGE - REPLICA DESIGN
   ============================================ */

/* --- Hero Section --- */
.about-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f0f2f5 0%, #ffffff 100%);
    text-align: center;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Story Section --- */
.story-section {
    padding: 60px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* --- Stats Numbers --- */
.stats-strip {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 40px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent); /* Orange */
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* --- Split Section: Values & Reach --- */
.split-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.split-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Values smaller, Map wider */
    gap: 80px;
}

/* Values Left Side */
.values-column h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.values-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.value-card-mini {
    background: #fff;
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.value-card-mini:hover {
    transform: translateY(-5px);
}

.vc-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}
.vc-icon svg {
    width: 100%;
    height: 100%;
}

.vc-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.vc-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Reach Right Side */
.reach-column {
    text-align: center;
}

.reach-column h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.world-map-container {
    margin-bottom: 24px;
}

.world-map-container img {
    width: 100%;
    max-width: 600px;
    height: auto;
    /* Invert/Filter to match theme if needed, purely optional */
}

.reach-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* --- Certifications --- */
.certs-section {
    padding: 60px 0;
    text-align: center;
}

.certs-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--dark);
}

.certs-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.cert-logo {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.cert-logo:hover {
    opacity: 1;
}

/* --- Final CTA --- */
.ready-cta {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.ready-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .story-grid, .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .values-cards {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
