/* About page — aligned with home-page / product-pages design system */

.about-page {
    --about-primary: #082769;
    --about-accent: #f28a0c;
    --about-text: #243044;
    --about-muted: #667085;
    --about-border: #e5eaf3;
    --about-soft: #f5f8fc;
    --about-radius: 18px;
    --about-shadow: 0 18px 45px rgba(8, 39, 105, 0.08);
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 280px);
    color: var(--about-text);
    font-size: 16px;
    line-height: 1.78;
}

.about-page *,
.about-page *:before,
.about-page *:after {
    box-sizing: border-box;
}

/* Full-bleed banner — no dark overlay, no leftover page-title gap */
.about-page .about-page-banner {
    padding: 0 !important;
    margin: 0;
    line-height: 0;
    overflow: hidden;
    background: none;
    text-align: left;
}

.about-page .about-page-banner:before {
    display: none;
}

.about-page .about-page-banner .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.about-page .about-page-banner img {
    display: block;
    width: 100%;
    height: auto;
    /* crop white canvas above and below the graphic */
    margin: -52px 0 -48px;
}

/* Content shell */
.about-page .about-page-content {
    padding: 12px 0 56px;
}

.about-page .about-panel {
    background: #ffffff;
    border: 1px solid var(--about-border);
    border-radius: var(--about-radius);
    box-shadow: var(--about-shadow);
    padding: 36px 40px;
}

.about-page .about-block {
    margin: 0 0 36px;
}

.about-page .about-block:last-child {
    margin-bottom: 0;
}

.about-page .about-block p {
    color: var(--about-text);
    margin: 0 0 14px;
}

.about-page .about-block p:last-child {
    margin-bottom: 0;
}

.about-page .about-block strong {
    color: var(--about-primary);
    font-weight: 700;
}

.about-page .about-lead {
    color: var(--about-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.28;
    margin: 0 0 22px;
    text-align: center;
}

.about-page .about-section-title {
    border-left: 4px solid var(--about-accent);
    color: var(--about-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.32;
    margin: 0 0 14px;
    padding-left: 14px;
}

/* Why Choose checklist */
.about-page .about-checklist {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.about-page .about-checklist li {
    color: var(--about-text);
    line-height: 1.65;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.about-page .about-checklist li:last-child {
    margin-bottom: 0;
}

.about-page .about-checklist li:before {
    background: var(--about-accent);
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 7px;
    position: absolute;
    top: 10px;
    width: 8px;
}

/* Industries chips */
.about-page .about-industry-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.about-page .about-industry-chips li {
    background: var(--about-soft);
    border: 1px solid var(--about-border);
    border-radius: 999px;
    color: var(--about-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    padding: 8px 16px;
}

/* Vision / Mission */
.about-page .about-vm {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.about-page .about-vm__card {
    background: var(--about-soft);
    border: 1px solid var(--about-border);
    border-radius: 14px;
    padding: 22px 24px;
}

.about-page .about-vm__card .about-section-title {
    font-size: 20px;
}

.about-page .about-closing-line {
    color: var(--about-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-top: 8px;
}

@media (max-width: 991px) {
    .about-page .about-page-banner img {
        margin: -40px 0 -36px;
    }

    .about-page .about-page-content {
        padding: 12px 0 40px;
    }

    .about-page .about-panel {
        padding: 28px 22px;
    }

    .about-page .about-lead {
        font-size: 24px;
    }

    .about-page .about-section-title {
        font-size: 20px;
    }

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

@media (max-width: 575px) {
    .about-page .about-page-banner img {
        margin: -28px 0 -28px;
    }

    .about-page .about-panel {
        border-radius: 14px;
        padding: 22px 16px;
    }

    .about-page .about-lead {
        font-size: 20px;
        text-align: left;
    }

    .about-page .about-industry-chips li {
        font-size: 13px;
        padding: 7px 12px;
    }
}

/* Certifications page hero banner */
.certifications-page .certifications-banner {
    padding: 0 20px 20px !important;
    margin: 0;
    line-height: 0;
    overflow: hidden;
    background: none;
    text-align: left;
}

.certifications-page .main-header + .certifications-banner {
    margin-top: 0;
}

.certifications-page .certifications-banner:before {
    display: none;
}

.certifications-page .certifications-banner .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.certifications-page .certifications-banner img {
    display: block;
    width: 100%;
    height: auto;
    margin: -90px 0 0; /* crop more white strip at top of PNG */
    transform: scale(1.08); /* slight zoom */
    transform-origin: center top;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(8, 39, 105, 0.12);
}

.certifications-page .about-page-content {
    padding-top: 16px;
}

@media (max-width: 575px) {
    .certifications-page .certifications-banner {
        padding: 0 12px 12px !important;
    }

    .certifications-page .certifications-banner img {
        margin-top: -56px;
        transform: scale(1.05);
        border-radius: 12px;
    }
}

/* Certifications page hero (text fallback — unused when banner image is present) */
.certifications-page .certifications-hero {
    background: linear-gradient(135deg, #082769 0%, #0d3a8c 55%, #1a4fa8 100%);
    padding: 48px 24px;
    text-align: center;
}

.certifications-page .certifications-hero__eyebrow {
    color: rgba(255, 255, 255, 0.85);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.certifications-page .certifications-hero h1 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.28;
    margin: 0;
}

@media (max-width: 991px) {
    .certifications-page .certifications-hero h1 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .certifications-page .certifications-hero {
        padding: 36px 16px;
    }

    .certifications-page .certifications-hero h1 {
        font-size: 24px;
    }
}
