/* ============================================================
   SM FREIGHT — ABOUT PAGE
   ============================================================ */

/* -------------------- STATS STRIP -------------------- */
.stats-strip {
    padding: 0;
    margin-top: -46px;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.stat-item {
    padding: 34px 26px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-value {
    font-family: var(--font-head);
    font-size: clamp(30px, 3.4vw, 42px);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: .5px;
    margin-top: 10px;
}

/* -------------------- STORY -------------------- */
.about-story { padding-top: 82px; }

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 62px;
    align-items: start;
}

.story-grid .section-desc { max-width: none; }

.story-actions { margin-top: 30px; }

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.story-card {
    background: var(--light-bg);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius);
    padding: 28px 30px;
    transition: all .3s ease;
}

.story-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.story-card-icon {
    color: var(--orange);
    font-size: 11px;
    margin-bottom: 12px;
}

.story-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.story-card p { font-size: 14.5px; }

/* -------------------- VALUES -------------------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    position: relative;
    transition: all .3s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 34px;
    bottom: 34px;
    width: 3px;
    background: var(--orange);
    opacity: 0;
    transition: opacity .3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-card:hover::before { opacity: 1; }

.value-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.value-card p { font-size: 14.5px; }

/* -------------------- WHO WE SERVE -------------------- */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.serve-card {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 34px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease;
}

.serve-card:hover { transform: translateY(-6px); }

.serve-card::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(238, 84, 39, .3) 0%, transparent 70%);
}

.serve-stage {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 16px;
}

.serve-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
}

.serve-card p {
    color: rgba(255, 255, 255, .74);
    font-size: 14.5px;
    position: relative;
}

/* -------------------- RESPONSIVE -------------------- */
@media screen and (max-width: 1100px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }

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

@media screen and (max-width: 980px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-story { padding-top: 66px; }
}

@media screen and (max-width: 700px) {
    .stats-strip { margin-top: -32px; }

    .stats-grid { grid-template-columns: 1fr; }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 26px 20px;
    }

    .stat-item:last-child { border-bottom: none; }

    .values-grid,
    .serve-grid { grid-template-columns: 1fr; }

    .story-card,
    .value-card,
    .serve-card { padding: 28px 24px; }
}
