/* ============================================================
   about.min.css — styles specific to about.html
   Uses design tokens from css/global.min.css (:root variables)
   ============================================================ */

/* ---------- Hero ---------- */
.about-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
    color: white;
    text-align: center;
    padding: 110px 24px 96px;
}

.about-hero .sec-tag {
    background: rgba(255, 255, 255, .1);
    color: #5eead4;
}

.about-hero h1 {
    font-size: 48px;
    color: white;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---------- Generic section eyebrow tag (shared look) ---------- */
.sec-tag {
    display: inline-block;
    background: var(--teal-pale);
    color: var(--teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
}

/* ---------- Trust statistics ---------- */
.about-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 30px 16px;
    background: var(--off-white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    transition: transform .2s, box-shadow .2s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--slate);
    text-transform: uppercase;
    line-height: 1.4;
}

/* ---------- Certification strip ---------- */
.cert-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border: 1px solid var(--light);
    padding: 12px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.cert-badge i {
    color: var(--teal);
    font-size: 15px;
}

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 1024px) {
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* ============================================================
   RESPONSIVE — mobile
   ============================================================ */
@media (max-width: 768px) {
    .about-hero {
        padding: 72px 20px 60px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .sec-pad {
        padding: 60px 20px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .stat-card {
        padding: 22px 12px;
    }

    .stat-num {
        font-size: 26px;
    }

    .stat-label {
        font-size: 10.5px;
    }

    .cert-strip {
        gap: 10px;
    }

    .cert-badge {
        font-size: 12px;
        padding: 10px 14px;
    }
}

@media (max-width: 420px) {
    .about-hero h1 {
        font-size: 26px;
    }

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

    .cert-badge span {
        max-width: 200px;
    }
}
