.mp-about {
    position: relative;
    padding: 88px 0;
}

.mp-about-intro {
    background: #fff;
}

.mp-about-mv {
    background: #f7fafc;
}

.mp-about-values {
    background: linear-gradient(180deg, #ffffff 0%, #eef8fb 100%);
}

.mp-about-cta {
    background: #fff;
    padding-top: 20px;
    padding-bottom: 100px;
}

.mp-about__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}

.mp-about__kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eaf7fa;
    color: #1f5f73;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mp-about__title {
    margin: 0 0 18px;
    color: #1f2937;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
}

.mp-about__text p {
    margin: 0 0 16px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.85;
}

.mp-about__image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(31, 95, 115, 0.14);
    margin-bottom: 22px;
}

.mp-about__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mp-about__features {
    display: grid;
    gap: 14px;
}

.mp-aboutFeature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(31, 143, 169, 0.12);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.mp-aboutFeature i {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1f8fa9;
    color: #fff;
    font-size: 18px;
}

.mp-aboutFeature strong {
    display: block;
    margin-bottom: 6px;
    color: #1f2937;
    font-size: 17px;
}

.mp-aboutFeature p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
    font-size: 15px;
}

.mp-aboutCards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mp-aboutCard {
    padding: 34px 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(2, 32, 71, 0.08);
    border: 1px solid rgba(31, 143, 169, 0.10);
}

.mp-aboutCard__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f8fa9 0%, #1f5f73 100%);
    color: #fff;
    font-size: 24px;
}

.mp-aboutCard h3,
.mp-valueCard h3 {
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 24px;
}

.mp-aboutCard p,
.mp-valueCard p {
    margin: 0;
    color: #5b6472;
    line-height: 1.8;
    font-size: 16px;
}

.mp-section-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.mp-valuesGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.mp-valueCard {
    padding: 28px 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(31, 143, 169, 0.1);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.mp-valueCard__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf7fa;
    color: #1f5f73;
    font-size: 22px;
}

.mp-aboutCta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #1f5f73 0%, #1f8fa9 100%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(31, 95, 115, 0.24);
}

.mp-aboutCta__content h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
}

.mp-aboutCta__content p {
    margin: 0;
    max-width: 760px;
    color: rgba(255,255,255,.92);
    line-height: 1.8;
}

.mp-aboutCta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mp-aboutCta__btn {
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .mp-valuesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .mp-about {
        padding: 68px 0;
    }

    .mp-about__grid,
    .mp-aboutCards {
        grid-template-columns: 1fr;
    }

    .mp-aboutCta {
        flex-direction: column;
        align-items: flex-start;
    }
}

.mp-aboutCta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.mp-aboutCta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: all .25s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.mp-aboutCta__btn.pd-btn {
    background: #ffffff;
    color: #1f5f73;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.mp-aboutCta__btn.pd-btn:hover {
    transform: translateY(-2px);
    background: #f4fbfd;
    color: #154b5b;
}

.mp-aboutCta__btn.pd-btn--ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: none;
}

.mp-aboutCta__btn.pd-btn--ghost:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #1f5f73;
    border-color: #ffffff;
}

@media (max-width: 767px) {
    .mp-aboutCta__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .mp-aboutCta__btn {
        width: 100%;
        min-height: 50px;
    }
}

@media (max-width: 767px) {
    .mp-about {
        padding: 54px 0;
    }

    .mp-valuesGrid {
        grid-template-columns: 1fr;
    }

    .mp-aboutCard,
    .mp-valueCard,
    .mp-aboutFeature {
        border-radius: 18px;
    }

    .mp-about__text p,
    .mp-aboutCard p,
    .mp-valueCard p,
    .mp-aboutCta__content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .mp-aboutCta {
        padding: 24px 20px;
    }

    .mp-aboutCta__actions {
        width: 100%;
    }

    .mp-aboutCta__btn {
        width: 100%;
        text-align: center;
    }
}