/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page {
    background: #ffffff;
}

.about-hero {
    position: relative;
    padding: 82px 0 76px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--header-primary) 0%, var(--header-primary-dark) 100%);
    color: #ffffff;
}

.about-hero::after {
    position: absolute;
    right: -90px;
    bottom: -140px;
    width: 360px;
    height: 360px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}

.about-hero__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-hero h1 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}

.about-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.80);
    font-size: 18px;
    line-height: 1.8;
}

.about-capabilities {
    padding: 82px 0 92px;
}

.about-capabilities__intro {
    margin-bottom: 44px;
}

.about-capabilities__intro h2 {
    margin-bottom: 14px;
    color: var(--header-primary-dark);
    font-size: 34px;
    font-weight: 700;
}

.about-capabilities__intro p {
    max-width: 780px;
    margin: 0 auto;
    color: #637083;
    font-size: 17px;
    line-height: 1.8;
}

.about-card-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.about-card-row > [class*="col-"] {
    display: flex;
}

.about-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 16, 42, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.about-card:hover {
    border-color: rgba(11, 42, 80, 0.22);
    box-shadow: 0 18px 42px rgba(0, 16, 42, 0.14);
    transform: translateY(-5px);
}

.about-card__image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #e9eef4;
}

.about-card__image::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 45%;
    content: "";
    background: linear-gradient(to top, rgba(0, 16, 42, 0.20), transparent);
    pointer-events: none;
}

.about-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-card:hover .about-card__image img {
    transform: scale(1.035);
}

.about-card__body {
    position: relative;
    padding: 30px 32px 32px;
}

.about-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    background: #eef3f8;
    color: var(--header-primary);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

.about-card__heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.about-card__badge {
    display: inline-block;
    margin-top: 3px;
    padding: 6px 10px;
    background: var(--header-primary);
    color: #ffffff;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.about-card h2 {
    margin-bottom: 14px;
    color: var(--header-primary-dark);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.35;
}

.about-card p {
    margin-bottom: 0;
    color: #5d6878;
    font-size: 16px;
    line-height: 1.75;
}

@media screen and (max-width: 991px) {
    .about-hero {
        padding: 66px 0 62px;
    }

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

    .about-capabilities {
        padding: 64px 0 72px;
    }

    .about-card__image {
        height: 250px;
    }
}

@media screen and (max-width: 767px) {
    .about-hero {
        padding: 52px 0 48px;
    }

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

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

    .about-capabilities {
        padding: 48px 0 54px;
    }

    .about-capabilities__intro {
        margin-bottom: 30px;
    }

    .about-capabilities__intro h2 {
        font-size: 28px;
    }

    .about-card-row {
        display: block;
        margin-bottom: 0;
    }

    .about-card-row > [class*="col-"] {
        display: block;
    }

    .about-card {
        margin-bottom: 26px;
    }

    .about-card__image {
        height: 235px;
    }

    .about-card__body {
        padding: 25px 24px 27px;
    }

    .about-card h2 {
        font-size: 23px;
    }
}
