/* =========================================================
   GLOBAL POINT TRADE - ABOUT PAGE
========================================================= */

.about-page-hero {
    position: relative;
    color: #fff;
    background:
        linear-gradient(
            90deg,
            rgba(3,35,59,.98) 0%,
            rgba(3,35,59,.92) 47%,
            rgba(3,35,59,.72) 100%
        );
    overflow: hidden;
}

.about-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .14;
    background:
        url("/assets/images/global/world-map-network.png")
        center / cover no-repeat;
}

.about-page-hero-grid {
    position: relative;
    z-index: 2;

    min-height: 470px;

    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
}

.about-page-hero-copy {
    padding: 50px 0;
}

.about-page-hero h1 {
    max-width: 760px;
    margin-bottom: 22px;

    font-size: clamp(48px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.045em;
}

.about-page-hero h1 span {
    color: var(--orange);
}

.about-page-hero-copy > p {
    max-width: 650px;
    margin-bottom: 26px;

    color: rgba(255,255,255,.90);
    font-size: 18px;
    line-height: 1.6;
}

.about-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-page-hero-image {
    height: 390px;
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 20px 55px rgba(0,0,0,.28);
    overflow: hidden;
}

.about-page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* INTRO */
.about-intro-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.about-intro-heading h2 {
    margin-bottom: 0;
}

.about-intro-copy {
    max-width: 760px;
}

.about-intro-copy p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.about-intro-copy .about-intro-lead {
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.55;
}


/* CAPABILITIES */
.about-capabilities-section {
    background: #f6f9fb;
}

.about-centered-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-centered-heading > p {
    margin: -5px auto 0;
    color: var(--muted);
    line-height: 1.65;
}

.about-capabilities-grid {
    margin-top: 34px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-capability-card {
    padding: 32px;

    background: #fff;
    border: 1px solid #dfe7ee;

    box-shadow: var(--shadow);
}

.about-capability-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    color: #0d70e8;
    font-size: 34px;
}

.about-capability-card h3 {
    margin: 17px 0 8px;
    font-size: 20px;
}

.about-capability-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}


/* PROCESS */
.about-process-section {
    padding-top: 68px;
    padding-bottom: 72px;
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-process-card {
    position: relative;
    min-height: 210px;
    padding: 28px 24px;

    border-top: 4px solid var(--orange);
    background: #fff;

    box-shadow: 0 10px 28px rgba(8,45,75,.08);
}

.about-process-number {
    margin-bottom: 28px;

    color: #c8d5df;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.about-process-card h3 {
    margin-bottom: 8px;
    font-size: 17px;
}

.about-process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}


/* VALUES */
.about-values-section {
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #f4f8fb 100%
        );
}

.about-values-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 65px;
    align-items: center;
}

.about-values-copy p {
    max-width: 520px;
    margin-bottom: 24px;

    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-value-card {
    min-height: 155px;
    padding: 24px;

    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 14px;

    background: #fff;
    border: 1px solid #e0e7ed;

    box-shadow: 0 8px 22px rgba(8,45,75,.06);
}

.about-value-card > i {
    color: #0d70e8;
    font-size: 31px;
}

.about-value-card h3 {
    margin: 0 0 5px;
    font-size: 16px;
}

.about-value-card p {
    margin: 0;

    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}


/* GLOBAL REACH */
.about-reach-section {
    color: #fff;
    background: var(--navy-deep);
}

.about-reach-grid {
    min-height: 360px;

    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-reach-copy h2 {
    color: #fff;
}

.about-reach-copy > p {
    max-width: 560px;

    color: rgba(255,255,255,.84);
    font-size: 15px;
    line-height: 1.7;
}

.about-region-list {
    margin-top: 24px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-region-list span {
    padding: 8px 11px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.05);

    font-size: 11px;
}

.about-reach-map img {
    max-height: 310px;
    object-fit: contain;
}


/* FINAL CTA */
.about-final-cta {
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.97),
            rgba(255,255,255,.72)
        ),
        url("/assets/images/cta/port-cta.jpg")
        center / cover no-repeat;
}

.about-final-cta-inner {
    min-height: 190px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-final-cta h2 {
    max-width: 760px;
    margin-bottom: 10px;
}

.about-final-cta p {
    max-width: 700px;
    margin: 0;

    color: var(--muted);
    line-height: 1.6;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .about-page-hero-grid,
    .about-intro-grid,
    .about-values-layout,
    .about-reach-grid {
        grid-template-columns: 1fr;
    }

    .about-page-hero-grid {
        padding: 45px 0;
    }

    .about-page-hero-copy {
        padding: 0;
    }

    .about-page-hero-image {
        height: 330px;
    }

    .about-intro-grid {
        gap: 24px;
    }

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

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

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

    .about-reach-grid {
        padding: 50px 0;
    }

    .about-final-cta-inner {
        padding: 40px 0;

        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .about-page-hero h1 {
        font-size: 42px;
    }

    .about-page-actions {
        flex-direction: column;
    }

    .about-page-actions .btn {
        width: 100%;
    }

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

    .about-page-hero-image {
        height: 280px;
    }
}
