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

.about-hero {
    padding-top: calc(var(--space-32) + var(--space-8));
    padding-bottom: var(--space-16);
    background: linear-gradient(135deg, #0a0a0f 0%, #111827 100%);
    color: #fff;
    text-align: center;
}

.about-hero h1 { color: #ffffff; margin-bottom: var(--space-4); }
.about-hero p { color: #e5e7eb; font-size: var(--text-lg); max-width: 600px; margin: 0 auto; }

/* Story */
.about-story {
    padding: var(--section-padding);
    background: #0a0a0f;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-story-content h2 { color: #00f0ff; margin-bottom: var(--space-6); }
.about-story-content p { line-height: 1.8; margin-bottom: var(--space-4); color: #e5e7eb; }

.about-story-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); }
.about-story-image img { width: 100%; height: auto; }
.about-story-image .img-placeholder { aspect-ratio: 4/3; }

/* Values */
.about-values {
    background: #111827;
    padding: var(--section-padding);
}

.about-values .section-header h2 { color: #ffffff; }
.about-values .section-header p { color: #9ca3af; }

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

.value-card {
    text-align: center;
    padding: var(--space-8);
    background: #1a1a2e;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 240, 255, 0.15);
    transition: all var(--transition-fast);
}

.value-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 4px 24px rgba(0, 240, 255, 0.1);
}

.value-card__icon {
    width: 72px; height: 72px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #00f0ff, #10b981);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-4);
}

.value-card__icon i { font-size: 1.5rem; color: #0a0a0f; }
.value-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); color: #ffffff; }
.value-card p { font-size: var(--text-sm); color: #9ca3af; }

/* Stats */
.about-stats {
    padding: var(--section-padding);
    background: #050510;
    color: #fff;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #00f0ff;
    margin-bottom: var(--space-2);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.stat-item__label {
    font-size: var(--text-sm);
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 767px) {
    .about-values-grid { grid-template-columns: 1fr; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .about-story-grid { grid-template-columns: 1fr 1fr; }
}
