/* ── Hero ── */
.about-hero {
    background: linear-gradient(135deg, #212529 0%, #343a40 60%, #ffc107 100%);
    min-height: 320px;
    display: flex;
    align-items: center;
}

/* ── Stats ── */
.about-stats { background: #212529; }

.stat-item { padding: 2rem 1rem; }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffc107;
    line-height: 1;
}

.stat-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    margin-top: .5rem;
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* ── Mission ── */
.mission-badge {
    display: inline-block;
    background: #ffc107;
    color: #212529;
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.mission-visual {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    color: #fff;
}

/* ── Process ── */
.step-number {
    width: 60px;
    height: 60px;
    background: #ffc107;
    color: #212529;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-connector {
    position: absolute;
    top: 30px;
    left: calc(50% + 30px);
    right: calc(-50% + 30px);
    height: 2px;
    background: #dee2e6;
    z-index: 0;
}

.process-step { position: relative; }

@media (max-width: 767px) {
    .step-connector { display: none !important; }
}

/* ── Values ── */
.value-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .75rem 1.75rem rgba(0, 0, 0, .1) !important;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 193, 7, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}

/* ── Team ── */
.team-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .75rem 1.75rem rgba(0, 0, 0, .1) !important;
}

.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #212529, #495057);
    color: #ffc107;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* ── CTA ── */
.about-cta {
    background: linear-gradient(135deg, #212529 0%, #343a40 60%, #ffc107 100%);
}
