


.about-hero {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: var(--site-hero-min-height);
    padding: var(--site-hero-padding-top) 0 var(--site-hero-padding-bottom);
    box-sizing: border-box;
    position: relative;
    color: #ecfff9;
    overflow: hidden;
    background-size: cover;
    background-position: center 56%;
    background-color: #0f766e;
    z-index: 1;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(5, 18, 26, 0.92) 0%, rgba(7, 25, 30, 0.76) 38%, rgba(7, 25, 30, 0.18) 72%, rgba(7, 25, 30, 0.08) 100%);
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.about-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bceee5;
    font-weight: 700;
}

.about-hero h1 {
    color: #ffffff;
    font-size: clamp(1.85rem, 4.2vw, 2.9rem);
    line-height: 1.2;
}

.about-hero-desc {
    max-width: 760px;
    color: #d7f7ef;
    font-size: 1rem;
    margin-bottom: 1.15rem;
}

.about-hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.about-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.about-trust-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #083f38;
    background: #d5f7ef;
    border: 1px solid #a8e8db;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 1.4rem;
}

.about-story-head p {
    max-width: 340px;
}

.about-story-body p {
    color: #2b4056;
    line-height: 1.7;
}

.about-media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.about-media-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(13, 37, 64, 0.1);
    box-shadow: var(--shadow-soft);
    background: #f5f8fc;
}

.about-media-card img,
.about-media-card video {
    width: 100%;
    height: 100%;
    min-height: 240px;
    max-height: 320px;
    object-fit: cover;
    display: block;
}

.about-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.about-metric-card {
    background: linear-gradient(155deg, #f7fbfd, #edf5fb);
    border: 1px solid rgba(13, 37, 64, 0.12);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.about-metric-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.about-metric-card p {
    font-size: 0.88rem;
    color: #4f657d;
}

.about-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-capability-card {
    background: var(--surface);
    border: 1px solid rgba(13, 37, 64, 0.08);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    box-shadow: var(--shadow-soft);
}

.about-capability-card h3 {
    font-size: 1.04rem;
    margin-bottom: 0.35rem;
}

.about-capability-card p {
    color: #526880;
}

.about-cert-panel,
.about-confidence {
    background: var(--surface);
}

.about-cert-list {
    display: grid;
    gap: 0.6rem;
}

.about-cert-card {
    border: 1px solid rgba(13, 37, 64, 0.14);
    border-radius: 10px;
    background: #f7fbfd;
    padding: 0.65rem 0.8rem;
    font-weight: 600;
    color: #23405f;
}

.about-quote-list {
    display: grid;
    gap: 0.7rem;
}

.about-quote {
    margin: 0;
    border-left: 4px solid #86d9ca;
    background: #f7fcfb;
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    color: #2e4a67;
    font-size: 0.92rem;
    line-height: 1.6;
}

.about-final-cta {
    padding: 3rem 0;
    background: linear-gradient(120deg, #13263f, #1b3555);
    color: #e7eff9;
}

.about-final-cta-inner {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.about-final-cta h2 {
    color: #ffffff;
}

.about-final-cta p {
    color: #d0deef;
}

.about-final-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .about-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 575.98px) {
    .about-hero-desc {
        margin-bottom: 0.75rem;
    }

    .about-hero-actions {
        margin-bottom: 0.5rem;
    }

    .about-hero-actions,
    .about-final-actions {
        flex-direction: column;
    }

    .about-hero-actions .btn,
    .about-final-actions .btn {
        width: 100%;
    }

    .about-metrics-grid,
    .about-capability-grid {
        grid-template-columns: 1fr;
    }

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

    .about-media-card img,
    .about-media-card video {
        min-height: 210px;
        max-height: 260px;
    }

    .about-trust-points span {
        width: 100%;
        justify-content: center;
    }
}