/* ===== ABOUT PAGE — about.css ===== */
/* Semua class pakai prefix ab- agar tidak bentrok */

.ab-hero {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 0;
}

.ab-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

[data-bs-theme="dark"] .ab-badge {
    border-color: rgba(255, 255, 255, 0.1);
}

.ab-section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 1rem;
}

.ab-lead {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
}

/* ===== STAT CARDS ===== */
.ab-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 3.5rem 0;
}

.ab-stat-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    text-align: center;
}

[data-bs-theme="dark"] .ab-stat-card {
    border-color: rgba(255, 255, 255, 0.07);
}

.ab-stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.ab-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== DIVIDER ===== */
.ab-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
    margin: 3rem 0;
}

[data-bs-theme="dark"] .ab-divider {
    background: rgba(255, 255, 255, 0.07);
}

/* ===== TWO COLUMN ===== */
.ab-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

/* ===== IMAGE PLACEHOLDER ===== */
.ab-img-placeholder {
    aspect-ratio: 4/3;
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
}

.ab-img-placeholder img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

[data-bs-theme="dark"] .ab-img-placeholder {
    border-color: rgba(255, 255, 255, 0.07);
}

.ab-img-placeholder svg {
    opacity: 0.15;
    width: 72px;
    height: 72px;
}

/* ===== VALUES GRID ===== */
.ab-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.ab-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.ab-value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ab-value-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--text-muted);
}

[data-bs-theme="dark"] .ab-value-icon {
    border-color: rgba(255, 255, 255, 0.08);
}

.ab-value-title {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.ab-value-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== TEAM GRID ===== */
.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.ab-team-card {
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.25s ease;
}

[data-bs-theme="dark"] .ab-team-card {
    border-color: rgba(255, 255, 255, 0.07);
}

.ab-team-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ab-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.85rem;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
}

[data-bs-theme="dark"] .ab-avatar {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.08);
}

.ab-team-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.ab-team-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.ab-team-socials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.ab-social-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.15s;
}

[data-bs-theme="dark"] .ab-social-btn {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.ab-social-btn:hover {
    background: var(--text);
    color: var(--bg);
    border-color: transparent;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .ab-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ab-stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .ab-team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ab-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ab-stats-row {
        grid-template-columns: 1fr;
    }

    .ab-team-grid {
        grid-template-columns: 1fr;
    }
}