.about-page .inner-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.about-page .inner-hero-bg,
.about-page .inner-hero-overlay {
    position: absolute;
    inset: 0;
}

.about-page .inner-hero-bg {
    background:
        url("img/rectangle-4.png")
        center / cover
        no-repeat;

    transform: scale(1.02);
}

.about-page .inner-hero-overlay{
    background:linear-gradient(
        90deg,
        rgba(21,85,112,.95) 0%,
        rgba(21,85,112,.82) 50%,
        rgba(21,85,112,.45) 100%
    );
}

.about-page .inner-hero-content {
    position: relative;
    z-index: 1;

    /* Huwag lagyan ng width: 100% */
    padding-top: 105px;
    padding-bottom: 105px;
}

.about-page .inner-hero-content > * {
    max-width: 820px;
}

.about-page .inner-hero h1 {
    max-width: 820px;
    margin: 0;

    font-size: clamp(
        44px,
        5.5vw,
        70px
    );

    line-height: 1.05;
    letter-spacing: -.045em;
}

.about-page .inner-hero-content > p {
    max-width: 690px;
    margin: 25px 0 0;

    color: rgba(
        255,
        255,
        255,
        .82
    );

    font-size: 17px;
    line-height: 1.75;
}

.about-page .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    max-width: none;
    margin-bottom: 24px;

    color: rgba(
        255,
        255,
        255,
        .72
    );

    font-size: 13px;
}

.about-page .breadcrumb a {
    transition: color .2s;
}

.about-page .breadcrumb a:hover {
    color: var(--accent);
}

.about-page .about-intro-grid {
    align-items: center;
}

.about-page .about-badge-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.about-page .about-badge-row div {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
}

.about-page .about-badge-row strong,
.about-page .about-badge-row span {
    display: block;
}

.about-page .about-badge-row strong {
    color: var(--primary);
    font-size: 21px;
}

.about-page .about-badge-row span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.about-page .about-collage {
    position: relative;
    min-height: 560px;
}

.about-page .about-image {
    position: absolute;
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            #dceaf0,
            #f4f8fa
        );
    box-shadow: var(--shadow);
}

.about-page .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .about-image-large {
    top: 0;
    right: 0;
    width: 78%;
    height: 455px;
}

.about-page .about-image-small {
    left: 0;
    bottom: 0;
    width: 50%;
    height: 245px;
    border: 8px solid #fff;
}

.about-page .about-image > span,
.about-page .story-image > span {
    display: none;
    position: absolute;
    inset: 0;
    place-items: center;
    color: var(--primary);
    font-weight: 700;
}

.about-page .image-placeholder.missing-image > span {
    display: grid;
}

.about-page .experience-card {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: 235px;
    padding: 24px;
    border-radius: 18px;
    background: var(--primary-dark);
    color: #fff;
    box-shadow: var(--shadow);
}

.about-page .experience-card span,
.about-page .experience-card strong {
    display: block;
}

.about-page .experience-card span {
    margin-bottom: 9px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
}

.about-page .story-section {
    overflow: hidden;
}

.about-page .story-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.about-page .story-image {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            #dceaf0,
            #f4f8fa
        );
    box-shadow: var(--shadow);
}

.about-page .story-image img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
}

.about-page .mission-card {
    display: flex;
    gap: 18px;
    margin-top: 20px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.about-page .mission-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 21px;
    font-weight: 800;
}

.about-page .mission-card h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.about-page .mission-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.about-page .values-section {
    background: var(--primary-dark);
    color: #fff;
}

.about-page .values-section .eyebrow {
    color: var(--accent);
}

.about-page .values-section .section-heading {
    max-width: 780px;
}

.about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-page .value-card {
    min-height: 265px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
}

.about-page .value-card > span {
    display: inline-block;
    margin-bottom: 42px;
    color: var(--accent);
    font-weight: 800;
}

.about-page .value-card h3 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 20px;
}

.about-page .value-card p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
}

.about-page .faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: start;
}

.about-page .faq-heading {
    position: sticky;
    top: 130px;
}

.about-page .faq-heading p {
    margin-bottom: 30px;
    color: var(--muted);
}

.about-page .faq-list {
    display: grid;
    gap: 14px;
}

.about-page .faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    transition:
        border-color .25s,
        box-shadow .25s;
}

.about-page .faq-item.open {
    border-color: rgba(21, 85, 112, .28);
    box-shadow: 0 14px 35px rgba(15, 61, 79, .09);
}

.about-page .faq-question {
    width: 100%;
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 18px 22px;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    font-weight: 800;
    cursor: pointer;
}

.about-page .faq-symbol {
    flex: 0 0 auto;
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
    transition: transform .25s;
}

.about-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height .35s ease,
        padding .35s ease;
}

.about-page .faq-answer p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 14px;
}

.about-page .faq-item.open .faq-answer {
    max-height: 260px;
}

.about-page .faq-item.open .faq-symbol {
    transform: rotate(45deg);
}

.about-page .about-cta {
    padding: 90px 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(39, 185, 239, .24),
            transparent 30%
        ),
        var(--primary);
}

.about-page .about-cta-inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 55px;
    align-items: center;
}

.about-page .about-cta h2 {
    max-width: 750px;
}

.about-page .about-cta p {
    max-width: 720px;
    color: rgba(255, 255, 255, .75);
}

.about-page .about-cta-actions {
    display: flex;
    justify-content: flex-end;
    gap: 13px;
    flex-wrap: wrap;
}

@media (max-width: 1020px) {
    .about-page .story-grid,
    .about-page .faq-layout,
    .about-page .about-cta-inner {
        grid-template-columns: 1fr;
    }

    .about-page .about-collage {
        min-height: 520px;
    }

    .about-page .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .faq-heading {
        position: static;
    }

    .about-page .about-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .about-page .inner-hero {
        min-height: 480px;
    }

    .about-page .inner-hero-content {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .about-page .inner-hero h1 {
        max-width: 100%;
        font-size: 40px;
        line-height: 1.08;
    }

    .about-page .inner-hero-content > p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
    }

    .about-page .about-badge-row,
    .about-page .values-grid {
        grid-template-columns: 1fr;
    }

    .about-page .about-collage {
        min-height: 470px;
    }

    .about-page .about-image-large {
        width: 88%;
        height: 360px;
    }

    .about-page .about-image-small {
        width: 58%;
        height: 205px;
    }

    .about-page .experience-card {
        right: 10px;
        bottom: 10px;
        width: 205px;
        padding: 18px;
    }

    .about-page .story-grid {
        gap: 45px;
    }

    .about-page .story-image,
    .about-page .story-image img {
        min-height: 410px;
    }

    .about-page .value-card {
        min-height: auto;
    }

    .about-page .about-cta {
        padding: 75px 0;
    }

    .about-page .about-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.about-page .feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    background: rgba(21, 85, 112, 0.1);
    color: #155570;
}

.about-page .feature-icon svg {
    display: block;
    width: 28px;
    height: 28px;
}

.about-page .mission-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}