.mp-page-hero{
    position:relative;
    min-height:340px;
    display:flex;
    align-items:flex-end;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.mp-page-hero__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(15,23,42,.22), rgba(15,23,42,.72));
}

.mp-page-hero__inner{
    position:relative;
    z-index:2;
    width:100%;
    padding:110px 0 55px;
}

.mp-page-hero__content{
    max-width:820px;
    color:#fff;
}

.mp-page-hero__breadcrumb{
    margin-bottom:14px;
    font-size:14px;
    color:rgba(255,255,255,.88);
}

.mp-page-hero__breadcrumb a{
    color:#fff;
}

.mp-page-hero__title{
    margin:0 0 14px;
    font-size:clamp(32px, 5vw, 54px);
    line-height:1.08;
    letter-spacing:-0.02em;
}

.mp-page-hero__desc p{
    margin:0;
    font-size:17px;
    color:rgba(255,255,255,.92);
}

.mp-footer{
    position:relative;
    background:
        radial-gradient(circle at top left, rgba(31,143,169,.16), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #162032 100%);
    color:#fff;
    padding:82px 0 24px;
    margin-top:0;
}

.mp-footer__grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
    gap:32px;
}

.mp-footer__title,
.mp-footer__heading{
    margin:0 0 18px;
    color:#fff;
}

.mp-footer__title{
    font-size:28px;
}

.mp-footer__heading{
    font-size:18px;
}

.mp-footer__text{
    margin:0 0 18px;
    color:rgba(255,255,255,.78);
    font-size:15px;
}

.mp-footer__logo img{
    max-height:70px;
    width:auto;
    margin-bottom:16px;
}

.mp-footer__socials{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.mp-footer__socials a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    border:1px solid rgba(255,255,255,.10);
}

.mp-footer__socials a:hover{
    background:var(--mp-primary);
    border-color:var(--mp-primary);
    transform:translateY(-2px);
}

.mp-footer-menu{
    display:grid;
    gap:10px;
}

.mp-footer-menu li a{
    color:rgba(255,255,255,.82);
    font-size:15px;
}

.mp-footer-menu li a:hover,
.mp-footer-blog__link:hover,
.mp-footer-contact__item:hover{
    color:#fff;
}

.mp-footer-blog{
    display:grid;
    gap:14px;
}

.mp-footer-blog__item{
    padding-bottom:14px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.mp-footer-blog__link{
    display:block;
    color:#fff;
    font-weight:700;
    line-height:1.5;
    margin-bottom:6px;
}

.mp-footer-blog__date{
    color:rgba(255,255,255,.62);
    font-size:13px;
}

.mp-footer-contact{
    display:grid;
    gap:14px;
}

.mp-footer-contact__item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:rgba(255,255,255,.82);
    font-size:15px;
}

.mp-footer-contact__item i{
    color:var(--mp-primary);
    margin-top:4px;
    min-width:16px;
}

.mp-footer__bottom{
    margin-top:42px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.08);
}

.mp-footer__bottom p{
    margin:0;
    color:rgba(255,255,255,.66);
    font-size:14px;
}

@media (max-width: 1100px){
    .mp-footer__grid{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 767px){
    .mp-page-hero{
        min-height:280px;
    }

    .mp-page-hero__inner{
        padding:92px 0 38px;
    }

    .mp-page-hero__desc p{
        font-size:15px;
    }

    .mp-footer{
        padding:60px 0 20px;
    }

    .mp-footer__grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .mp-footer__bottom{
        margin-top:28px;
    }
}