@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2')
}

:root {
    --mp-navy: #1e3a5f;
    --mp-navy-dark: #132840;
    --mp-steel: #4a77a1;
    --mp-steel-soft: #dbe7f0;
    --mp-orange: #f77f00;
    --mp-orange-dark: #da6900;
    --mp-bg: #f1f5f9;
    --mp-white: #ffffff;
    --mp-text: #1a1a1a;
    --mp-muted: #657584;
    --mp-line: rgba(30, 58, 95, 0.14);
    --mp-shadow: 0 26px 65px rgba(30, 58, 95, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--mp-bg);
    color: var(--mp-text);
    font-family: 'Poppins' ;
}

a {
    text-decoration: none;
}

.mp-icon {
    width: 1em;
    height: 1em;
    display: block;
    object-fit: contain;
}

.mp-page {
    min-height: 100vh;
    overflow: hidden;
    background: var(--mp-bg);
}

.mp-topbar {
    position: relative;
    z-index: 90;
    min-height: 38px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    background: var(--mp-navy-dark);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
}

.mp-topbar-inner {
    min-height: 38px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
}

.mp-topbar span,
.mp-topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.mp-topbar a {
    justify-self: end;
    color: var(--mp-white);
    font-weight: 700;
    transition: color 0.25s ease;
}

.mp-topbar a:hover {
    color: var(--mp-orange);
}

.mp-topbar .mp-icon {
    filter: brightness(0) invert(1);
}

.mp-topbar-note {
    justify-self: center;
    color: rgba(255, 255, 255, 0.56);
}

.mp-header {
    position: relative;
    z-index: 80;
    min-height: 90px;
    display: flex;
    align-items: center;
    background: var(--mp-white);
    border-bottom: 1px solid var(--mp-line);
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.07);
}

.mp-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 29%;
    height: 4px;
    background: var(--mp-orange);
}

.mp-navbar {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.mp-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--mp-navy);
}

.mp-brand:hover {
    color: var(--mp-orange);
}

.mp-brand-mark {
    position: relative;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--mp-navy-dark);
    background: var(--mp-orange);
    border-radius: 9px 9px 21px 9px;
    box-shadow: 7px 7px 0 var(--mp-steel-soft);
    transition: transform 0.3s ease, border-radius 0.3s ease;
}

.mp-brand-mark::after {
    content: "";
    position: absolute;
    right: 7px;
    bottom: 7px;
    left: 7px;
    height: 3px;
    background: rgba(30, 58, 95, 0.5);
    box-shadow: 0 -6px 0 rgba(30, 58, 95, 0.22);
}

.mp-brand-mark .mp-icon {
    width: 24px;
    height: 24px;
    transform: translateY(-3px);
}

.mp-brand:hover .mp-brand-mark {
    border-radius: 21px 9px 9px 9px;
    transform: translateY(-2px);
}

.mp-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.mp-brand-copy strong {
    font-size: 1.03rem;
    letter-spacing: 0.11em;
}

.mp-brand-copy small {
    margin-top: 6px;
    color: var(--mp-muted);
    font-size:17px;font-weight: bold;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.mp-nav-collapse {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(24px, 3vw, 44px);
}

.mp-nav-list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 30px);
    list-style: none;
}

.mp-nav-link {
    position: relative;
    padding: 35px 0 33px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #465767;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    transition: color 0.25s ease;
}

.mp-nav-link::-webkit-details-marker {
    display: none;
}

.mp-nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    height: 2px;
    background: var(--mp-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.mp-nav-link:hover,
.mp-nav-link.active,
.mp-dropdown[open]>.mp-nav-link {
    color: var(--mp-navy);
}

.mp-nav-link:hover::after,
.mp-nav-link.active::after,
.mp-dropdown[open]>.mp-nav-link::after {
    transform: scaleX(1);
}

.mp-chevron {
    color: var(--mp-orange);
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.mp-dropdown[open]>.mp-nav-link .mp-chevron {
    transform: rotate(180deg);
}

.mp-dropdown {
    position: relative;
}

.mp-dropdown-menu {
    position: absolute;
    top: calc(100% - 17px);
    left: -28px;
    width: 294px;
    padding: 10px;
    display: grid;
    visibility: hidden;
    opacity: 0;
    background: var(--mp-white);
    border-top: 4px solid var(--mp-orange);
    border-radius: 0 0 13px 13px;
    box-shadow: var(--mp-shadow);
    transform: translateY(13px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mp-dropdown:hover .mp-dropdown-menu,
.mp-dropdown:focus-within .mp-dropdown-menu,
.mp-dropdown[open] .mp-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mp-dropdown-menu a {
    padding: 10px;
    display: grid;
    grid-template-columns: 38px 1fr 20px;
    align-items: center;
    gap: 10px;
    color: var(--mp-text);
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.mp-menu-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--mp-steel-soft);
    border-radius: 7px;
}

.mp-menu-icon .mp-icon {
    width: 18px;
    height: 18px;
}

.mp-menu-arrow {
    color: var(--mp-orange);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.mp-dropdown-menu a:hover {
    color: var(--mp-navy);
    background: var(--mp-bg);
    transform: translateX(4px);
}

.mp-dropdown-menu a:hover .mp-menu-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mp-call-button {
    min-height: 56px;
    padding: 8px 17px 8px 9px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--mp-white);
    background: var(--mp-orange);
    border: 1px solid var(--mp-orange);
    border-radius: 8px 8px 20px 8px;
    box-shadow: 0 12px 28px rgba(247, 127, 0, 0.25);
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mp-call-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    background: var(--mp-navy);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
    animation: mpRing 2.2s ease-out infinite;
}

.mp-call-icon .mp-icon {
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
}

.mp-call-button>span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.mp-call-button small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mp-call-button strong {
    font-size: 0.9rem;
}

.mp-call-button:hover {
    color: var(--mp-white);
    background: var(--mp-navy);
    border-color: var(--mp-navy);
    box-shadow: 0 15px 32px rgba(30, 58, 95, 0.23);
    transform: translateY(-3px);
}

.mp-nav-toggle {
    width: 48px;
    height: 44px;
    display: none;
    place-content: center;
    gap: 5px;
    background: var(--mp-navy);
    border-radius: 7px 7px 16px 7px;
    cursor: pointer;
}

.mp-nav-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--mp-white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mp-hero {
    position: relative;
    min-height: calc(100vh - 128px);
    padding: clamp(70px, 7vw, 104px) 0 0;
    background-color: var(--mp-bg);
    background-image:
        linear-gradient(rgba(74, 119, 161, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 119, 161, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.95), transparent 33%);
    background-size: 30px 30px, 30px 30px, 100% 100%;
}

.mp-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 46%;
    background: var(--mp-navy);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.mp-hero::after {
    content: "GARAGE";
    position: absolute;
    top: 9%;
    left: 3%;
    color: transparent;
     font-size: clamp(7rem, 16vw, 15rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    -webkit-text-stroke: 1px rgba(30, 58, 95, 0.055);
    pointer-events: none;
    white-space: nowrap;
}

.mp-blueprint-line {
    position: absolute;
    z-index: 1;
    display: block;
    border: 1px solid rgba(247, 127, 0, 0.28);
    border-radius: 50%;
    pointer-events: none;
}

.line-one {
    top: 11%;
    right: 5%;
    width: 92px;
    height: 92px;
    animation: mpPulse 5s ease-in-out infinite;
}

.line-two {
    bottom: 21%;
    left: -55px;
    width: 150px;
    height: 150px;
}

.mp-hero-container {
    position: relative;
    z-index: 2;
}

.mp-copy {
    max-width: 610px;
    padding: 10px 12px 0 0;
    animation: mpRevealLeft 0.85s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.mp-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 23px;
    color: var(--mp-navy);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mp-eyebrow span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    background: var(--mp-orange);
    border-radius: 4px 4px 12px 4px;
    font-size: 0.68rem;
    letter-spacing: 0;
    box-shadow: 6px 6px 0 rgba(74, 119, 161, 0.16);
}

.mp-copy h1 {
    margin: 0;
    color: var(--mp-navy);

    font-size: 57px;
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -0.055em;
}

.mp-copy h1 em {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 13px;
    color: var(--mp-orange);
    font-style: normal;
}

.mp-copy h1 em::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -8px;
    bottom: 4px;
    left: -8px;
    height: 13px;
    background: rgba(74, 119, 161, 0.2);
    transform: rotate(-1deg);
}

.mp-copy>p {
    max-width: 565px;
    margin: 28px 0 31px;
    color: var(--mp-muted);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.75;
}

.mp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.mp-btn {
    min-height: 58px;
    padding: 14px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 7px 7px 18px 7px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.mp-btn span {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.mp-btn-orange {
    color: var(--mp-white);
    background: var(--mp-orange);
    border-color: var(--mp-orange);
    box-shadow: 0 15px 34px rgba(247, 127, 0, 0.22);
}

.mp-btn-orange:hover {
    color: var(--mp-white);
    background: var(--mp-navy);
    border-color: var(--mp-navy);
    transform: translateY(-4px);
}

.mp-btn-orange:hover span {
    transform: translate(3px, -3px);
}

.mp-btn-outline {
    color: var(--mp-navy);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(30, 58, 95, 0.28);
}

.mp-btn-outline:hover {
    color: var(--mp-white);
    background: var(--mp-steel);
    border-color: var(--mp-steel);
    transform: translateY(-4px);
}

.mp-btn-outline:hover span {
    transform: translateY(3px);
}

.mp-trust-row {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
}

.mp-trust-row div {
    min-width: 122px;
    padding: 1px 20px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--mp-line);
}

.mp-trust-row div:first-child {
    padding-left: 0;
    border-left: 0;
}

.mp-trust-row strong {
    color: var(--mp-navy);

    font-size: 1.13rem;
}

.mp-trust-row small {
    margin-top: 4px;
    color: var(--mp-muted);
    font-size: 0.67rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mp-visual {
    position: relative;
    width: min(100%, 610px);
    min-height: 590px;
    margin-left: auto;
    padding: 25px 30px 25px 62px;
    animation: mpRevealRight 0.9s cubic-bezier(0.2, 0.65, 0.2, 1) 0.08s both;
}

.mp-visual-panel {
    position: absolute;
    z-index: 0;
    inset: 0 0 0 17px;
    background: var(--mp-steel);
    border-radius: 12px 116px 12px 12px;
    box-shadow: var(--mp-shadow);
}

.mp-visual-panel::before {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px 103px 8px 8px;
}

.mp-orange-rail {
    position: absolute;
    z-index: 1;
    top: 51px;
    bottom: 51px;
    left: 38px;
    width: 13px;
    background: var(--mp-orange);
    border-radius: 20px;
    box-shadow: 0 0 0 8px rgba(247, 127, 0, 0.13);
}

.mp-photo {
    position: relative;
    z-index: 2;
    min-height: 540px;
    overflow: hidden;
    background: var(--mp-navy);
    border: 7px solid var(--mp-white);
    border-radius: 9px 92px 9px 9px;
    box-shadow: 0 24px 50px rgba(19, 40, 64, 0.28);
}

.mp-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(19, 40, 64, 0.38));
    pointer-events: none;
}

.mp-photo img {
    width: 100%;
    height: 540px;
    display: block;
    object-fit: cover;
    object-position: 52% center;
    transform: scale(1.02);
    transition: transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1), filter 0.45s ease;
}

.mp-visual:hover .mp-photo img {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.07);
}

.mp-status-card {
    position: absolute;
    z-index: 4;
    top: 74px;
    left: 1px;
    min-width: 260px;
    padding: 13px 18px 13px 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--mp-text);
    background: rgba(255, 255, 255, 0.96);
    border-left: 4px solid var(--mp-orange);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(19, 40, 64, 0.22);
    backdrop-filter: blur(8px);
    animation: mpFloat 4.5s ease-in-out infinite;
}

.mp-status-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: none;
    background: var(--mp-steel-soft);
    border-radius: 6px 6px 15px 6px;
}

.mp-status-icon .mp-icon {
    width: 21px;
    height: 21px;
}

.mp-status-card div {
    display: flex;
    flex-direction: column;
}

.mp-status-card small {
    margin-bottom: 4px;
    color: var(--mp-steel);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.mp-status-card strong {
    color: var(--mp-navy);
    font-size: 0.82rem;
}

.mp-experience-card {
    position: absolute;
    z-index: 4;
    right: -12px;
    bottom: 66px;
    width: 234px;
    padding: 17px 18px;
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 13px;
    color: var(--mp-white);
    background: var(--mp-navy-dark);
    border-bottom: 5px solid var(--mp-orange);
    border-radius: 8px 8px 23px 8px;
    box-shadow: 0 20px 45px rgba(19, 40, 64, 0.34);
    animation: mpFloat 4.8s ease-in-out -2.1s infinite;
}

.mp-experience-card strong {
    color: var(--mp-orange);

    font-size: 1.75rem;
}

.mp-experience-card span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.7rem;
    line-height: 1.45;
}

.mp-dot-field {
    position: absolute;
    z-index: 3;
    right: -22px;
    bottom: 2px;
    width: 132px;
    height: 115px;
    background-image: radial-gradient(circle at 2px 2px, var(--mp-orange) 1.6px, transparent 1.7px);
    background-size: 13px 13px;
    mask-image: linear-gradient(135deg, transparent 4%, #000 78%);
    pointer-events: none;
}

.mp-service-dock {
    position: relative;
    z-index: 5;
    margin-top: clamp(56px, 7vw, 92px);
    background: var(--mp-white);
    border-top: 5px solid var(--mp-orange);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -16px 50px rgba(30, 58, 95, 0.12);
    overflow: hidden;
}

.mp-service-item {
    position: relative;
    min-height: 157px;
    padding: 28px 20px;
    display: grid;
    grid-template-columns: 47px 1fr 22px;
    align-items: center;
    gap: 14px;
    color: var(--mp-text);
    border-right: 1px solid var(--mp-line);
    transition: color 0.32s ease, background-color 0.32s ease, transform 0.32s ease;
    overflow: hidden;
}

.mp-service-item::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 105px;
    height: 105px;
    background: rgba(74, 119, 161, 0.08);
    border-radius: 50%;
    transition: transform 0.45s ease, background-color 0.32s ease;
}

.mp-service-count {
    position: absolute;
    top: 13px;
    right: 14px;
    color: rgba(30, 58, 95, 0.28);
    
    font-size: 0.68rem;
    font-weight: 700;
}

.mp-service-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    background: var(--mp-steel-soft);
    border-radius: 7px 7px 16px 7px;
    transition: background-color 0.32s ease, transform 0.32s ease;
}

.mp-service-icon .mp-icon {
    width: 21px;
    height: 21px;
}

.mp-service-copy {
    display: flex;
    flex-direction: column;
}

.mp-service-copy strong {
    color: var(--mp-navy);
    font-size: 0.94rem;
}

.mp-service-copy small {
    margin-top: 7px;
    color: var(--mp-muted);
    font-size: 0.72rem;
    line-height: 1.45;
}

.mp-service-arrow {
    color: var(--mp-orange);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mp-service-item:hover {
    color: var(--mp-white);
    background: var(--mp-navy);
    transform: translateY(-4px);
}

.mp-service-item:hover::before {
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.35);
}

.mp-service-item:hover .mp-service-icon {
    background: var(--mp-orange);
    transform: rotate(-5deg) scale(1.06);
}

.mp-service-item:hover .mp-service-copy strong,
.mp-service-item:hover .mp-service-copy small {
    color: var(--mp-white);
}

.mp-service-item:hover .mp-service-copy small {
    opacity: 0.7;
}

.mp-service-item:hover .mp-service-arrow {
    transform: translateX(5px);
}

@keyframes mpRevealLeft {
    from {
        opacity: 0;
        transform: translateX(-34px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mpRevealRight {
    from {
        opacity: 0;
        transform: translateX(34px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mpFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes mpPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.08);
    }
}

@keyframes mpRing {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.34);
    }

    70%,
    100% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@media (max-width: 1199.98px) {
    .mp-call-button {
        display: none;
    }

    .mp-visual {
        min-height: 545px;
        padding-left: 54px;
    }

    .mp-photo,
    .mp-photo img {
        height: 495px;
        min-height: 495px;
    }

    .mp-service-item {
        min-height: 145px;
    }
}

@media (max-width: 991.98px) {
    .mp-topbar-note {
        display: none;
    }

    .mp-topbar-inner {
        grid-template-columns: 1fr 1fr;
    }

    .mp-header,
    .mp-navbar {
        min-height: 78px;
    }

    .mp-nav-toggle {
        display: grid;
    }

    .mp-nav-collapse {
        position: absolute;
        top: 78px;
        right: 0;
        left: 0;
        padding: 18px 24px 24px;
        display: grid;
        gap: 18px;
        visibility: hidden;
        opacity: 0;
        background: var(--mp-white);
        border-top: 1px solid var(--mp-line);
        box-shadow: 0 24px 45px rgba(30, 58, 95, 0.16);
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .mp-nav-check:checked~.mp-nav-collapse {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .mp-nav-check:checked+.mp-nav-toggle span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .mp-nav-check:checked+.mp-nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .mp-nav-check:checked+.mp-nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mp-nav-list {
        display: grid;
        align-items: stretch;
        gap: 0;
    }

    .mp-nav-link {
        width: 100%;
        padding: 12px 0;
    }

    .mp-nav-link::after {
        bottom: 6px;
    }

    .mp-dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0;
        display: grid;
        visibility: visible;
        opacity: 1;
        overflow: hidden;
        background: var(--mp-bg);
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: none;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .mp-dropdown[open] .mp-dropdown-menu {
        max-height: 290px;
        padding: 8px;
    }

    .mp-call-button {
        display: inline-flex;
        justify-self: start;
    }

    .mp-hero {
        padding-top: 62px;
    }

    .mp-hero::before {
        top: 46%;
        width: 100%;
        clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
    }

    .mp-copy {
        max-width: 760px;
    }

    .mp-copy h1 {
        font-size: clamp(4rem, 11vw, 6.4rem);
    }

    .mp-visual {
        margin: 12px auto 0;
    }

    .mp-service-dock {
        margin-top: 66px;
        border-radius: 12px;
    }

    .mp-service-item {
        border-bottom: 1px solid var(--mp-line);
    }
}

@media (max-width: 767.98px) {
    .mp-topbar {
        display: none;
    }

    .mp-hero {
        min-height: calc(100vh - 78px);
        padding-top: 50px;
    }

    .mp-brand-copy small {
        display: none;
    }

    .mp-copy h1 {
        font-size: clamp(3.4rem, 14vw, 5rem);
    }

    .mp-trust-row div {
        min-width: 105px;
        padding: 1px 14px;
    }

    .mp-visual {
        min-height: 490px;
        padding: 20px 23px 20px 49px;
    }

    .mp-visual-panel {
        border-radius: 10px 83px 10px 10px;
    }

    .mp-photo,
    .mp-photo img {
        height: 450px;
        min-height: 450px;
    }

    .mp-photo {
        border-radius: 8px 66px 8px 8px;
    }

    .mp-status-card {
        top: 59px;
    }

    .mp-experience-card {
        right: -2px;
        bottom: 50px;
    }
}

@media (max-width: 575.98px) {

    .mp-header .container,
    .mp-hero .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .mp-brand-mark {
        width: 45px;
        height: 45px;
    }

    .mp-brand-mark .mp-icon {
        width: 21px;
        height: 21px;
    }

    .mp-brand-copy strong {
        font-size: 0.88rem;
    }

    .mp-copy>p {
        line-height: 1.62;
    }

    .mp-actions {
        display: grid;
    }

    .mp-btn {
        width: 100%;
    }

    .mp-trust-row {
        gap: 16px 0;
    }

    .mp-trust-row div {
        min-width: 33.333%;
        padding: 1px 10px;
    }

    .mp-visual {
        min-height: 404px;
        padding: 15px 14px 15px 39px;
    }

    .mp-orange-rail {
        top: 41px;
        bottom: 41px;
        left: 25px;
        width: 10px;
    }

    .mp-photo,
    .mp-photo img {
        height: 374px;
        min-height: 374px;
    }

    .mp-photo {
        border-width: 5px;
        border-radius: 7px 48px 7px 7px;
    }

    .mp-photo img {
        object-position: 58% center;
    }

    .mp-status-card {
        top: 40px;
        left: 0;
        min-width: 0;
        max-width: calc(100% - 35px);
        padding: 10px 12px 10px 9px;
    }

    .mp-status-icon {
        width: 37px;
        height: 37px;
    }

    .mp-status-card strong {
        font-size: 0.72rem;
    }

    .mp-experience-card {
        right: -2px;
        bottom: 34px;
        width: 206px;
        padding: 13px 14px;
        grid-template-columns: 53px 1fr;
    }

    .mp-experience-card strong {
        font-size: 1.45rem;
    }

    .mp-dot-field {
        right: -14px;
        width: 96px;
        height: 88px;
    }

    .mp-service-dock {
        margin-top: 54px;
    }

    .mp-service-item {
        min-height: 128px;
        padding: 23px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================================
   Why Choose Us Section - No Images
   Uses The Existing Website Variables
========================================= */

.mp-why-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: var(--mp-bg);
}

.mp-why-texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .38;
    background-image:
        linear-gradient(rgba(30, 58, 95, .06) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(30, 58, 95, .06) 1px,
            transparent 1px);
    background-size: 35px 35px;
    mask-image: linear-gradient(90deg,
            transparent,
            #000 18%,
            #000 82%,
            transparent);
}

.mp-why-circle {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.mp-why-circle-one {
    top: -150px;
    right: -130px;
    width: 390px;
    height: 390px;
    border: 75px solid rgba(74, 119, 161, .08);
}

.mp-why-circle-two {
    left: -110px;
    bottom: -135px;
    width: 310px;
    height: 310px;
    border: 60px solid rgba(247, 127, 0, .08);
}

/* Main Dark Panel */

.mp-why-main {
    position: relative;
    height: 100%;
    min-height: 625px;
    padding: 60px 48px 150px;
    overflow: hidden;
    color: var(--mp-white);
    border-radius: 8px 42px 8px 42px;
    background:
        radial-gradient(circle at 90% 85%,
            rgba(74, 119, 161, .4),
            transparent 35%),
        linear-gradient(145deg,
            var(--mp-navy-dark),
            var(--mp-navy));
    box-shadow: var(--mp-shadow);
    animation: mpWhyMainIn .85s ease both;
}

.mp-why-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    width: 150px;
    height: 5px;
    border-radius: 0 0 5px 5px;
    background: var(--mp-orange);
}

.mp-why-main::after {
    content: "WHY";
    position: absolute;
    right: -18px;
    bottom: 92px;
    color: rgba(255, 255, 255, .035);
    font-size: 7.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.08em;
    transform: rotate(-90deg);
}

.mp-why-label {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--mp-orange);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mp-why-label span {
    width: 32px;
    height: 3px;
    border-radius: 10px;
    background: var(--mp-orange);
}

.mp-why-main h2 {
    position: relative;
    z-index: 3;
    margin: 0 0 23px;
    color: var(--mp-white);
    font-size: clamp(2.35rem, 4vw, 4.2rem);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -.055em;
}

.mp-why-main h2 strong {
    display: block;
    color: var(--mp-orange);
    font-weight: 900;
}

.mp-why-main>p {
    position: relative;
    z-index: 3;
    max-width: 500px;
    margin: 0 0 29px;
    color: rgba(255, 255, 255, .72);
    font-size: .98rem;
    line-height: 1.8;
}

/* Certification */

.mp-why-certified {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 335px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-left: 4px solid var(--mp-orange);
    border-radius: 4px 13px 4px 13px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
}

.mp-certified-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    border-radius: 50%;
    background: var(--mp-orange);
    box-shadow: 0 10px 25px rgba(247, 127, 0, .22);
}

.mp-certified-icon svg {
    width: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-why-certified small,
.mp-why-certified strong {
    display: block;
}

.mp-why-certified small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .55);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mp-why-certified strong {
    color: var(--mp-white);
    font-size: .9rem;
}

/* Main Buttons */

.mp-why-main-actions {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 31px;
}

.mp-why-primary-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 13px 23px;
    color: var(--mp-white);
    font-size: .77rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px 13px 4px 13px;
    background: var(--mp-orange);
    box-shadow: 0 14px 30px rgba(247, 127, 0, .22);
    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease;
}

.mp-why-primary-btn svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s ease;
}

.mp-why-primary-btn:hover {
    color: var(--mp-navy-dark);
    background: var(--mp-white);
    transform: translateY(-4px);
}

.mp-why-primary-btn:hover svg {
    transform: translateX(5px);
}

.mp-why-call {
    color: var(--mp-white);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid var(--mp-orange);
    transition: color .3s ease;
}

.mp-why-call:hover {
    color: var(--mp-orange);
}

/* CSS Garage Door Decoration */

.mp-door-decoration {
    position: absolute;
    z-index: 2;
    right: 32px;
    bottom: 26px;
    width: 145px;
    height: 120px;
    color: var(--mp-orange);
    opacity: .75;
    transition:
        opacity .4s ease,
        transform .4s ease;
}

.mp-why-main:hover .mp-door-decoration {
    opacity: 1;
    transform: translateY(-5px);
}

.mp-door-roof {
    position: absolute;
    top: 0;
    left: 4px;
    width: 137px;
    height: 48px;
    border-top: 7px solid currentColor;
    border-left: 7px solid currentColor;
    border-right: 7px solid currentColor;
    transform: perspective(80px) rotateX(20deg);
}

.mp-door-body {
    position: absolute;
    left: 19px;
    right: 19px;
    bottom: 0;
    height: 93px;
    display: flex;
    flex-direction: column;
    border: 6px solid currentColor;
}

.mp-door-body span {
    flex: 1;
    border-bottom: 3px solid currentColor;
}

.mp-door-body span:last-child {
    border-bottom: 0;
}

/* Features Area */

.mp-why-features {
    height: 100%;
    padding: 15px 0 15px 20px;
    animation: mpWhyCardsIn .9s .12s ease both;
}

.mp-why-card {
    position: relative;
    height: 100%;
    min-height: 255px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--mp-line);
    border-radius: 18px 5px 18px 5px;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 14px 35px rgba(30, 58, 95, .08);
    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.mp-why-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 95px;
    height: 95px;
    border: 18px solid rgba(247, 127, 0, .09);
    border-radius: 50%;
    transition: transform .45s ease;
}

.mp-why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247, 127, 0, .55);
    background: var(--mp-white);
    box-shadow: 0 22px 45px rgba(30, 58, 95, .15);
}

.mp-why-card:hover::after {
    transform: scale(1.7);
}

.mp-card-featured {
    color: var(--mp-white);
    border-color: var(--mp-navy);
    background:
        linear-gradient(145deg,
            var(--mp-navy),
            var(--mp-navy-dark));
}

.mp-card-featured:hover {
    border-color: var(--mp-orange);
    background:
        linear-gradient(145deg,
            var(--mp-navy),
            var(--mp-navy-dark));
}

.mp-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}

.mp-card-number {
    color: rgba(30, 58, 95, .11);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.mp-card-featured .mp-card-number {
    color: rgba(255, 255, 255, .09);
}

.mp-card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    border-radius: 15px 4px 15px 4px;
    background:
        linear-gradient(145deg,
            var(--mp-steel),
            var(--mp-navy));
    box-shadow: 0 10px 24px rgba(30, 58, 95, .2);
    transition:
        color .35s ease,
        background .35s ease,
        border-radius .35s ease,
        transform .35s ease;
}

.mp-card-featured .mp-card-icon {
    color: var(--mp-navy-dark);
    background: var(--mp-orange);
}

.mp-why-card:hover .mp-card-icon {
    color: var(--mp-white);
    border-radius: 4px 15px 4px 15px;
    background: var(--mp-orange);
    transform: rotate(-6deg) scale(1.06);
}

.mp-card-icon svg {
    width: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-why-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 11px;
    color: var(--mp-navy-dark);
    font-size: 1.08rem;
    font-weight: 900;
}

.mp-why-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--mp-muted);
    font-size: .84rem;
    line-height: 1.7;
}

.mp-card-featured h3 {
    color: var(--mp-white);
}

.mp-card-featured p {
    color: rgba(255, 255, 255, .65);
}

.mp-card-line {
    position: absolute;
    z-index: 3;
    left: 27px;
    right: 27px;
    bottom: 20px;
    height: 3px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--mp-steel-soft);
}

.mp-card-featured .mp-card-line {
    background: rgba(255, 255, 255, .12);
}

.mp-card-line span {
    display: block;
    width: 38%;
    height: 100%;
    background: var(--mp-orange);
    transition: width .45s ease;
}

.mp-why-card:hover .mp-card-line span {
    width: 100%;
}

/* Bottom Points */

.mp-why-points {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
    padding: 19px 22px;
    border: 1px solid var(--mp-line);
    border-radius: 5px 16px 5px 16px;
    background: var(--mp-white);
    box-shadow: 0 12px 30px rgba(30, 58, 95, .07);
}

.mp-why-point {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mp-navy);
    font-size: .75rem;
    font-weight: 800;
}

.mp-why-point>span {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    border-radius: 50%;
    background: var(--mp-orange);
}

.mp-why-point svg {
    width: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Animations */

@keyframes mpWhyMainIn {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mpWhyCardsIn {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */

@media (max-width: 1199.98px) {
    .mp-why-main {
        padding: 50px 35px 145px;
    }

    .mp-why-features {
        padding-left: 5px;
    }

    .mp-why-card {
        min-height: 275px;
        padding: 23px;
    }
}

@media (max-width: 991.98px) {
    .mp-why-section {
        padding: 85px 0;
    }

    .mp-why-main {
        min-height: 580px;
    }

    .mp-why-features {
        max-width: 800px;
        margin: auto;
        padding: 20px 0 0;
    }

    .mp-why-card {
        min-height: 255px;
    }
}

@media (max-width: 767.98px) {
    .mp-why-points {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .mp-why-section {
        padding: 65px 0;
    }

    .mp-why-main {
        min-height: 630px;
        padding: 42px 25px 160px;
        border-radius: 7px 28px 7px 28px;
    }

    .mp-why-main h2 {
        font-size: 2.4rem;
    }

    .mp-why-main-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .mp-why-primary-btn {
        width: 100%;
    }

    .mp-why-call {
        align-self: center;
    }

    .mp-door-decoration {
        right: 20px;
        width: 120px;
        height: 100px;
    }

    .mp-why-card {
        min-height: 240px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .mp-why-main,
    .mp-why-features {
        animation: none;
    }

    .mp-why-card,
    .mp-card-icon,
    .mp-why-primary-btn,
    .mp-door-decoration {
        transition: none;
    }
}

/* =========================================
   Peak Performance Section
========================================= */

.mp-peak-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 10%,
            rgba(74, 119, 161, .12),
            transparent 25%),
        linear-gradient(110deg,
            var(--mp-white) 0%,
            var(--mp-bg) 100%);
}

.mp-peak-texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .35;
    background-image: radial-gradient(rgba(30, 58, 95, .14) 1px,
            transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(90deg,
            #000,
            transparent 42%,
            transparent 75%,
            #000);
}

/* Image */

.mp-peak-visual {
    position: relative;
    max-width: 560px;
    margin-right: 25px;
    padding: 20px 20px 115px 0;
    animation: mpPeakImageIn .9s ease both;
}

.mp-peak-visual::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 83%;
    height: 82%;
    border-radius: 5px 38px 5px 38px;
    background:
        linear-gradient(145deg,
            var(--mp-navy),
            var(--mp-navy-dark));
    transform: rotate(3deg);
}

.mp-peak-image {
    position: relative;
    z-index: 2;
    height: 620px;
    overflow: hidden;
    border: 8px solid var(--mp-white);
    border-radius: 32px 6px 80px 6px;
    box-shadow: var(--mp-shadow);
}

.mp-peak-image::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 13px;
    pointer-events: none;
    border: 1px solid rgba(247, 127, 0, .65);
    border-radius: 23px 4px 67px 4px;
}

.mp-peak-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 45% center;
    transition: transform .8s ease;
}

.mp-peak-visual:hover .mp-peak-image img {
    transform: scale(1.05);
}

.mp-peak-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            transparent 52%,
            rgba(19, 40, 64, .78));
}

.mp-peak-section-number {
    position: absolute;
    z-index: 4;
    top: 27px;
    left: 27px;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    font-size: 1.35rem;
    font-weight: 900;
    border-radius: 4px 15px 4px 15px;
    background: var(--mp-orange);
    box-shadow: 0 12px 28px rgba(247, 127, 0, .25);
}

.mp-peak-image-title {
    position: absolute;
    z-index: 4;
    left: 34px;
    right: 34px;
    bottom: 34px;
}

.mp-peak-image-title small,
.mp-peak-image-title strong {
    display: block;
}

.mp-peak-image-title small {
    margin-bottom: 6px;
    color: var(--mp-orange);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mp-peak-image-title strong {
    color: var(--mp-white);
    font-size: 1.05rem;
}

/* Diagnostic Card */

.mp-peak-diagnostic {
    position: absolute;
    z-index: 5;
    right: -15px;
    bottom: 10px;
    width: 345px;
    padding: 21px;
    color: var(--mp-white);
    border-top: 4px solid var(--mp-orange);
    border-radius: 6px 22px 6px 22px;
    background:
        linear-gradient(145deg,
            var(--mp-navy),
            var(--mp-navy-dark));
    box-shadow: 0 23px 50px rgba(30, 58, 95, .25);
}

.mp-diagnostic-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mp-diagnostic-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    border-radius: 50%;
    background: var(--mp-orange);
}

.mp-diagnostic-icon svg {
    width: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-diagnostic-heading small,
.mp-diagnostic-heading strong {
    display: block;
}

.mp-diagnostic-heading small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .56);
    font-size: .62rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.mp-diagnostic-heading strong {
    font-size: .9rem;
}

.mp-diagnostic-list {
    padding-top: 12px;
}

.mp-diagnostic-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 7px 0;
    font-size: .7rem;
}

.mp-diagnostic-item span {
    color: rgba(255, 255, 255, .64);
}

.mp-diagnostic-item strong {
    position: relative;
    padding-left: 14px;
    color: var(--mp-white);
    font-size: .68rem;
}

.mp-diagnostic-item strong::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mp-orange);
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(247, 127, 0, .13);
}

.mp-peak-corner-shape {
    position: absolute;
    z-index: 1;
    left: -34px;
    bottom: 70px;
    width: 125px;
    height: 125px;
    opacity: .65;
    background-image: radial-gradient(var(--mp-orange) 2px,
            transparent 2px);
    background-size: 14px 14px;
}

/* Content */

.mp-peak-content {
    padding-left: 35px;
    animation: mpPeakContentIn .9s .13s ease both;
}

.mp-peak-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--mp-orange);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.mp-peak-label span {
    position: relative;
    width: 35px;
    height: 3px;
    border-radius: 20px;
    background: var(--mp-orange);
}

.mp-peak-label span::after {
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mp-orange);
}

.mp-peak-content h2 {
    max-width: 800px;
    margin: 0 0 24px;
    color: var(--mp-navy-dark);
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.04em;
}

.mp-peak-content>p {
    margin: 0;
    color: var(--mp-muted);
    font-size: .96rem;
    line-height: 1.85;
}

/* Service Highlights */

.mp-peak-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin: 29px 0;
}

.mp-peak-service {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 78px;
    padding: 13px;
    border: 1px solid var(--mp-line);
    border-radius: 13px 4px 13px 4px;
    background: var(--mp-white);
    box-shadow: 0 9px 25px rgba(30, 58, 95, .06);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.mp-peak-service:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 127, 0, .55);
    box-shadow: 0 15px 30px rgba(30, 58, 95, .11);
}

.mp-peak-service-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    border-radius: 11px 3px 11px 3px;
    background:
        linear-gradient(145deg,
            var(--mp-steel),
            var(--mp-navy));
    transition:
        background .35s ease,
        transform .35s ease;
}

.mp-peak-service:hover .mp-peak-service-icon {
    background: var(--mp-orange);
    transform: rotate(-5deg);
}

.mp-peak-service-icon svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-peak-service strong,
.mp-peak-service small {
    display: block;
}

.mp-peak-service strong {
    margin-bottom: 2px;
    color: var(--mp-navy-dark);
    font-size: .76rem;
    font-weight: 900;
}

.mp-peak-service small {
    color: var(--mp-muted);
    font-size: .65rem;
}

/* Final Copy */

.mp-peak-final-copy {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 23px 25px;
    overflow: hidden;
    border-left: 5px solid var(--mp-orange);
    border-radius: 5px 17px 5px 17px;
    background: var(--mp-steel-soft);
}

.mp-peak-final-copy::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 85px;
    height: 85px;
    border: 16px solid rgba(74, 119, 161, .14);
    border-radius: 50%;
}

.mp-peak-quote-icon {
    position: relative;
    z-index: 2;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    border-radius: 50%;
    background: var(--mp-navy);
}

.mp-peak-quote-icon svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-peak-final-copy p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--mp-navy-dark);
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.75;
}

/* Action */

.mp-peak-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 23px;
    margin-top: 29px;
}

.mp-peak-button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    color: var(--mp-white);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .055em;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px 15px 5px 15px;
    background: var(--mp-orange);
    box-shadow: 0 13px 29px rgba(247, 127, 0, .22);
    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease;
}

.mp-peak-button svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s ease;
}

.mp-peak-button:hover {
    color: var(--mp-white);
    background: var(--mp-navy);
    transform: translateY(-4px);
}

.mp-peak-button:hover svg {
    transform: translateX(5px);
}

.mp-peak-assurance {
    display: flex;
    align-items: center;
    gap: 11px;
}

.mp-peak-assurance>span {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: var(--mp-orange);
    border: 1px solid rgba(247, 127, 0, .28);
    border-radius: 50%;
    background: rgba(247, 127, 0, .08);
}

.mp-peak-assurance svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-peak-assurance small,
.mp-peak-assurance strong {
    display: block;
}

.mp-peak-assurance small {
    margin-bottom: 2px;
    color: var(--mp-muted);
    font-size: .62rem;
    text-transform: uppercase;
}

.mp-peak-assurance strong {
    color: var(--mp-navy-dark);
    font-size: .8rem;
}

/* Animations */

@keyframes mpPeakImageIn {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mpPeakContentIn {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */

@media (max-width: 1199.98px) {
    .mp-peak-content {
        padding-left: 10px;
    }

    .mp-peak-visual {
        margin-right: 5px;
    }

    .mp-peak-image {
        height: 590px;
    }

    .mp-peak-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .mp-peak-section {
        padding: 85px 0;
    }

    .mp-peak-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .mp-peak-content {
        max-width: 820px;
        margin: 20px auto 0;
        padding-left: 0;
    }

    .mp-peak-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .mp-peak-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .mp-peak-section {
        padding: 65px 0;
    }

    .mp-peak-visual {
        padding: 12px 7px 175px 0;
    }

    .mp-peak-image {
        height: 500px;
        border-width: 5px;
        border-radius: 23px 5px 60px 5px;
    }

    .mp-peak-image::before {
        inset: 8px;
        border-radius: 15px 3px 48px 3px;
    }

    .mp-peak-diagnostic {
        left: 15px;
        right: 0;
        bottom: 5px;
        width: auto;
    }

    .mp-peak-content h2 {
        font-size: 2.05rem;
    }

    .mp-peak-final-copy {
        flex-direction: column;
    }

    .mp-peak-action {
        flex-direction: column;
        align-items: stretch;
    }

    .mp-peak-button {
        width: 100%;
    }

    .mp-peak-assurance {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    .mp-peak-visual,
    .mp-peak-content {
        animation: none;
    }

    .mp-peak-image img,
    .mp-peak-service,
    .mp-peak-service-icon,
    .mp-peak-button {
        transition: none;
    }
}

/* =========================================
   Door Solutions - Fixed Unique Classes
========================================= */

.mpds-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    color: var(--mp-white);
    background:
        radial-gradient(circle at 90% 10%,
            rgba(74, 119, 161, .25),
            transparent 27%),
        linear-gradient(145deg,
            var(--mp-navy-dark),
            #0d2238 55%,
            var(--mp-navy));
}

/* Safe Background Texture */

.mpds-texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .14;
    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .12) 1px,
            transparent 1px);
    background-size: 38px 38px;
}

.mpds-orange-shape {
    position: absolute;
    top: -170px;
    right: -170px;
    width: 430px;
    height: 430px;
    pointer-events: none;
    border: 80px solid rgba(247, 127, 0, .055);
    border-radius: 50%;
}

/* Heading */

.mpds-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 52px;
}

.mpds-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: var(--mp-orange);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.mpds-tag span {
    width: 35px;
    height: 3px;
    background: var(--mp-orange);
}

.mpds-heading h2 {
    max-width: 800px;
    margin: 0;
    color: var(--mp-white);
    font-size: clamp(2.35rem, 4.7vw, 4.6rem);
    font-weight: 300;
    line-height: 1.03;
    letter-spacing: -.05em;
}

.mpds-heading h2 strong {
    display: block;
    color: var(--mp-orange);
    font-weight: 900;
}

.mpds-heading-text {
    max-width: 500px;
    margin: 0 0 0 auto;
    padding-left: 24px;
    color: rgba(255, 255, 255, .68);
    font-size: .94rem;
    line-height: 1.8;
    border-left: 3px solid var(--mp-orange);
}

/* Card */

.mpds-card {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 310px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    background: rgba(255, 255, 255, .065);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.mpds-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 27px;
    width: 55px;
    height: 3px;
    background: var(--mp-orange);
    transition: width .4s ease;
}

.mpds-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 100px;
    height: 100px;
    border: 19px solid rgba(74, 119, 161, .16);
    border-radius: 50%;
    transition: transform .4s ease;
}

.mpds-card:hover {
    transform: translateY(-9px);
    border-color: rgba(247, 127, 0, .65);
    background: rgba(74, 119, 161, .18);
    box-shadow: 0 27px 55px rgba(0, 0, 0, .25);
}

.mpds-card:hover::before {
    width: calc(100% - 54px);
}

.mpds-card:hover::after {
    transform: scale(1.5);
}

.mpds-card-highlight {
    border-color: rgba(247, 127, 0, .5);
    background:
        linear-gradient(145deg,
            rgba(247, 127, 0, .18),
            rgba(255, 255, 255, .06));
}

.mpds-popular {
    position: absolute;
    top: 17px;
    left: 20px;
    padding: 5px 9px;
    color: var(--mp-white);
    font-size: .56rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 4px;
    background: var(--mp-orange);
}

.mpds-card-highlight .mpds-card-head {
    margin-top: 24px;
}

/* Card Header */

.mpds-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.mpds-number {
    color: rgba(255, 255, 255, .1);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.mpds-icon {
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    color: var(--mp-orange);
    border: 1px solid rgba(247, 127, 0, .38);
    border-radius: 15px 5px 15px 5px;
    background: rgba(247, 127, 0, .09);
    transition:
        color .35s ease,
        background .35s ease,
        transform .35s ease;
}

.mpds-card:hover .mpds-icon {
    color: var(--mp-white);
    background: var(--mp-orange);
    transform: rotate(-6deg) scale(1.05);
}

.mpds-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Card Text */

.mpds-card h3 {
    position: relative;
    z-index: 2;
    min-height: 48px;
    margin: 0 0 11px;
    color: var(--mp-white);
    font-size: 1.06rem;
    font-weight: 900;
    line-height: 1.4;
}

.mpds-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .62);
    font-size: .81rem;
    line-height: 1.7;
}

.mpds-card>a {
    position: absolute;
    z-index: 3;
    left: 27px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mp-orange);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
}

.mpds-card>a span {
    font-size: 1.1rem;
    transition: transform .3s ease;
}

.mpds-card>a:hover span {
    transform: translateX(5px);
}

/* Bottom CTA */

.mpds-cta {
    position: relative;
    z-index: 2;
    min-height: 330px;
    margin-top: 60px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, .28);
}

.mpds-cta img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.mpds-cta:hover img {
    transform: scale(1.04);
}

.mpds-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(19, 40, 64, .97),
            rgba(19, 40, 64, .72) 65%,
            rgba(19, 40, 64, .3));
}

.mpds-cta-content {
    position: relative;
    z-index: 3;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px;
}

.mpds-cta-content small {
    display: block;
    margin-bottom: 9px;
    color: var(--mp-orange);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mpds-cta-content h3 {
    max-width: 610px;
    margin: 0;
    color: var(--mp-white);
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.mpds-cta-content>a {
    min-height: 55px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 23px;
    color: var(--mp-white);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 6px;
    background: var(--mp-orange);
    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease;
}

.mpds-cta-content>a:hover {
    color: var(--mp-navy-dark);
    background: var(--mp-white);
    transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 991.98px) {
    .mpds-section {
        padding: 85px 0;
    }

    .mpds-heading-text {
        max-width: 100%;
        margin-left: 0;
    }

    .mpds-cta-content {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .mpds-section {
        padding: 65px 0;
    }

    .mpds-heading h2 {
        font-size: 2.3rem;
    }

    .mpds-card {
        min-height: 290px;
        padding: 23px;
    }

    .mpds-card>a {
        left: 23px;
    }

    .mpds-cta,
    .mpds-cta-content {
        min-height: 400px;
    }

    .mpds-cta-content {
        padding: 28px;
    }

    .mpds-cta-content>a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .mpds-card,
    .mpds-icon,
    .mpds-cta img {
        transition: none;
    }
}

/* =========================================
   Coupon Offers - Horizontal Ticket Style
========================================= */

.mptk-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    color: var(--mp-white);
    background:
        radial-gradient(circle at 88% 12%,
            rgba(74, 119, 161, .3),
            transparent 26%),
        linear-gradient(145deg,
            var(--mp-navy-dark),
            #0e233a 55%,
            var(--mp-navy));
}

/* Texture */

.mptk-texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .13;
    background-image:
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, .13) 0,
            rgba(255, 255, 255, .13) 1px,
            transparent 1px,
            transparent 18px);
}

.mptk-shape {
    position: absolute;
    right: -160px;
    bottom: -190px;
    width: 480px;
    height: 480px;
    pointer-events: none;
    border: 90px solid rgba(247, 127, 0, .055);
    border-radius: 50%;
}

/* Heading */

.mptk-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
}

.mptk-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: var(--mp-orange);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mptk-tag span {
    width: 35px;
    height: 3px;
    background: var(--mp-orange);
}

.mptk-heading h2 {
    margin: 0;
    color: var(--mp-white);
    font-size: clamp(2.35rem, 4.6vw, 4.55rem);
    font-weight: 300;
    line-height: 1.03;
    letter-spacing: -.055em;
}

.mptk-heading h2 strong {
    display: block;
    color: var(--mp-orange);
    font-weight: 900;
}

.mptk-heading>div:last-child>p {
    max-width: 470px;
    margin: 0 0 0 auto;
    padding-left: 23px;
    color: rgba(255, 255, 255, .65);
    font-size: .94rem;
    line-height: 1.8;
    border-left: 3px solid var(--mp-orange);
}

/* Tickets List */

.mptk-list {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 24px;
}

.mptk-ticket {
    position: relative;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    min-height: 245px;
    overflow: hidden;
    color: var(--mp-text);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px 6px 20px 6px;
    background: var(--mp-white);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .2);
    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.mptk-ticket::before,
.mptk-ticket::after {
    content: "";
    position: absolute;
    z-index: 7;
    right: 204px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: var(--mp-navy-dark);
    transform: translateX(50%);
}

.mptk-ticket::before {
    top: -16px;
}

.mptk-ticket::after {
    bottom: -16px;
}

.mptk-ticket:hover {
    transform: translateY(-7px);
    border-color: rgba(247, 127, 0, .7);
    box-shadow: 0 29px 60px rgba(0, 0, 0, .3);
}

/* Discount Area */

.mptk-discount {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 27px 20px;
    color: var(--mp-white);
    text-align: center;
    background:
        linear-gradient(145deg,
            var(--mp-orange),
            var(--mp-orange-dark));
}

.mptk-discount::after {
    content: "";
    position: absolute;
    inset: 13px;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 13px 3px 13px 3px;
}

.mptk-discount small {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .75);
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mptk-discount>div {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    margin: 10px 0;
}

.mptk-discount strong {
    font-size: 4.4rem;
    font-weight: 900;
    line-height: .85;
    letter-spacing: -.08em;
}

.mptk-discount span {
    padding: 0 0 5px 6px;
    font-size: 1.05rem;
    font-weight: 900;
}

/* Main Content */

.mptk-ticket-content {
    display: flex;
    align-items: flex-start;
    gap: 19px;
    padding: 35px;
}

.mptk-service-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    border-radius: 17px 5px 17px 5px;
    background:
        linear-gradient(145deg,
            var(--mp-steel),
            var(--mp-navy));
    box-shadow: 0 11px 25px rgba(30, 58, 95, .2);
    transition:
        background .35s ease,
        transform .35s ease;
}

.mptk-ticket:hover .mptk-service-icon {
    background: var(--mp-orange);
    transform: rotate(-6deg) scale(1.05);
}

.mptk-service-icon svg {
    width: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mptk-offer-type {
    display: block;
    margin-bottom: 7px;
    color: var(--mp-orange);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.mptk-ticket-text h3 {
    margin: 0 0 10px;
    color: var(--mp-navy-dark);
    font-size: 1.25rem;
    font-weight: 900;
}

.mptk-ticket-text>p {
    max-width: 620px;
    margin: 0 0 17px;
    color: var(--mp-muted);
    font-size: .82rem;
    line-height: 1.7;
}

.mptk-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.mptk-details>span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--mp-navy);
    font-size: .65rem;
    font-weight: 800;
}

.mptk-details svg {
    width: 16px;
    fill: none;
    stroke: var(--mp-orange);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Action Area */

.mptk-ticket-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 23px;
    padding: 30px;
    text-align: center;
    border-left: 2px dashed var(--mp-steel-soft);
    background: var(--mp-bg);
}

.mptk-code small,
.mptk-code strong {
    display: block;
}

.mptk-code small {
    margin-bottom: 7px;
    color: var(--mp-muted);
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.mptk-code strong {
    color: var(--mp-navy-dark);
    font-size: .79rem;
    letter-spacing: .06em;
}

.mptk-ticket-action>a {
    min-height: 47px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 16px;
    color: var(--mp-white);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px 12px 5px 12px;
    background: var(--mp-navy);
    transition:
        background .3s ease,
        transform .3s ease;
}

.mptk-ticket-action>a:hover {
    background: var(--mp-orange);
    transform: translateY(-3px);
}

.mptk-ticket-action>a span {
    font-size: 1.1rem;
}

/* Featured Ticket */

.mptk-ticket-featured {
    border-color: rgba(247, 127, 0, .75);
}

.mptk-ticket-featured .mptk-ticket-content {
    background:
        linear-gradient(90deg,
            rgba(247, 127, 0, .06),
            transparent);
}

.mptk-popular {
    position: absolute;
    z-index: 8;
    top: 0;
    left: 250px;
    padding: 7px 14px;
    color: var(--mp-white);
    font-size: .57rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 0 0 7px 7px;
    background: var(--mp-orange);
}

/* Bottom */

.mptk-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 30px;
    padding: 19px 23px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 6px 16px 6px 16px;
    background: rgba(255, 255, 255, .065);
}

.mptk-note {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mptk-note>span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    border-radius: 50%;
    background: var(--mp-orange);
}

.mptk-note svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mptk-note p {
    margin: 0;
    color: rgba(255, 255, 255, .57);
    font-size: .7rem;
    line-height: 1.55;
}

.mptk-call {
    flex: 0 0 auto;
    color: var(--mp-white);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-align: right;
    text-decoration: none;
    text-transform: uppercase;
}

.mptk-call span {
    display: block;
    margin-top: 3px;
    color: var(--mp-orange);
    font-size: .86rem;
}

/* Responsive */

@media (max-width: 1199.98px) {
    .mptk-ticket {
        grid-template-columns: 190px minmax(0, 1fr) 190px;
    }

    .mptk-ticket::before,
    .mptk-ticket::after {
        right: 174px;
    }

    .mptk-ticket-content {
        padding: 30px 25px;
    }
}

@media (max-width: 991.98px) {
    .mptk-section {
        padding: 85px 0;
    }

    .mptk-heading>div:last-child>p {
        max-width: 100%;
        margin-left: 0;
    }

    .mptk-ticket {
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .mptk-ticket::before,
    .mptk-ticket::after {
        display: none;
    }

    .mptk-ticket-action {
        grid-column: 1 / -1;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        border-top: 2px dashed var(--mp-steel-soft);
        border-left: 0;
    }

    .mptk-ticket-action>a {
        width: auto;
        min-width: 180px;
    }

    .mptk-popular {
        left: auto;
        right: 20px;
    }
}

@media (max-width: 767.98px) {
    .mptk-ticket {
        display: block;
    }

    .mptk-discount {
        min-height: 190px;
    }

    .mptk-ticket-content {
        flex-direction: column;
    }

    .mptk-ticket-action {
        display: flex;
    }

    .mptk-popular {
        top: 170px;
    }

    .mptk-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .mptk-call {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .mptk-section {
        padding: 65px 0;
    }

    .mptk-heading h2 {
        font-size: 2.3rem;
    }

    .mptk-ticket-action {
        align-items: stretch;
        flex-direction: column;
    }

    .mptk-ticket-action>a {
        width: 100%;
    }

    .mptk-details {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================
   Coupon Section - Light Background Version
   Add After The Original Coupon CSS
========================================= */

.mptk-section {
    color: var(--mp-text);
    background:
        radial-gradient(circle at 88% 12%,
            rgba(74, 119, 161, .14),
            transparent 26%),
        radial-gradient(circle at 5% 90%,
            rgba(247, 127, 0, .09),
            transparent 23%),
        linear-gradient(145deg,
            var(--mp-white),
            var(--mp-bg));
}

/* Light Texture */

.mptk-texture {
    opacity: .35;
    background-image:
        repeating-linear-gradient(45deg,
            rgba(30, 58, 95, .08) 0,
            rgba(30, 58, 95, .08) 1px,
            transparent 1px,
            transparent 18px);
}

.mptk-shape {
    border-color: rgba(247, 127, 0, .07);
}

/* Heading */

.mptk-heading h2 {
    color: var(--mp-navy-dark);
}

.mptk-heading h2 strong {
    color: var(--mp-orange);
}

.mptk-heading>div:last-child>p {
    color: var(--mp-muted);
}

/* Tickets */

.mptk-ticket {
    border-color: var(--mp-line);
    background: var(--mp-white);
    box-shadow: 0 18px 45px rgba(30, 58, 95, .1);
}

.mptk-ticket:hover {
    border-color: rgba(247, 127, 0, .65);
    box-shadow: 0 28px 60px rgba(30, 58, 95, .17);
}

/* Ticket Circular Cutouts */

.mptk-ticket::before,
.mptk-ticket::after {
    background: var(--mp-bg);
}

/* Featured Coupon */

.mptk-ticket-featured {
    border-color: rgba(247, 127, 0, .7);
    box-shadow:
        0 22px 50px rgba(30, 58, 95, .13),
        0 0 0 3px rgba(247, 127, 0, .06);
}

.mptk-ticket-featured .mptk-ticket-content {
    background:
        linear-gradient(90deg,
            rgba(247, 127, 0, .075),
            rgba(247, 127, 0, 0));
}

/* Coupon Action */

.mptk-ticket-action {
    background:
        linear-gradient(145deg,
            var(--mp-bg),
            var(--mp-white));
}

/* Bottom Note */

.mptk-bottom {
    border-color: var(--mp-line);
    background: var(--mp-white);
    box-shadow: 0 14px 35px rgba(30, 58, 95, .08);
}

.mptk-note p {
    color: var(--mp-muted);
}

.mptk-call {
    color: var(--mp-navy-dark);
}

.mptk-call span {
    color: var(--mp-orange);
}

/* =========================================
   Swift Emergency Relief Section
========================================= */

.mper-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: var(--mp-bg);
}

.mper-texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .34;
    background-image: radial-gradient(rgba(30, 58, 95, .15) 1px,
            transparent 1px);
    background-size: 22px 22px;
}

.mper-background-shape {
    position: absolute;
    right: -180px;
    top: -170px;
    width: 470px;
    height: 470px;
    pointer-events: none;
    border: 85px solid rgba(247, 127, 0, .07);
    border-radius: 50%;
}

/* Main Shell */

.mper-shell {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 9px 45px 9px 45px;
    background:
        radial-gradient(circle at 10% 90%,
            rgba(74, 119, 161, .32),
            transparent 27%),
        linear-gradient(145deg,
            var(--mp-navy),
            var(--mp-navy-dark));
    box-shadow: var(--mp-shadow);
}

.mper-shell::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    left: 55px;
    width: 180px;
    height: 5px;
    background: var(--mp-orange);
}

/* Content */

.mper-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 65px 55px;
    animation: mperContentIn .85s ease both;
}

.mper-content::after {
    content: "EMERGENCY";
    position: absolute;
    left: -35px;
    bottom: 55px;
    color: rgba(255, 255, 255, .025);
    font-size: 5.2rem;
    font-weight: 900;
    letter-spacing: -.05em;
    transform: rotate(-90deg);
    pointer-events: none;
}

.mper-tag {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 19px;
    color: var(--mp-orange);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.mper-live-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mp-orange);
}

.mper-live-dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid var(--mp-orange);
    border-radius: 50%;
    animation: mperPulse 1.8s ease-out infinite;
}

.mper-content h2 {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 0 23px;
    color: var(--mp-white);
    font-size: clamp(2.15rem, 3.9vw, 3.65rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.mper-content>p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .92rem;
    line-height: 1.85;
}

/* Emergency Problems */

.mper-problems {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 29px 0;
}

.mper-problem {
    min-height: 65px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px;
    color: var(--mp-white);
    font-size: .68rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px 4px 12px 4px;
    background: rgba(255, 255, 255, .055);
    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.mper-problem:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 127, 0, .55);
    background: rgba(255, 255, 255, .1);
}

.mper-problem>span {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: grid;
    place-items: center;
    color: var(--mp-orange);
    border-radius: 10px 3px 10px 3px;
    background: rgba(247, 127, 0, .1);
}

.mper-problem svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mper-problem-orange {
    color: var(--mp-white);
    border-color: var(--mp-orange);
    background: var(--mp-orange);
}

.mper-problem-orange>span {
    color: var(--mp-navy-dark);
    background: var(--mp-white);
}

/* Final Copy */

.mper-final-copy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    overflow: hidden;
    border-left: 4px solid var(--mp-orange);
    border-radius: 5px 16px 5px 16px;
    background: rgba(255, 255, 255, .075);
}

.mper-final-copy::after {
    content: "";
    position: absolute;
    right: -37px;
    bottom: -37px;
    width: 90px;
    height: 90px;
    border: 17px solid rgba(247, 127, 0, .09);
    border-radius: 50%;
}

.mper-final-icon {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    border-radius: 50%;
    background: var(--mp-orange);
}

.mper-final-icon svg {
    width: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mper-final-copy p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, .77);
    font-size: .84rem;
    line-height: 1.75;
}

/* Buttons */

.mper-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 28px;
}

.mper-main-button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 13px 23px;
    color: var(--mp-white);
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .055em;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px 14px 5px 14px;
    background: var(--mp-orange);
    box-shadow: 0 14px 30px rgba(247, 127, 0, .22);
    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease;
}

.mper-main-button svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s ease;
}

.mper-main-button:hover {
    color: var(--mp-navy-dark);
    background: var(--mp-white);
    transform: translateY(-4px);
}

.mper-main-button:hover svg {
    transform: translateX(5px);
}

.mper-phone {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--mp-white);
    text-decoration: none;
}

.mper-phone-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--mp-orange);
    border: 1px solid rgba(247, 127, 0, .45);
    border-radius: 50%;
    background: rgba(247, 127, 0, .1);
    transition: transform .3s ease;
}

.mper-phone:hover .mper-phone-icon {
    transform: rotate(-11deg) scale(1.07);
}

.mper-phone-icon svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mper-phone small,
.mper-phone strong {
    display: block;
}

.mper-phone small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .5);
    font-size: .59rem;
    text-transform: uppercase;
}

.mper-phone strong {
    color: var(--mp-white);
    font-size: .83rem;
}

/* Image */

.mper-image {
    position: relative;
    height: 100%;
    min-height: 780px;
    overflow: hidden;
    animation: mperImageIn .9s .12s ease both;
}

.mper-image::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    pointer-events: none;
    border: 1px solid rgba(247, 127, 0, .58);
    border-radius: 5px 30px 5px 30px;
}

.mper-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 58% center;
    transition: transform .9s ease;
}

.mper-shell:hover .mper-image img {
    transform: scale(1.04);
}

.mper-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(19, 40, 64, .55),
            transparent 40%),
        linear-gradient(180deg,
            transparent 55%,
            rgba(19, 40, 64, .82));
}

/* 24/7 Badge */

.mper-emergency-badge {
    position: absolute;
    z-index: 5;
    top: 53px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 20px 15px 17px;
    color: var(--mp-white);
    border-radius: 16px 0 0 16px;
    background: var(--mp-orange);
    box-shadow: 0 17px 38px rgba(0, 0, 0, .22);
}

.mper-badge-pulse {
    position: relative;
    width: 13px;
    height: 13px;
    border: 3px solid var(--mp-white);
    border-radius: 50%;
}

.mper-badge-pulse::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid var(--mp-white);
    border-radius: 50%;
    animation: mperPulse 1.8s ease-out infinite;
}

.mper-emergency-badge strong,
.mper-emergency-badge small {
    display: block;
}

.mper-emergency-badge strong {
    font-size: 1.35rem;
    line-height: 1;
}

.mper-emergency-badge small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .75);
    font-size: .57rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Image Status */

.mper-image-status {
    position: absolute;
    z-index: 5;
    left: 45px;
    right: 45px;
    bottom: 43px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px;
    color: var(--mp-white);
    border-left: 4px solid var(--mp-orange);
    border-radius: 5px 15px 5px 15px;
    background: rgba(19, 40, 64, .9);
}

.mper-image-status>span {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    color: var(--mp-white);
    border-radius: 50%;
    background: var(--mp-orange);
}

.mper-image-status svg {
    width: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mper-image-status small,
.mper-image-status strong {
    display: block;
}

.mper-image-status small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .55);
    font-size: .58rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mper-image-status strong {
    font-size: .82rem;
}

/* Animations */

@keyframes mperPulse {
    from {
        opacity: .8;
        transform: scale(.75);
    }

    to {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes mperContentIn {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mperImageIn {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */

@media (max-width: 1199.98px) {
    .mper-content {
        padding: 55px 40px;
    }

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

@media (max-width: 991.98px) {
    .mper-section {
        padding: 85px 0;
    }

    .mper-image {
        min-height: 650px;
    }
}

@media (max-width: 575.98px) {
    .mper-section {
        padding: 65px 0;
    }

    .mper-shell {
        border-radius: 7px 27px 7px 27px;
    }

    .mper-content {
        padding: 45px 25px;
    }

    .mper-content h2 {
        font-size: 2.2rem;
    }

    .mper-problems {
        grid-template-columns: 1fr;
    }

    .mper-final-copy {
        flex-direction: column;
    }

    .mper-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mper-main-button {
        width: 100%;
    }

    .mper-phone {
        justify-content: center;
    }

    .mper-image {
        min-height: 560px;
    }

    .mper-image-status {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .mper-content,
    .mper-image,
    .mper-live-dot::after,
    .mper-badge-pulse::after {
        animation: none;
    }

    .mper-problem,
    .mper-main-button,
    .mper-image img {
        transition: none;
    }
}


/* =========================================
   Before And After - Clean Fixed Version
========================================= */

.bf-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: var(--mp-white);
    background-color: var(--mp-navy-dark);
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .04) 1px,
            transparent 1px),
        radial-gradient(circle at 90% 10%,
            rgba(74, 119, 161, .3),
            transparent 30%);
    background-size:
        38px 38px,
        38px 38px,
        100% 100%;
}

/* Heading */

.bf-small-title {
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    padding: 0 45px;
    color: var(--mp-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bf-small-title::before,
.bf-small-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 32px;
    height: 3px;
    background: var(--mp-orange);
    transform: translateY(-50%);
}

.bf-small-title::before {
    left: 0;
}

.bf-small-title::after {
    right: 0;
}

.bf-section h2 {
    margin: 0 0 18px;
    color: var(--mp-white);
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 300;
    line-height: 1.05;
}

.bf-section h2 strong {
    display: block;
    color: var(--mp-orange);
    font-weight: 900;
}

.bf-heading-text {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .65);
    font-size: 16px;
    line-height: 1.8;
}

/* Image Comparison */

.bf-compare {
    position: relative;
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    background: var(--mp-navy);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}

.bf-compare img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    object-fit: contain;
}

.bf-compare::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom,
            transparent 55%,
            rgba(19, 40, 64, .32));
}

/* Labels */

.bf-before-label,
.bf-after-label {
    position: absolute;
    z-index: 3;
    top: 25px;
    min-width: 160px;
    padding: 12px 17px;
    color: var(--mp-white);
    border-radius: 8px;
    background: rgba(19, 40, 64, .9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.bf-before-label {
    left: 25px;
    border-left: 4px solid var(--mp-steel);
}

.bf-after-label {
    right: 25px;
    border-left: 4px solid var(--mp-orange);
}

.bf-before-label small,
.bf-before-label strong,
.bf-after-label small,
.bf-after-label strong {
    display: block;
}

.bf-before-label small,
.bf-after-label small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    text-transform: uppercase;
}

.bf-before-label strong,
.bf-after-label strong {
    font-size: 14px;
    letter-spacing: 1px;
}

.bf-after-label strong {
    color: var(--mp-orange);
}

/* Middle Divider */

.bf-divider {
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--mp-orange);
    transform: translateX(-50%);
}

.bf-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mp-white);
    font-size: 26px;
    font-weight: 900;
    border: 5px solid var(--mp-white);
    border-radius: 50%;
    background: var(--mp-orange);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
    transform: translate(-50%, -50%);
}

/* Results */

.bf-results {
    position: relative;
    z-index: 5;
    width: calc(100% - 80px);
    margin: -25px auto 0;
    overflow: hidden;
    border-top: 4px solid var(--mp-orange);
    border-radius: 12px;
    background: var(--mp-navy);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.bf-result {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 18px 12px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.bf-results .col-lg-3:last-child .bf-result {
    border-right: 0;
}

.bf-check {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mp-white);
    font-size: 18px;
    font-weight: 900;
    border-radius: 50%;
    background: var(--mp-orange);
}

.bf-result strong,
.bf-result small {
    display: block;
}

.bf-result strong {
    margin-bottom: 3px;
    color: var(--mp-white);
    font-size: 14px;
}

.bf-result small {
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    text-transform: uppercase;
}

/* CTA */

.bf-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 30px;
    padding: 20px 23px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
}

.bf-cta small,
.bf-cta strong {
    display: block;
}

.bf-cta small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .52);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bf-cta strong {
    color: var(--mp-white);
    font-size: 15px;
}

.bf-cta a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    color: var(--mp-white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .7px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 8px;
    background: var(--mp-orange);
    transition:
        background .3s ease,
        transform .3s ease;
}

.bf-cta a:hover {
    color: var(--mp-white);
    background: var(--mp-orange-dark);
    transform: translateY(-3px);
}

/* Tablet */

@media (max-width: 991.98px) {
    .bf-section {
        padding: 80px 0;
    }

    .bf-results {
        width: calc(100% - 40px);
    }

    .bf-result {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }
}

/* Mobile */

@media (max-width: 575.98px) {
    .bf-section {
        padding: 60px 0;
    }

    .bf-section h2 {
        font-size: 35px;
    }

    .bf-compare {
        margin-top: 35px;
        border-width: 4px;
        border-radius: 16px;
    }

    .bf-before-label,
    .bf-after-label {
        top: 12px;
        min-width: auto;
        padding: 8px 10px;
    }

    .bf-before-label {
        left: 12px;
    }

    .bf-after-label {
        right: 12px;
    }

    .bf-before-label small,
    .bf-after-label small {
        display: none;
    }

    .bf-before-label strong,
    .bf-after-label strong {
        font-size: 11px;
    }

    .bf-divider {
        width: 3px;
    }

    .bf-divider span {
        width: 48px;
        height: 48px;
        font-size: 19px;
        border-width: 3px;
    }

    .bf-results {
        width: calc(100% - 16px);
        margin-top: -12px;
    }

    .bf-result {
        min-height: 100px;
        flex-direction: column;
        text-align: center;
    }

    .bf-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .bf-cta a {
        width: 100%;
    }
}


/*====================================
  CREATIVE SAFETY SECTION
=====================================*/

.mp-safe-zone {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%,
            rgba(74, 119, 161, 0.26),
            transparent 28%),
        radial-gradient(circle at 88% 80%,
            rgba(247, 127, 0, 0.16),
            transparent 25%),
        linear-gradient(135deg,
            var(--mp-navy-dark) 0%,
            var(--mp-navy) 55%,
            #172f4b 100%);
}

.mp-safe-zone::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.7) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.7) 1px,
            transparent 1px);
    background-size: 45px 45px;
}

.mp-safe-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: repeating-linear-gradient(-45deg,
            var(--mp-orange) 0,
            var(--mp-orange) 18px,
            var(--mp-navy-dark) 18px,
            var(--mp-navy-dark) 36px);
}

.mp-safe-wrapper {
    position: relative;
    z-index: 2;
}

.mp-safe-heading {
    max-width: 920px;
    margin: 0 auto 70px;
    text-align: center;
}

.mp-safe-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--mp-white);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mp-safe-label span {
    width: 34px;
    height: 3px;
    border-radius: 20px;
    background: var(--mp-orange);
}

.mp-safe-heading h2 {
    margin: 0;
    color: var(--mp-white);
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.05;
}

.mp-safe-heading h2 span {
    display: block;
    margin-top: 12px;
    color: var(--mp-steel-soft);
    font-size: clamp(1.5rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 1.25;
}

.mp-safe-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-safe-shield {
    position: relative;
    z-index: 5;
    width: 190px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mp-white);
    font-size: 76px;
    background:
        linear-gradient(145deg,
            var(--mp-orange),
            var(--mp-orange-dark));
    clip-path: polygon(50% 0%,
            92% 18%,
            86% 68%,
            50% 100%,
            14% 68%,
            8% 18%);
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.32));
}

.mp-safe-shield::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    clip-path: inherit;
}

.mp-safe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mp-safe-ring-one {
    width: 330px;
    height: 330px;
    animation: mpSafeRotate 18s linear infinite;
}

.mp-safe-ring-two {
    width: 430px;
    height: 430px;
    border-style: dashed;
    border-color: rgba(247, 127, 0, 0.3);
    animation: mpSafeRotateReverse 24s linear infinite;
}

.mp-safe-point {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 205px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.mp-safe-point i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--mp-white);
    background: var(--mp-orange);
}

.mp-safe-point strong,
.mp-safe-point span {
    display: block;
}

.mp-safe-point strong {
    margin-bottom: 3px;
    color: var(--mp-white);
    font-size: 0.95rem;
}

.mp-safe-point span {
    color: var(--mp-steel-soft);
    font-size: 0.75rem;
}

.mp-safe-point-one {
    top: 45px;
    left: 0;
}

.mp-safe-point-two {
    top: 190px;
    right: -15px;
}

.mp-safe-point-three {
    bottom: 35px;
    left: 25px;
}

.mp-safe-copy {
    position: relative;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 32px 8px 32px 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.22);
}

.mp-safe-copy::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    border-top: 5px solid var(--mp-orange);
    border-right: 5px solid var(--mp-orange);
    border-radius: 0 8px 0 0;
}

.mp-safe-number {
    position: absolute;
    top: -34px;
    left: 35px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
}

.mp-safe-copy p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.04rem;
    line-height: 1.95;
}

.mp-safe-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 28px 0;
}

.mp-safe-divider span {
    height: 1px;
    flex: 1;
    background: rgba(255, 255, 255, 0.16);
}

.mp-safe-divider i {
    color: var(--mp-orange);
    font-size: 1.2rem;
}

.mp-safe-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mp-safe-badge {
    display: flex;
    align-items: center;
    gap: 13px;
}

.mp-safe-badge i {
    color: var(--mp-orange);
    font-size: 2.1rem;
}

.mp-safe-badge small,
.mp-safe-badge strong {
    display: block;
}

.mp-safe-badge small {
    margin-bottom: 3px;
    color: var(--mp-steel-soft);
}

.mp-safe-badge strong {
    color: var(--mp-white);
}

.mp-safe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 8px;
    color: var(--mp-white);
    background: var(--mp-orange);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 16px 32px rgba(247, 127, 0, 0.24);
    transition: 0.35s ease;
}

.mp-safe-btn:hover {
    color: var(--mp-white);
    background: var(--mp-orange-dark);
    transform: translateY(-4px);
}

.mp-safe-btn i {
    transition: transform 0.35s ease;
}

.mp-safe-btn:hover i {
    transform: translateX(5px);
}

@keyframes mpSafeRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes mpSafeRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@media (max-width: 1199px) {

    .mp-safe-point-one {
        left: -20px;
    }

    .mp-safe-point-two {
        right: -25px;
    }
}

@media (max-width: 991px) {

    .mp-safe-zone {
        padding: 95px 0;
    }

    .mp-safe-heading {
        margin-bottom: 45px;
    }

    .mp-safe-visual {
        max-width: 580px;
        min-height: 470px;
        margin: 0 auto;
    }

    .mp-safe-point-one {
        left: 20px;
    }

    .mp-safe-point-two {
        right: 20px;
    }

    .mp-safe-copy {
        padding: 42px 35px;
    }
}

@media (max-width: 575px) {

    .mp-safe-zone {
        padding: 80px 0;
    }

    .mp-safe-visual {
        min-height: auto;
        padding: 60px 0 20px;
        flex-direction: column;
    }

    .mp-safe-shield {
        width: 145px;
        height: 170px;
        font-size: 56px;
        margin-bottom: 35px;
    }

    .mp-safe-ring-one {
        width: 240px;
        height: 240px;
        top: 20px;
    }

    .mp-safe-ring-two {
        width: 290px;
        height: 290px;
        top: -5px;
    }

    .mp-safe-point {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 310px;
        margin: 8px auto;
    }

    .mp-safe-copy {
        padding: 38px 24px;
        border-radius: 24px 6px 24px 6px;
    }

    .mp-safe-copy p {
        font-size: 0.98rem;
    }

    .mp-safe-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .mp-safe-btn {
        width: 100%;
    }
}

/*========================================
  CREATIVE LIGHT SAFETY PHOTO SECTION
=========================================*/

.mp-safety-photo-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%,
            rgba(74, 119, 161, 0.13),
            transparent 28%),
        radial-gradient(circle at 92% 88%,
            rgba(247, 127, 0, 0.1),
            transparent 25%),
        var(--mp-bg);
}

.mp-safety-photo-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 43%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.8),
            rgba(219, 231, 240, 0.45));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.mp-safety-photo-wrap {
    position: relative;
    min-height: 630px;
}

.mp-safety-photo-shape {
    position: absolute;
    top: 45px;
    left: 20px;
    width: calc(100% - 10px);
    height: 520px;
    border-radius: 38px 8px 38px 8px;
    background: linear-gradient(145deg, var(--mp-navy), var(--mp-navy-dark));
    transform: rotate(-4deg);
}

.mp-safety-main-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 45px);
    height: 540px;
    overflow: hidden;
    border: 10px solid var(--mp-white);
    border-radius: 38px 8px 38px 8px;
    box-shadow: var(--mp-shadow);
}

.mp-safety-main-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.mp-safety-photo-wrap:hover .mp-safety-main-photo img {
    transform: scale(1.06);
}

.mp-safety-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 45%,
            rgba(19, 40, 64, 0.82) 100%);
}

.mp-safety-photo-label {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.mp-safety-label-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--mp-white);
    background: var(--mp-orange);
    font-size: 1.35rem;
}

.mp-safety-photo-label small,
.mp-safety-photo-label strong {
    display: block;
}

.mp-safety-photo-label small {
    margin-bottom: 4px;
    color: var(--mp-steel-soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.mp-safety-photo-label strong {
    color: var(--mp-white);
    font-size: 1.05rem;
}

.mp-safety-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 225px;
    padding: 17px 19px;
    border: 1px solid var(--mp-line);
    border-radius: 18px;
    background: var(--mp-white);
    box-shadow: 0 18px 45px rgba(30, 58, 95, 0.18);
    animation: mpSafetyFloat 4s ease-in-out infinite;
}

.mp-safety-floating-card>i {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--mp-white);
    background: var(--mp-orange);
}

.mp-safety-floating-card strong,
.mp-safety-floating-card span {
    display: block;
}

.mp-safety-floating-card strong {
    margin-bottom: 4px;
    color: var(--mp-navy-dark);
    font-size: 0.95rem;
}

.mp-safety-floating-card span {
    color: var(--mp-muted);
    font-size: 0.78rem;
}

.mp-safety-floating-one {
    top: 115px;
    right: -10px;
}

.mp-safety-floating-two {
    bottom: 25px;
    left: 35px;
    animation-delay: 1.2s;
}

.mp-safety-dots {
    position: absolute;
    right: 10px;
    bottom: 25px;
    width: 105px;
    height: 105px;
    opacity: 0.45;
    background-image: radial-gradient(var(--mp-orange) 2px,
            transparent 2px);
    background-size: 15px 15px;
}

.mp-safety-photo-content {
    position: relative;
    z-index: 2;
    padding-left: 25px;
}

.mp-safety-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 9px 16px;
    border: 1px solid rgba(247, 127, 0, 0.22);
    border-radius: 50px;
    color: var(--mp-orange-dark);
    background: rgba(247, 127, 0, 0.09);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mp-safety-photo-content h2 {
    margin-bottom: 30px;
    color: var(--mp-navy-dark);
    font-size: clamp(2.2rem, 4.5vw, 3.9rem);
    font-weight: 900;
    line-height: 1.08;
}

.mp-safety-photo-content h2 span {
    display: block;
    margin-top: 10px;
    color: #f77f00;
    font-size: clamp(1.4rem, 2.7vw, 2.25rem);
    line-height: 1.25;
}

.mp-safety-text-block {
    position: relative;
    margin-bottom: 20px;
    padding: 23px 25px 23px 72px;
    border-left: 4px solid var(--mp-orange);
    border-radius: 0 18px 18px 0;
    background: var(--mp-white);
    box-shadow: 0 14px 36px rgba(30, 58, 95, 0.08);
    transition: 0.35s ease;
}

.mp-safety-text-block:hover {
    transform: translateX(7px);
    box-shadow: 0 20px 46px rgba(30, 58, 95, 0.13);
}

.mp-safety-text-number {
    position: absolute;
    top: 24px;
    left: 20px;
    color: rgba(30, 58, 95, 0.14);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.mp-safety-text-block p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.mp-safety-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.mp-safety-feature {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border: 1px solid var(--mp-line);
    border-radius: 50px;
    color: var(--mp-navy-dark);
    background: var(--mp-white);
    font-size: 0.86rem;
    font-weight: 800;
}

.mp-safety-feature i {
    color: var(--mp-orange);
}

.mp-safety-photo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 16px 27px;
    border-radius: 9px;
    color: var(--mp-white);
    background: linear-gradient(135deg,
            var(--mp-orange),
            var(--mp-orange-dark));
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(247, 127, 0, 0.25);
    transition: 0.35s ease;
}

.mp-safety-photo-btn:hover {
    color: var(--mp-white);
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(247, 127, 0, 0.33);
}

.mp-safety-photo-btn i {
    transition: transform 0.35s ease;
}

.mp-safety-photo-btn:hover i {
    transform: translateX(6px);
}

@keyframes mpSafetyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1199px) {

    .mp-safety-main-photo {
        width: calc(100% - 20px);
    }

    .mp-safety-floating-one {
        right: -5px;
    }

    .mp-safety-photo-content {
        padding-left: 0;
    }
}

@media (max-width: 991px) {

    .mp-safety-photo-section {
        padding: 95px 0;
    }

    .mp-safety-photo-section::before {
        display: none;
    }

    .mp-safety-photo-wrap {
        max-width: 680px;
        margin: 0 auto;
    }

    .mp-safety-photo-content {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {

    .mp-safety-photo-section {
        padding: 75px 0;
    }

    .mp-safety-photo-wrap {
        min-height: auto;
        padding-bottom: 20px;
    }

    .mp-safety-photo-shape {
        display: none;
    }

    .mp-safety-main-photo {
        position: relative;
        width: 100%;
        height: 430px;
        border-width: 6px;
        border-radius: 26px 6px 26px 6px;
    }

    .mp-safety-photo-label {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }

    .mp-safety-floating-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 15px;
        animation: none;
    }

    .mp-safety-dots {
        display: none;
    }

    .mp-safety-photo-content h2 {
        margin-top: 15px;
    }

    .mp-safety-text-block {
        padding: 60px 20px 22px;
    }

    .mp-safety-text-number {
        top: 20px;
        left: 20px;
    }

    .mp-safety-photo-btn {
        width: 100%;
    }
}


/*====================================
  CREATIVE COUNTER SECTION
=====================================*/

.mp-counter-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(74, 119, 161, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(247, 127, 0, 0.12),
            transparent 24%
        ),
        var(--mp-bg);
}

.mp-counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(
            rgba(30, 58, 95, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(30, 58, 95, 0.035) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
}

.mp-counter-wrapper {
    position: relative;
    z-index: 2;
    padding: 55px;
    border: 1px solid var(--mp-line);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--mp-shadow);
    backdrop-filter: blur(12px);
}

.mp-counter-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 65px;
    width: 150px;
    height: 6px;
    border-radius: 0 0 10px 10px;
    background: var(--mp-orange);
}

.mp-counter-intro {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.mp-counter-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 9px 17px;
    border: 1px solid rgba(247, 127, 0, 0.24);
    border-radius: 50px;
    color: var(--mp-orange-dark);
    background: rgba(247, 127, 0, 0.08);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.mp-counter-tag i {
    font-size: 0.95rem;
}

.mp-counter-intro h2 {
    margin-bottom: 18px;
    color: var(--mp-navy-dark);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
}

.mp-counter-intro h2 span {
    display: block;
    margin-top: 7px;
    color: var(--mp-steel);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.mp-counter-intro p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--mp-muted);
    font-size: 1.03rem;
    line-height: 1.85;
}

.mp-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.mp-counter-card {
    position: relative;
    min-height: 300px;
    padding: 32px 25px;
    overflow: hidden;
    border: 1px solid var(--mp-line);
    border-radius: 22px;
    background: var(--mp-white);
    box-shadow: 0 18px 42px rgba(30, 58, 95, 0.09);
    transition: 0.4s ease;
}

.mp-counter-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(74, 119, 161, 0.08);
    transition: 0.4s ease;
}

.mp-counter-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    background: var(--mp-orange);
    transition: 0.4s ease;
}

.mp-counter-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 127, 0, 0.35);
    box-shadow: 0 26px 55px rgba(30, 58, 95, 0.16);
}

.mp-counter-card:hover::before {
    transform: scale(1.25);
    background: rgba(247, 127, 0, 0.1);
}

.mp-counter-card:hover::after {
    width: 100%;
}

.mp-counter-card-featured {
    color: var(--mp-white);
    border-color: transparent;
    background:
        linear-gradient(
            145deg,
            var(--mp-navy-dark),
            var(--mp-navy)
        );
    transform: translateY(-12px);
}

.mp-counter-card-featured::before {
    background: rgba(255, 255, 255, 0.07);
}

.mp-counter-card-featured:hover {
    transform: translateY(-20px);
}

.mp-counter-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 17px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    font-size: 1.45rem;
    box-shadow: 0 14px 30px rgba(247, 127, 0, 0.24);
}

.mp-counter-number {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--mp-navy-dark);
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1;
}

.mp-counter-number sup {
    margin-top: 7px;
    margin-left: 4px;
    color: var(--mp-orange);
    font-size: 1.15rem;
    font-weight: 900;
}

.mp-counter-card-featured .mp-counter-number {
    color: var(--mp-white);
}

.mp-counter-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    color: var(--mp-navy-dark);
    font-size: 1.15rem;
    font-weight: 800;
}

.mp-counter-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--mp-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.mp-counter-card-featured h3 {
    color: var(--mp-white);
}

.mp-counter-card-featured p {
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1199px) {

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

    .mp-counter-card-featured {
        transform: none;
    }

    .mp-counter-card-featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767px) {

    .mp-counter-section {
        padding: 80px 0;
    }

    .mp-counter-wrapper {
        padding: 42px 25px;
        border-radius: 26px;
    }

    .mp-counter-grid {
        grid-template-columns: 1fr;
    }

    .mp-counter-card {
        min-height: auto;
    }
}

@media (max-width: 575px) {

    .mp-counter-wrapper {
        padding: 38px 18px;
    }

    .mp-counter-wrapper::before {
        left: 50%;
        width: 100px;
        transform: translateX(-50%);
    }

    .mp-counter-intro {
        margin-bottom: 35px;
    }

    .mp-counter-number {
        font-size: 2.8rem;
    }
}
/*=========================================
    MAGAZINE EXPERTS SECTION
=========================================*/

.mp-magazine-experts {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(74, 119, 161, 0.22),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(247, 127, 0, 0.14),
            transparent 24%
        ),
        linear-gradient(
            145deg,
            var(--mp-navy-dark),
            var(--mp-navy)
        );
}

.mp-magazine-experts::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.045;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.7) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.7) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
}

.mp-magazine-experts::after {
    content: "";
    position: absolute;
    top: -220px;
    right: -220px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(247, 127, 0, 0.2);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(247, 127, 0, 0.025),
        0 0 0 110px rgba(247, 127, 0, 0.018);
}

.mp-magazine-shell {
    position: relative;
    z-index: 2;
}

/*=========================================
    MAIN STAGE
=========================================*/

.mp-magazine-stage {
    position: relative;
    min-height: 730px;
}

.mp-magazine-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 680px;
    overflow: hidden;
    border-radius: 34px 8px 34px 8px;
    box-shadow: 0 42px 90px rgba(0, 0, 0, 0.34);
}

.mp-magazine-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.mp-magazine-stage:hover .mp-magazine-photo img {
    transform: scale(1.045);
}

.mp-magazine-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(19, 40, 64, 0.08) 35%,
            rgba(19, 40, 64, 0.62) 100%
        ),
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(19, 40, 64, 0.68) 100%
        );
}

.mp-magazine-photo-label {
    position: absolute;
    left: 28px;
    bottom: 28px;
    padding-left: 18px;
    border-left: 4px solid var(--mp-orange);
}

.mp-magazine-photo-label span,
.mp-magazine-photo-label strong {
    display: block;
}

.mp-magazine-photo-label span {
    margin-bottom: 4px;
    color: var(--mp-steel-soft);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.mp-magazine-photo-label strong {
    color: var(--mp-white);
    font-size: 1.15rem;
}

.mp-magazine-index {
    position: absolute;
    top: 28px;
    left: 28px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    color: var(--mp-white);
}

.mp-magazine-index small {
    max-width: 55px;
    color: var(--mp-steel-soft);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.mp-magazine-index strong {
    color: var(--mp-orange);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 0.9;
}

/*=========================================
    EDITORIAL PANEL
=========================================*/

.mp-magazine-content {
    position: absolute;
    top: 55px;
    right: 0;
    z-index: 5;
    width: 48%;
    padding: 52px 48px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 5px 32px 5px 32px;
    background:
        linear-gradient(
            145deg,
            rgba(19, 40, 64, 0.97),
            rgba(30, 58, 95, 0.94)
        );
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.mp-magazine-content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 38px;
    width: 125px;
    height: 5px;
    background: var(--mp-orange);
}

.mp-magazine-content::after {
    content: "LOCAL";
    position: absolute;
    right: 20px;
    bottom: 10px;
    color: rgba(255, 255, 255, 0.035);
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 3px;
    pointer-events: none;
}

.mp-magazine-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: var(--mp-orange);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.mp-magazine-content h2 {
    margin-bottom: 13px;
    color: var(--mp-white);
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -2px;
}

.mp-magazine-content h2 span {
    display: block;
    margin-top: 12px;
    color: var(--mp-orange);
    font-size: 0.67em;
    letter-spacing: -1px;
}

.mp-magazine-content > h3 {
    max-width: 430px;
    margin-bottom: 27px;
    color: var(--mp-steel-soft);
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.5;
}

.mp-magazine-copy {
    position: relative;
    z-index: 2;
}

.mp-magazine-copy p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.96rem;
    line-height: 1.82;
}

.mp-magazine-signature {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 27px;
}

.mp-magazine-signature-line {
    width: 60px;
    height: 3px;
    border-radius: 20px;
    background: var(--mp-orange);
}

.mp-magazine-signature small,
.mp-magazine-signature strong {
    display: block;
}

.mp-magazine-signature small {
    margin-bottom: 3px;
    color: var(--mp-steel-soft);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mp-magazine-signature strong {
    color: var(--mp-white);
    font-size: 0.92rem;
}

.mp-magazine-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding: 15px 23px;
    border-radius: 6px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 15px 32px rgba(247, 127, 0, 0.25);
    transition: 0.35s ease;
}

.mp-magazine-btn:hover {
    color: var(--mp-white);
    transform: translateY(-4px);
}

.mp-magazine-btn i {
    transition: transform 0.35s ease;
}

.mp-magazine-btn:hover i {
    transform: translateX(5px);
}

/*=========================================
    FEATURE TRACK
=========================================*/

.mp-magazine-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 17px;
    margin-top: 30px;
    padding-top: 45px;
}

.mp-magazine-track-line {
    position: absolute;
    top: 14px;
    left: 8%;
    width: 84%;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(247, 127, 0, 0.75) 12%,
            rgba(247, 127, 0, 0.75) 88%,
            transparent
        );
}

.mp-magazine-feature {
    position: relative;
}

.mp-magazine-dot {
    position: absolute;
    top: -38px;
    left: 50%;
    z-index: 3;
    width: 17px;
    height: 17px;
    border: 4px solid var(--mp-navy-dark);
    border-radius: 50%;
    background: var(--mp-orange);
    box-shadow: 0 0 0 5px rgba(247, 127, 0, 0.16);
    transform: translateX(-50%);
}

.mp-magazine-feature-card {
    position: relative;
    min-height: 250px;
    padding: 27px 21px 23px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 24px 8px 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.035)
        );
    transition: 0.4s ease;
}

.mp-magazine-feature-card::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--mp-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s ease;
}

.mp-magazine-feature-card:hover {
    transform: translateY(-9px);
    border-color: rgba(247, 127, 0, 0.38);
    background: rgba(255, 255, 255, 0.095);
}

.mp-magazine-feature-card:hover::before {
    transform: scaleX(1);
}

.mp-magazine-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.mp-magazine-feature-top span {
    color: rgba(255, 255, 255, 0.15);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
}

.mp-magazine-feature-top i {
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px 5px 15px 5px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    font-size: 1.16rem;
}

.mp-magazine-feature-card h3 {
    margin-bottom: 11px;
    color: var(--mp-white);
    font-size: 1rem;
    font-weight: 800;
}

.mp-magazine-feature-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.86rem;
    line-height: 1.65;
}

/*=========================================
    RESPONSIVE
=========================================*/

@media (max-width: 1199px) {

    .mp-magazine-content {
        width: 52%;
        padding: 44px 38px;
    }

    .mp-magazine-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .mp-magazine-track-line,
    .mp-magazine-dot {
        display: none;
    }
}

@media (max-width: 991px) {

    .mp-magazine-experts {
        padding: 95px 0;
    }

    .mp-magazine-stage {
        min-height: auto;
    }

    .mp-magazine-photo {
        position: relative;
        width: 100%;
        height: 560px;
    }

    .mp-magazine-content {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 50px);
        margin: -130px auto 0;
    }

    .mp-magazine-track {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 55px;
        padding-top: 0;
    }
}

@media (max-width: 575px) {

    .mp-magazine-experts {
        padding: 75px 0;
    }

    .mp-magazine-photo {
        height: 460px;
        border-radius: 24px 6px 24px 6px;
    }

    .mp-magazine-photo-label {
        left: 18px;
        bottom: 18px;
    }

    .mp-magazine-index {
        top: 18px;
        left: 18px;
    }

    .mp-magazine-content {
        width: calc(100% - 22px);
        margin-top: -90px;
        padding: 35px 21px;
        border-radius: 5px 23px 5px 23px;
    }

    .mp-magazine-content h2 {
        letter-spacing: -1.2px;
    }

    .mp-magazine-content::after {
        display: none;
    }

    .mp-magazine-btn {
        width: 100%;
    }

    .mp-magazine-track {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .mp-magazine-feature-card {
        min-height: auto;
    }
}


/*========================================
    CREATIVE GALLERY SECTION
=========================================*/

.mp-gallery-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(74, 119, 161, 0.15),
            transparent 26%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(247, 127, 0, 0.1),
            transparent 25%
        ),
        var(--mp-bg);
}

.mp-gallery-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -170px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(247, 127, 0, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(247, 127, 0, 0.025),
        0 0 0 90px rgba(247, 127, 0, 0.018);
}

.mp-gallery-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    background: rgba(74, 119, 161, 0.07);
}

.mp-gallery-section .container {
    position: relative;
    z-index: 2;
}

/*========================================
    HEADING
=========================================*/

.mp-gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.mp-gallery-heading-left {
    max-width: 760px;
}

.mp-gallery-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 9px 16px;
    border: 1px solid rgba(247, 127, 0, 0.22);
    border-radius: 50px;
    color: var(--mp-orange-dark);
    background: rgba(247, 127, 0, 0.08);
    font-size: 0.77rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.mp-gallery-tag i {
    color: var(--mp-orange);
}

.mp-gallery-heading h2 {
    margin: 0;
    color: var(--mp-navy-dark);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -1.5px;
}

.mp-gallery-heading h2 span {
    display: block;
    margin-top: 9px;
    color: var(--mp-steel);
    font-size: 0.65em;
    line-height: 1.2;
}

.mp-gallery-heading-text {
    max-width: 390px;
    padding-left: 24px;
    border-left: 4px solid var(--mp-orange);
}

.mp-gallery-heading-text p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/*========================================
    GALLERY GRID
=========================================*/

.mp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 400px 250px;
    gap: 18px;
}

/* Large top photos */

.mp-gallery-photo-1 {
    grid-column: 1 / 7;
    grid-row: 1;
    border-radius: 34px 10px 34px 10px;
}

.mp-gallery-photo-2 {
    grid-column: 7 / 13;
    grid-row: 1;
    border-radius: 10px 34px 10px 34px;
}

/* Equal bottom photos */

.mp-gallery-photo-3 {
    grid-column: 1 / 4;
    grid-row: 2;
}

.mp-gallery-photo-4 {
    grid-column: 4 / 7;
    grid-row: 2;
}

.mp-gallery-photo-5 {
    grid-column: 7 / 10;
    grid-row: 2;
}

.mp-gallery-photo-6 {
    grid-column: 10 / 13;
    grid-row: 2;
}

/*========================================
    GALLERY ITEM
=========================================*/

.mp-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 95, 0.08);
    border-radius: 22px;
    background: var(--mp-navy-dark);
    box-shadow: 0 20px 48px rgba(30, 58, 95, 0.14);
    text-decoration: none;
    isolation: isolate;
}

.mp-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.7s ease,
        filter 0.45s ease;
}

.mp-gallery-item:hover img {
    transform: scale(1.075);
    filter: saturate(1.08) contrast(1.03);
}

/* Overlay */

.mp-gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(19, 40, 64, 0.02) 18%,
            rgba(19, 40, 64, 0.25) 55%,
            rgba(19, 40, 64, 0.9) 100%
        );
    transition: background 0.45s ease;
}

.mp-gallery-item:hover .mp-gallery-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(19, 40, 64, 0.01) 10%,
            rgba(19, 40, 64, 0.2) 48%,
            rgba(19, 40, 64, 0.96) 100%
        );
}

/* Inner border */

.mp-gallery-item::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 3;
    border: 1px solid transparent;
    border-radius: 15px;
    pointer-events: none;
    transition:
        inset 0.4s ease,
        border-color 0.4s ease;
}

.mp-gallery-item:hover::before {
    inset: 16px;
    border-color: rgba(255, 255, 255, 0.25);
}

/* Orange line */

.mp-gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 0;
    height: 5px;
    background: var(--mp-orange);
    transition: width 0.45s ease;
}

.mp-gallery-item:hover::after {
    width: 42%;
}

/*========================================
    IMAGE CONTENT
=========================================*/

.mp-gallery-content {
    position: absolute;
    right: 24px;
    bottom: 23px;
    left: 24px;
    z-index: 4;
    transform: translateY(7px);
    transition: transform 0.4s ease;
}

.mp-gallery-item:hover .mp-gallery-content {
    transform: translateY(0);
}

.mp-gallery-category {
    display: block;
    margin-bottom: 7px;
    color: var(--mp-orange);
    font-size: 0.69rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.mp-gallery-content h3 {
    margin: 0;
    color: var(--mp-white);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.mp-gallery-photo-1 .mp-gallery-content h3,
.mp-gallery-photo-2 .mp-gallery-content h3 {
    max-width: 500px;
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
}

.mp-gallery-number {
    position: absolute;
    top: 18px;
    right: 19px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--mp-white);
    background: rgba(19, 40, 64, 0.4);
    backdrop-filter: blur(8px);
    font-size: 0.72rem;
    font-weight: 900;
}

.mp-gallery-view {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    color: var(--mp-white);
    font-size: 0.8rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.mp-gallery-photo-1:hover .mp-gallery-view,
.mp-gallery-photo-2:hover .mp-gallery-view {
    opacity: 1;
    transform: translateY(0);
}

/*========================================
    GALLERY FOOTER
=========================================*/

.mp-gallery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 42px;
    padding: 25px 28px;
    border: 1px solid var(--mp-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 17px 40px rgba(30, 58, 95, 0.09);
    backdrop-filter: blur(10px);
}

.mp-gallery-footer-note {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mp-gallery-footer-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-navy),
            var(--mp-steel)
        );
    font-size: 1.35rem;
}

.mp-gallery-footer-note small,
.mp-gallery-footer-note strong {
    display: block;
}

.mp-gallery-footer-note small {
    margin-bottom: 4px;
    color: var(--mp-orange-dark);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mp-gallery-footer-note strong {
    color: var(--mp-navy-dark);
    font-size: 0.96rem;
}

.mp-gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 0 0 auto;
    padding: 15px 24px;
    border-radius: 8px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    box-shadow: 0 15px 32px rgba(247, 127, 0, 0.24);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.mp-gallery-btn:hover {
    color: var(--mp-white);
    transform: translateY(-4px);
    box-shadow: 0 21px 40px rgba(247, 127, 0, 0.3);
}

.mp-gallery-btn i {
    transition: transform 0.35s ease;
}

.mp-gallery-btn:hover i {
    transform: translateX(5px);
}

/*========================================
    TABLET
=========================================*/

@media (max-width: 991px) {

    .mp-gallery-section {
        padding: 95px 0;
    }

    .mp-gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .mp-gallery-heading-text {
        max-width: 680px;
    }

    .mp-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 400px 400px 260px 260px;
        gap: 16px;
    }

    .mp-gallery-photo-1 {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .mp-gallery-photo-2 {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .mp-gallery-photo-3 {
        grid-column: 1;
        grid-row: 3;
    }

    .mp-gallery-photo-4 {
        grid-column: 2;
        grid-row: 3;
    }

    .mp-gallery-photo-5 {
        grid-column: 1;
        grid-row: 4;
    }

    .mp-gallery-photo-6 {
        grid-column: 2;
        grid-row: 4;
    }
}

/*========================================
    SMALL TABLET
=========================================*/

@media (max-width: 767px) {

    .mp-gallery-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .mp-gallery-btn {
        width: 100%;
    }
}

/*========================================
    MOBILE
=========================================*/

@media (max-width: 575px) {

    .mp-gallery-section {
        padding: 75px 0;
    }

    .mp-gallery-heading {
        margin-bottom: 38px;
    }

    .mp-gallery-heading-text {
        padding-left: 18px;
    }

    .mp-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: 320px;
        gap: 15px;
    }

    .mp-gallery-photo-1,
    .mp-gallery-photo-2,
    .mp-gallery-photo-3,
    .mp-gallery-photo-4,
    .mp-gallery-photo-5,
    .mp-gallery-photo-6 {
        grid-column: 1;
        grid-row: auto;
        border-radius: 22px 7px 22px 7px;
    }

    .mp-gallery-content {
        right: 19px;
        bottom: 19px;
        left: 19px;
    }

    .mp-gallery-photo-1 .mp-gallery-content h3,
    .mp-gallery-photo-2 .mp-gallery-content h3 {
        font-size: 1.35rem;
    }

    .mp-gallery-footer {
        padding: 22px 19px;
    }

    .mp-gallery-footer-note {
        align-items: flex-start;
    }
}


/*========================================
    FAQ QUESTION BOARD
=========================================*/

.mp-faq-board {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 7% 15%,
            rgba(74, 119, 161, 0.15),
            transparent 27%
        ),
        radial-gradient(
            circle at 94% 86%,
            rgba(247, 127, 0, 0.1),
            transparent 25%
        ),
        var(--mp-bg);
}

.mp-faq-board::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background-image:
        linear-gradient(
            rgba(30, 58, 95, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(30, 58, 95, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.mp-faq-board::after {
    content: "?";
    position: absolute;
    right: -15px;
    bottom: -135px;
    color: rgba(30, 58, 95, 0.035);
    font-size: 32rem;
    font-weight: 900;
    line-height: 1;
}

.mp-faq-board .container {
    position: relative;
    z-index: 2;
}

/* HEADING */

.mp-faq-board-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.mp-faq-board-heading-main {
    max-width: 790px;
}

.mp-faq-board-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 9px 16px;
    border: 1px solid rgba(247, 127, 0, 0.22);
    border-radius: 50px;
    color: var(--mp-orange-dark);
    background: rgba(247, 127, 0, 0.08);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mp-faq-board-tag i {
    color: var(--mp-orange);
}

.mp-faq-board-heading h2 {
    margin: 0;
    color: var(--mp-navy-dark);
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -1.5px;
}

.mp-faq-board-heading h2 span {
    display: block;
    margin-top: 10px;
    color: var(--mp-steel);
    font-size: 0.62em;
    line-height: 1.22;
}

.mp-faq-board-heading-copy {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 400px;
    padding: 20px 22px;
    border: 1px solid var(--mp-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 38px rgba(30, 58, 95, 0.09);
}

.mp-faq-board-copy-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    font-size: 1.2rem;
}

.mp-faq-board-heading-copy p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* GRID */

.mp-faq-board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

/* CARD */

.mp-faq-board-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mp-line);
    border-radius: 30px 8px 30px 8px;
    background: var(--mp-white);
    box-shadow: 0 20px 46px rgba(30, 58, 95, 0.1);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.mp-faq-board-card:hover {
    transform: translateY(-7px);
    border-color: rgba(247, 127, 0, 0.35);
    box-shadow: 0 28px 58px rgba(30, 58, 95, 0.16);
}

.mp-faq-board-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;
    width: 100px;
    height: 5px;
    background: var(--mp-orange);
}

.mp-faq-board-number {
    position: absolute;
    top: 18px;
    right: 22px;
    color: rgba(30, 58, 95, 0.06);
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.mp-faq-board-icon {
    position: relative;
    z-index: 2;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 30px 10px;
    border-radius: 20px 7px 20px 7px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    box-shadow: 0 15px 32px rgba(247, 127, 0, 0.23);
    font-size: 1.45rem;
}

/* BUTTON */

.mp-faq-board-button {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    width: 100%;
    min-height: 145px;
    padding: 18px 30px 30px;
    border: 0;
    color: var(--mp-navy-dark);
    background: transparent;
    box-shadow: none;
    font-weight: 800;
}

.mp-faq-board-button:focus {
    box-shadow: none;
}

.mp-faq-board-button::after {
    display: none;
}

.mp-faq-board-button > span {
    flex: 1;
    max-width: 470px;
    text-align: left;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.48;
}

.mp-faq-board-button > i {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mp-line);
    border-radius: 50%;
    color: var(--mp-navy);
    background: var(--mp-bg);
    transition:
        transform 0.35s ease,
        color 0.35s ease,
        background 0.35s ease;
}

.mp-faq-board-button:not(.collapsed) {
    color: var(--mp-white);
    background:
        linear-gradient(
            145deg,
            var(--mp-navy-dark),
            var(--mp-navy)
        );
}

.mp-faq-board-button:not(.collapsed) > i {
    color: var(--mp-white);
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--mp-orange);
    transform: rotate(180deg);
}

/* When opened, connect header with answer */

.mp-faq-board-card:has(
    .mp-faq-board-button:not(.collapsed)
) {
    border-color: rgba(247, 127, 0, 0.35);
}

.mp-faq-board-card:has(
    .mp-faq-board-button:not(.collapsed)
) .mp-faq-board-icon {
    color: var(--mp-orange);
    background: var(--mp-white);
}

/* ANSWER */

.mp-faq-board-answer {
    position: relative;
    padding: 28px 30px 31px 55px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(
            145deg,
            var(--mp-navy-dark),
            var(--mp-navy)
        );
}

.mp-faq-board-answer::before {
    content: "";
    position: absolute;
    top: 29px;
    bottom: 31px;
    left: 30px;
    width: 4px;
    border-radius: 20px;
    background: var(--mp-orange);
}

.mp-faq-board-answer-label {
    display: inline-block;
    margin-bottom: 11px;
    color: var(--mp-orange);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.mp-faq-board-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
    line-height: 1.86;
}

/* FOOTER */

.mp-faq-board-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 42px;
    padding: 24px 27px;
    border: 1px solid var(--mp-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 17px 40px rgba(30, 58, 95, 0.08);
}

.mp-faq-board-footer-text {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mp-faq-board-footer-text > i {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-navy),
            var(--mp-steel)
        );
    font-size: 1.25rem;
}

.mp-faq-board-footer-text small,
.mp-faq-board-footer-text strong {
    display: block;
}

.mp-faq-board-footer-text small {
    margin-bottom: 4px;
    color: var(--mp-orange-dark);
    font-size: 0.69rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.mp-faq-board-footer-text strong {
    color: var(--mp-navy-dark);
    font-size: 0.93rem;
}

.mp-faq-board-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex: 0 0 auto;
    padding: 15px 23px;
    border-radius: 8px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    box-shadow: 0 15px 32px rgba(247, 127, 0, 0.24);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    transition: 0.35s ease;
}

.mp-faq-board-btn:hover {
    color: var(--mp-white);
    transform: translateY(-4px);
}

.mp-faq-board-btn i {
    transition: transform 0.35s ease;
}

.mp-faq-board-btn:hover i {
    transform: translateX(5px);
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .mp-faq-board {
        padding: 95px 0;
    }

    .mp-faq-board-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .mp-faq-board-heading-copy {
        max-width: 650px;
    }

    .mp-faq-board-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .mp-faq-board-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .mp-faq-board-btn {
        width: 100%;
    }
}

@media (max-width: 575px) {

    .mp-faq-board {
        padding: 75px 0;
    }

    .mp-faq-board-heading {
        margin-bottom: 40px;
    }

    .mp-faq-board-heading-copy {
        width: 100%;
        align-items: flex-start;
    }

    .mp-faq-board-card {
        border-radius: 23px 7px 23px 7px;
    }

    .mp-faq-board-icon {
        width: 56px;
        height: 56px;
        margin: 27px 20px 5px;
    }

    .mp-faq-board-button {
        align-items: flex-start;
        min-height: auto;
        padding: 18px 20px 25px;
    }

    .mp-faq-board-button > span {
        font-size: 0.98rem;
    }

    .mp-faq-board-button > i {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .mp-faq-board-answer {
        padding: 25px 20px 27px 41px;
    }

    .mp-faq-board-answer::before {
        top: 25px;
        bottom: 27px;
        left: 21px;
    }

    .mp-faq-board-footer {
        padding: 22px 19px;
    }

    .mp-faq-board-footer-text {
        align-items: flex-start;
    }
}
/*========================================
    SERVICE COMMAND CENTER
=========================================*/

.mp-command-contact {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 9% 15%,
            rgba(74, 119, 161, 0.26),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(247, 127, 0, 0.14),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            var(--mp-navy-dark),
            var(--mp-navy)
        );
}

.mp-command-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.045;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.7) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.7) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.mp-command-contact::after {
    content: "";
    position: absolute;
    top: -220px;
    right: -210px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(247, 127, 0, 0.2);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(247, 127, 0, 0.025),
        0 0 0 110px rgba(247, 127, 0, 0.018);
}

.mp-command-contact .container {
    position: relative;
    z-index: 2;
}

/*========================================
    HEADING
=========================================*/

.mp-command-head {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.mp-command-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 9px 16px;
    border: 1px solid rgba(247, 127, 0, 0.28);
    border-radius: 50px;
    color: var(--mp-white);
    background: rgba(247, 127, 0, 0.1);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.mp-command-tag i {
    color: var(--mp-orange);
}

.mp-command-head h2 {
    margin-bottom: 17px;
    color: var(--mp-white);
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -1.6px;
}

.mp-command-head h2 span {
    display: block;
    margin-top: 9px;
    color: var(--mp-orange);
    font-size: 0.61em;
    line-height: 1.22;
}

.mp-command-head p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.75;
}

/*========================================
    MAIN STAGE
=========================================*/

.mp-command-stage {
    display: grid;
    grid-template-columns: 0.75fr 1.45fr 0.75fr;
    gap: 20px;
    align-items: start;
}

/*========================================
    CONTACT COLUMN
=========================================*/

.mp-command-contact-column {
    display: grid;
    gap: 12px;
}

.mp-command-contact-card {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 17px 6px 17px 6px;
    color: var(--mp-white);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(12px);
    text-decoration: none;
    transition: 0.35s ease;
}

a.mp-command-contact-card:hover {
    color: var(--mp-white);
    border-color: rgba(247, 127, 0, 0.36);
    background: rgba(255, 255, 255, 0.11);
    transform: translateX(6px);
}

.mp-command-card-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
}

.mp-command-contact-card div {
    flex: 1;
    min-width: 0;
}

.mp-command-contact-card small,
.mp-command-contact-card strong {
    display: block;
}

.mp-command-contact-card small {
    margin-bottom: 3px;
    color: var(--mp-steel-soft);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.mp-command-contact-card strong {
    overflow-wrap: anywhere;
    color: var(--mp-white);
    font-size: 0.84rem;
    line-height: 1.4;
}

.mp-command-contact-card > i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
}

.mp-command-zip-card {
    padding: 17px;
    border: 1px solid rgba(247, 127, 0, 0.24);
    border-radius: 17px 6px 17px 6px;
    background: rgba(247, 127, 0, 0.09);
}

.mp-command-zip-card > span {
    display: block;
    margin-bottom: 11px;
    color: var(--mp-steel-soft);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.mp-command-zip-card div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.mp-command-zip-card strong {
    padding: 6px 9px;
    border-radius:11px;
    color: var(--mp-white);
    background: rgba(255, 255, 255, 0.09);
    font-size: 0.68rem;
}

/*========================================
    FORM CARD
=========================================*/

.mp-command-form-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px 32px 8px 32px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.24);
}

.mp-command-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 35px;
    width: 110px;
    height: 5px;
    background: var(--mp-orange);
}

.mp-command-form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--mp-line);
}

.mp-command-form-top span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    color: var(--mp-orange-dark);
    font-size: 0.69rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.mp-command-form-top h3 {
    margin: 0;
    color: var(--mp-navy-dark);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 900;
    line-height: 1.15;
}

.mp-command-form-number {
    color: rgba(30, 58, 95, 0.08);
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1;
}

/*========================================
    FORM BASE
=========================================*/

.cc-fcf-form,
.cc-fcf-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.cc-fcf-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.cc-fcf-field-wide {
    grid-column: 1 / -1;
}

.cc-fcf-field,
.cc-fcf-textarea-wrap {
    position: relative;
}

.cc-fcf-field > i,
.cc-fcf-textarea-wrap > i {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 2;
    color: var(--mp-steel);
    font-size: 0.88rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.cc-fcf-textarea-wrap > i {
    top: 16px;
    transform: none;
}

.cc-fcf-field input,
.cc-fcf-date input,
.cc-fcf-date select,
.cc-fcf-schedule-block > select,
.cc-fcf-textarea-wrap textarea {
    width: 100%;
    border: 1px solid var(--mp-line);
    border-radius: 12px;
    outline: 0;
    color: var(--mp-text);
    background: var(--mp-bg);
    font-size: 0.88rem;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.cc-fcf-field input {
    height: 47px;
    padding: 0 14px 0 42px;
}

.cc-fcf-textarea-wrap {
    margin-top: 11px;
}

.cc-fcf-textarea-wrap textarea {
    min-height: 82px;
    padding: 14px 14px 14px 42px;
    resize: vertical;
}

.cc-fcf-field input:focus,
.cc-fcf-date input:focus,
.cc-fcf-date select:focus,
.cc-fcf-schedule-block > select:focus,
.cc-fcf-textarea-wrap textarea:focus {
    border-color: rgba(247, 127, 0, 0.55);
    background: var(--mp-white);
    box-shadow: 0 0 0 4px rgba(247, 127, 0, 0.08);
}

.cc-fcf-field:focus-within > i,
.cc-fcf-textarea-wrap:focus-within > i {
    color: var(--mp-orange);
}

/*========================================
    DATE AND TIME
=========================================*/

.cc-fcf-schedule {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 11px;
    margin-top: 11px;
}

.cc-fcf-schedule-block {
    padding: 10px;
    border: 1px solid var(--mp-line);
    border-radius: 13px;
    background: rgba(219, 231, 240, 0.32);
}

.cc-fcf-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    color: var(--mp-navy-dark);
    font-size: 0.73rem;
    font-weight: 800;
}

.cc-fcf-label i {
    color: var(--mp-orange);
}

.cc-fcf-date {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.8fr;
    gap: 7px;
}

.cc-fcf-date select,
.cc-fcf-date input,
.cc-fcf-schedule-block > select {
    height: 42px;
    padding: 0 9px;
}

/*========================================
    SUBMIT BUTTON
=========================================*/

.cc-fcf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 13px;
    padding: 13px 18px;
    border: 0;
    border-radius: 9px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    box-shadow: 0 14px 28px rgba(247, 127, 0, 0.22);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.cc-fcf-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 19px 36px rgba(247, 127, 0, 0.3);
}

.cc-fcf-submit i {
    transition: transform 0.35s ease;
}

.cc-fcf-submit:hover i {
    transform: translateX(5px);
}

/*========================================
    SUPPORT CARD
=========================================*/

.mp-command-support-card {
    position: sticky;
    top: 30px;
    padding: 28px 23px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px 8px 28px 8px;
    background:
        radial-gradient(
            circle at top right,
            rgba(74, 119, 161, 0.32),
            transparent 36%
        ),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.17);
    backdrop-filter: blur(14px);
}

.mp-command-support-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 90px;
    height: 5px;
    background: var(--mp-orange);
}

.mp-command-support-badge {
    display: inline-block;
    margin-bottom: 19px;
    color: var(--mp-orange);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mp-command-support-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 18px 7px 18px 7px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    font-size: 1.45rem;
}

.mp-command-support-card h3 {
    margin-bottom: 15px;
    color: var(--mp-white);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.mp-command-support-card > p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.87rem;
    line-height: 1.7;
}

.mp-command-support-points {
    display: grid;
    gap: 10px;
}

.mp-command-support-points div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--mp-white);
    font-size: 0.81rem;
    font-weight: 700;
}

.mp-command-support-points i {
    color: var(--mp-orange);
}

.mp-command-emergency {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px;
    border: 1px solid rgba(247, 127, 0, 0.25);
    border-radius: 13px;
    background: rgba(247, 127, 0, 0.1);
}

.mp-command-emergency > i {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--mp-white);
    background: var(--mp-orange);
}

.mp-command-emergency small,
.mp-command-emergency strong {
    display: block;
}

.mp-command-emergency small {
    margin-bottom: 3px;
    color: var(--mp-steel-soft);
    font-size: 0.62rem;
    text-transform: uppercase;
}

.mp-command-emergency strong {
    color: var(--mp-white);
    font-size: 0.77rem;
}

/*========================================
    MAP
=========================================*/

.mp-command-map {
    position: relative;
    min-height: 390px;
    margin-top: 24px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px 8px 32px 8px;
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.22);
}

.mp-command-map iframe {
    width: 100%;
    height: 390px;
    display: block;
    border: 0;
}

.mp-command-map-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(19, 40, 64, 0.02),
            rgba(19, 40, 64, 0.42)
        );
    pointer-events: none;
}

.mp-command-map-panel {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 19px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 17px;
    color: var(--mp-white);
    background: rgba(19, 40, 64, 0.85);
    box-shadow: 0 17px 38px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.mp-command-map-pin {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
}

.mp-command-map-panel > div {
    flex: 1;
}

.mp-command-map-panel small,
.mp-command-map-panel strong {
    display: block;
}

.mp-command-map-panel small {
    margin-bottom: 3px;
    color: var(--mp-steel-soft);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.mp-command-map-panel strong {
    color: var(--mp-white);
    font-size: 0.95rem;
}

.mp-command-map-panel p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    line-height: 1.45;
}

.mp-command-map-panel > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 11px 15px;
    border-radius: 8px;
    color: var(--mp-white);
    background: var(--mp-orange);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
}

/*========================================
    RESPONSIVE
=========================================*/

@media (max-width: 1199px) {

    .mp-command-stage {
        grid-template-columns: 0.8fr 1.4fr;
    }

    .mp-command-support-card {
        position: relative;
        top: auto;
        grid-column: 1 / -1;
    }

    .cc-fcf-schedule {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {

    .mp-command-contact {
        padding: 90px 0;
    }

    .mp-command-stage {
        grid-template-columns: 1fr;
    }

    .mp-command-contact-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mp-command-zip-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {

    .mp-command-contact-column {
        grid-template-columns: 1fr;
    }

    .mp-command-zip-card {
        grid-column: auto;
    }

    .cc-fcf-grid {
        grid-template-columns: 1fr;
    }

    .cc-fcf-field-wide {
        grid-column: auto;
    }

    .mp-command-map-panel {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .mp-command-map-panel > a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {

    .mp-command-contact {
        padding: 72px 0;
    }

    .mp-command-head {
        margin-bottom: 38px;
    }

    .mp-command-form-card {
        padding: 22px 18px;
        border-radius: 7px 24px 7px 24px;
    }

    .mp-command-form-top {
        align-items: flex-start;
    }

    .mp-command-form-number {
        display: none;
    }

    .cc-fcf-date {
        grid-template-columns: 1fr;
    }

    .mp-command-map,
    .mp-command-map iframe {
        min-height: 470px;
        height: 470px;
    }

    .mp-command-map-panel {
        right: 14px;
        bottom: 14px;
        left: 14px;
        padding: 15px;
    }
}


/*========================================
    FOOTER
=========================================*/

.mp-footer {
    position: relative;
    overflow: hidden;
    padding: 90px 0 0;
    color: var(--mp-white);
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(74, 119, 161, 0.28),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(247, 127, 0, 0.14),
            transparent 24%
        ),
        linear-gradient(
            145deg,
            var(--mp-navy-dark),
            var(--mp-navy)
        );
}

.mp-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.045;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.7) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.7) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.mp-footer::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(247, 127, 0, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(247, 127, 0, 0.025),
        0 0 0 90px rgba(247, 127, 0, 0.018);
}

.mp-footer .container {
    position: relative;
    z-index: 2;
}

/*========================================
    TOP
=========================================*/

.mp-footer-top {
    display: grid;
    grid-template-columns: 0.85fr 1.65fr;
    gap: 65px;
    padding-bottom: 48px;
}

.mp-footer-brand {
    max-width: 430px;
}

.mp-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: var(--mp-white);
    text-decoration: none;
}

.mp-footer-logo:hover {
    color: var(--mp-white);
}

.mp-footer-logo-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px 7px 18px 7px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    box-shadow: 0 15px 32px rgba(247, 127, 0, 0.24);
    font-size: 1.45rem;
}

.mp-footer-logo-icon .mp-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.mp-footer-logo-text strong,
.mp-footer-logo-text small {
    display: block;
}

.mp-footer-logo-text strong {
    color: var(--mp-white);
    font-size: 1.1rem;
    font-weight: 900;
}

.mp-footer-logo-text small {
    margin-top: 3px;
    color: var(--mp-orange);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.mp-footer-brand > p {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.mp-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mp-footer-social a {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 13px;
    color: var(--mp-white);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: 0.35s ease;
}

.mp-footer-social a .mp-social-svg,
.mp-footer-social a .mp-social-icon {
    width: 17px;
    height: 17px;
    display: block;
    object-fit: contain;
}

.mp-footer-social a .mp-social-svg {
    fill: currentColor;
}

.mp-footer-social a .mp-social-icon {
    filter: brightness(0) invert(1);
}

.mp-footer-social a:hover {
    color: var(--mp-white);
    border-color: rgba(247, 127, 0, 0.35);
    background: var(--mp-orange);
    transform: translateY(-4px);
}

/*========================================
    LINK COLUMNS
=========================================*/

.mp-footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}

.mp-footer-column h3 {
    position: relative;
    margin-bottom: 23px;
    padding-bottom: 13px;
    color: var(--mp-white);
    font-size: 1.08rem;
    font-weight: 900;
}

.mp-footer-column h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 3px;
    border-radius: 20px;
    background: var(--mp-orange);
}

.mp-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mp-footer-column li {
    margin-bottom: 11px;
}

.mp-footer-column li:last-child {
    margin-bottom: 0;
}

.mp-footer-column a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 1.5;
    transition: 0.3s ease;
}

.mp-footer-column a i {
    color: var(--mp-orange);
    font-size: 0.68rem;
}

.mp-footer-column a:hover {
    color: var(--mp-white);
    transform: translateX(5px);
}

/*========================================
    CONTACT STRIP
=========================================*/

.mp-footer-contact-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px 8px 24px 8px;
    background: rgba(255, 255, 255, 0.065);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
}

.mp-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    color: var(--mp-white);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: 0.3s ease;
}

a.mp-footer-contact-item:hover {
    color: var(--mp-white);
    border-color: rgba(247, 127, 0, 0.3);
    background: rgba(255, 255, 255, 0.09);
}

.mp-footer-contact-item > span {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
}

.mp-footer-contact-item div {
    min-width: 0;
}

.mp-footer-contact-item small,
.mp-footer-contact-item strong {
    display: block;
}

.mp-footer-contact-item small {
    margin-bottom: 3px;
    color: var(--mp-steel-soft);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.mp-footer-contact-item strong {
    overflow-wrap: anywhere;
    color: var(--mp-white);
    font-size: 0.83rem;
    line-height: 1.4;
}

.mp-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 23px;
    border-radius: 10px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    box-shadow: 0 15px 32px rgba(247, 127, 0, 0.23);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 800;
    transition: 0.35s ease;
}

.mp-footer-cta:hover {
    color: var(--mp-white);
    transform: translateY(-3px);
}

.mp-footer-cta i {
    transition: transform 0.35s ease;
}

.mp-footer-cta:hover i {
    transform: translateX(5px);
}

/*========================================
    ZIP CODES
=========================================*/

.mp-footer-zip {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.mp-footer-zip > span {
    flex: 0 0 auto;
    color: var(--mp-steel-soft);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.mp-footer-zip div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mp-footer-zip strong {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50px;
    color: var(--mp-white);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.7rem;
}

/*========================================
    BOTTOM
=========================================*/

.mp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 35px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mp-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.77rem;
}

.mp-footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mp-footer-bottom a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.77rem;
    transition: 0.3s ease;
}

.mp-footer-bottom a:hover {
    color: var(--mp-orange);
}

.mp-footer-bottom > div span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--mp-orange);
}

/*========================================
    RESPONSIVE
=========================================*/

@media (max-width: 1199px) {

    .mp-footer-top {
        grid-template-columns: 0.75fr 1.25fr;
        gap: 45px;
    }

    .mp-footer-contact-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mp-footer-cta {
        min-height: 58px;
    }
}

@media (max-width: 991px) {

    .mp-footer {
        padding-top: 75px;
    }

    .mp-footer-top {
        grid-template-columns: 1fr;
    }

    .mp-footer-brand {
        max-width: 620px;
    }

    .mp-footer-links {
        gap: 28px;
    }
}

@media (max-width: 767px) {

    .mp-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mp-footer-contact-strip {
        grid-template-columns: 1fr;
    }

    .mp-footer-cta {
        min-height: 54px;
    }

    .mp-footer-zip {
        align-items: flex-start;
        flex-direction: column;
    }

    .mp-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {

    .mp-footer {
        padding-top: 65px;
    }

    .mp-footer-links {
        grid-template-columns: 1fr;
    }

    .mp-footer-contact-strip {
        padding: 15px;
        border-radius: 20px 7px 20px 7px;
    }

    .mp-footer-contact-item {
        align-items: flex-start;
    }

    .mp-footer-bottom > div {
        flex-wrap: wrap;
    }
}


/*========================================
    SERVICES FAQ SECTION
=========================================*/

.mp-services-faq {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 13%,
            rgba(74, 119, 161, 0.16),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(247, 127, 0, 0.1),
            transparent 25%
        ),
        var(--mp-bg);
}

.mp-services-faq::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(
            rgba(30, 58, 95, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(30, 58, 95, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.mp-services-faq .container {
    position: relative;
    z-index: 2;
}

/*========================================
    HEADING
=========================================*/

.mp-services-faq-head {
    max-width: 880px;
    margin: 0 auto 58px;
    text-align: center;
}

.mp-services-faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 9px 16px;
    border: 1px solid rgba(247, 127, 0, 0.22);
    border-radius: 50px;
    color: var(--mp-orange-dark);
    background: rgba(247, 127, 0, 0.08);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mp-services-faq-head h2 {
    margin-bottom: 18px;
    color: var(--mp-navy-dark);
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 900;
    line-height: 1.04;
}

.mp-services-faq-head h2 span {
    display: block;
    margin-top: 10px;
    color: var(--mp-steel);
    font-size: 0.62em;
}

.mp-services-faq-head p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--mp-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/*========================================
    LAYOUT
=========================================*/

.mp-services-faq-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

/*========================================
    NAVIGATION
=========================================*/

.mp-services-faq-nav {
    position: sticky;
    top: 30px;
    display: grid;
    gap: 10px;
    padding: 20px;
    border-radius: 28px 8px 28px 8px;
    background:
        linear-gradient(
            145deg,
            var(--mp-navy-dark),
            var(--mp-navy)
        );
    box-shadow: var(--mp-shadow);
}

.mp-services-faq-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    color: var(--mp-white);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    transition: 0.35s ease;
}

.mp-services-faq-nav-item i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--mp-orange);
    background: rgba(247, 127, 0, 0.12);
}

.mp-services-faq-nav-item:hover {
    color: var(--mp-white);
    border-color: rgba(247, 127, 0, 0.35);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/*========================================
    FAQ GROUP
=========================================*/

.mp-services-faq-group {
    margin-bottom: 32px;
    scroll-margin-top: 30px;
}

.mp-services-faq-group-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 18px 21px;
    border: 1px solid var(--mp-line);
    border-radius: 18px;
    background: var(--mp-white);
    box-shadow: 0 15px 35px rgba(30, 58, 95, 0.08);
}

.mp-services-faq-group-title > span {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 6px 16px 6px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    font-size: 1.2rem;
}

.mp-services-faq-group-title small {
    display: block;
    margin-bottom: 4px;
    color: var(--mp-orange-dark);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mp-services-faq-group-title h3 {
    margin: 0;
    color: var(--mp-navy-dark);
    font-size: 1.18rem;
    font-weight: 900;
}

/*========================================
    ACCORDION ITEM
=========================================*/

.mp-services-faq-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--mp-line);
    border-radius: 18px 6px 18px 6px;
    background: var(--mp-white);
    box-shadow: 0 14px 32px rgba(30, 58, 95, 0.07);
}

.mp-services-faq-button {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 86px;
    padding: 18px 20px;
    color: var(--mp-navy-dark);
    background: var(--mp-white);
    box-shadow: none;
    font-weight: 800;
}

.mp-services-faq-button::after {
    display: none;
}

.mp-services-faq-button:focus {
    box-shadow: none;
}

.mp-services-faq-button:not(.collapsed) {
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-navy-dark),
            var(--mp-navy)
        );
}

.mp-services-faq-number {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px 5px 13px 5px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    font-size: 0.72rem;
    font-weight: 900;
}

.mp-services-faq-question {
    flex: 1;
    padding-right: 10px;
    text-align: left;
    font-size: 0.98rem;
    line-height: 1.5;
}

.mp-services-faq-toggle {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mp-line);
    border-radius: 50%;
    color: var(--mp-navy);
    background: var(--mp-bg);
}

.mp-services-faq-toggle i {
    transition: transform 0.35s ease;
}

.mp-services-faq-button:not(.collapsed)
.mp-services-faq-toggle {
    color: var(--mp-white);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

.mp-services-faq-button:not(.collapsed)
.mp-services-faq-toggle i {
    transform: rotate(45deg);
}

/*========================================
    ANSWER
=========================================*/

.mp-services-faq-answer {
    position: relative;
    padding: 24px 25px 26px 48px;
    border-top: 1px solid var(--mp-line);
    background:
        linear-gradient(
            135deg,
            rgba(219, 231, 240, 0.4),
            rgba(255, 255, 255, 0.94)
        );
}

.mp-services-faq-answer::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 26px;
    left: 25px;
    width: 4px;
    border-radius: 20px;
    background: var(--mp-orange);
}

.mp-services-faq-answer p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 0.95rem;
    line-height: 1.85;
}

/*========================================
    RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .mp-services-faq {
        padding: 95px 0;
    }

    .mp-services-faq-layout {
        grid-template-columns: 1fr;
    }

    .mp-services-faq-nav {
        position: relative;
        top: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {

    .mp-services-faq {
        padding: 75px 0;
    }

    .mp-services-faq-head {
        margin-bottom: 40px;
    }

    .mp-services-faq-nav {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .mp-services-faq-group-title {
        align-items: flex-start;
        padding: 16px;
    }

    .mp-services-faq-button {
        align-items: flex-start;
        gap: 11px;
        min-height: auto;
        padding: 17px 14px;
    }

    .mp-services-faq-number {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .mp-services-faq-question {
        font-size: 0.91rem;
    }

    .mp-services-faq-toggle {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .mp-services-faq-answer {
        padding: 22px 17px 24px 37px;
    }

    .mp-services-faq-answer::before {
        top: 22px;
        bottom: 24px;
        left: 18px;
    }
}

/*========================================
    CREATIVE ABOUT STORY
=========================================*/

.mp-about-story {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 7% 15%,
            rgba(74, 119, 161, 0.15),
            transparent 27%
        ),
        radial-gradient(
            circle at 94% 88%,
            rgba(247, 127, 0, 0.11),
            transparent 25%
        ),
        var(--mp-bg);
}

.mp-about-story::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(
            rgba(30, 58, 95, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(30, 58, 95, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.mp-about-story::after {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(247, 127, 0, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 50px rgba(247, 127, 0, 0.025),
        0 0 0 100px rgba(247, 127, 0, 0.018);
}

.mp-about-story .container {
    position: relative;
    z-index: 2;
}

/*========================================
    LAYOUT
=========================================*/

.mp-about-story-shell {
    display: grid;
    grid-template-columns: 90px minmax(0, 1.45fr) minmax(300px, 0.72fr);
    gap: 34px;
    align-items: stretch;
}

/*========================================
    SIDE RAIL
=========================================*/

.mp-about-story-rail {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 28px 0;
}

.mp-about-rail-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    margin-bottom: 23px;
    border-radius: 17px 6px 17px 6px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    box-shadow: 0 14px 30px rgba(247, 127, 0, 0.23);
    font-size: 0.78rem;
    font-weight: 900;
}

.mp-about-rail-text {
    color: var(--mp-steel);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.mp-about-rail-line {
    width: 2px;
    flex: 1;
    min-height: 120px;
    margin-top: 23px;
    background:
        linear-gradient(
            180deg,
            var(--mp-orange),
            rgba(247, 127, 0, 0.04)
        );
}

/*========================================
    MAIN CONTENT
=========================================*/

.mp-about-story-content {
    padding: 50px;
    border: 1px solid var(--mp-line);
    border-radius: 34px 8px 34px 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--mp-shadow);
    backdrop-filter: blur(12px);
}

.mp-about-story-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 21px;
    padding: 9px 16px;
    border: 1px solid rgba(247, 127, 0, 0.22);
    border-radius: 50px;
    color: var(--mp-orange-dark);
    background: rgba(247, 127, 0, 0.08);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mp-about-story-tag i {
    color: var(--mp-orange);
}

.mp-about-story-heading h2 {
    max-width: 780px;
    margin-bottom: 28px;
    color: var(--mp-navy-dark);
    font-size: clamp(2.4rem, 4.5vw, 4.3rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -1.5px;
}

.mp-about-story-heading h2 span {
    display: block;
    margin-top: 10px;
    color: var(--mp-steel);
    font-size: 0.63em;
    line-height: 1.22;
}

.mp-about-story-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.mp-about-story-copy p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 0.98rem;
    line-height: 1.88;
}

.mp-about-story-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 35px 0 28px;
}

.mp-about-story-divider span {
    width: 70px;
    height: 3px;
    border-radius: 20px;
    background: var(--mp-orange);
}

.mp-about-story-divider strong {
    color: var(--mp-navy-dark);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/*========================================
    FEATURES
=========================================*/

.mp-about-story-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.mp-about-story-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--mp-line);
    border-radius: 18px 6px 18px 6px;
    background: rgba(241, 245, 249, 0.78);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.mp-about-story-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 127, 0, 0.32);
    background: var(--mp-white);
}

.mp-about-feature-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px 5px 14px 5px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-navy),
            var(--mp-steel)
        );
    font-size: 1.08rem;
}

.mp-about-story-feature h3 {
    margin-bottom: 7px;
    color: var(--mp-navy-dark);
    font-size: 0.98rem;
    font-weight: 900;
}

.mp-about-story-feature p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 0.83rem;
    line-height: 1.65;
}

/*========================================
    TRUST PANEL
=========================================*/

.mp-about-trust-panel {
    position: relative;
    padding: 40px 31px;
    overflow: hidden;
    border-radius: 8px 32px 8px 32px;
    color: var(--mp-white);
    background:
        radial-gradient(
            circle at top right,
            rgba(74, 119, 161, 0.36),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            var(--mp-navy-dark),
            var(--mp-navy)
        );
    box-shadow: var(--mp-shadow);
}

.mp-about-trust-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 35px;
    width: 110px;
    height: 5px;
    background: var(--mp-orange);
}

.mp-about-trust-panel::after {
    content: "ABOUT";
    position: absolute;
    right: -16px;
    bottom: -8px;
    color: rgba(255, 255, 255, 0.035);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.mp-about-trust-kicker,
.mp-about-trust-panel h3,
.mp-about-trust-panel > p,
.mp-about-trust-list,
.mp-about-trust-stats,
.mp-about-trust-btn {
    position: relative;
    z-index: 2;
}

.mp-about-trust-kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--mp-orange);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.mp-about-trust-panel h3 {
    margin-bottom: 18px;
    color: var(--mp-white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1.12;
}

.mp-about-trust-panel > p {
    margin-bottom: 27px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.75;
}

.mp-about-trust-list {
    display: grid;
    gap: 12px;
}

.mp-about-trust-list > div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mp-about-trust-list > div:last-child {
    border-bottom: 0;
}

.mp-about-trust-list span {
    width: 33px;
    height: 33px;
    flex: 0 0 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--mp-white);
    background: rgba(247, 127, 0, 0.14);
}

.mp-about-trust-list i {
    color: var(--mp-orange);
    font-size: 0.75rem;
}

.mp-about-trust-list strong {
    color: var(--mp-white);
    font-size: 0.82rem;
    line-height: 1.45;
}

.mp-about-trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 27px 0;
}

.mp-about-trust-stats div {
    padding: 16px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.mp-about-trust-stats strong,
.mp-about-trust-stats span {
    display: block;
}

.mp-about-trust-stats strong {
    margin-bottom: 5px;
    color: var(--mp-orange);
    font-size: 1.5rem;
    font-weight: 900;
}

.mp-about-trust-stats span {
    color: var(--mp-steel-soft);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.mp-about-trust-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 18px;
    border-radius: 8px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    box-shadow: 0 15px 31px rgba(247, 127, 0, 0.23);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 800;
    transition: 0.35s ease;
}

.mp-about-trust-btn:hover {
    color: var(--mp-white);
    transform: translateY(-4px);
}

.mp-about-trust-btn i {
    transition: transform 0.35s ease;
}

.mp-about-trust-btn:hover i {
    transform: translateX(5px);
}

/*========================================
    RESPONSIVE
=========================================*/

@media (max-width: 1199px) {

    .mp-about-story-shell {
        grid-template-columns: 70px 1fr;
    }

    .mp-about-trust-panel {
        grid-column: 2;
    }
}

@media (max-width: 991px) {

    .mp-about-story {
        padding: 95px 0;
    }

    .mp-about-story-shell {
        grid-template-columns: 1fr;
    }

    .mp-about-story-rail {
        display: none;
    }

    .mp-about-trust-panel {
        grid-column: auto;
    }
}

@media (max-width: 767px) {

    .mp-about-story-content {
        padding: 36px 27px;
    }

    .mp-about-story-copy,
    .mp-about-story-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {

    .mp-about-story {
        padding: 75px 0;
    }

    .mp-about-story-content {
        padding: 31px 20px;
        border-radius: 25px 7px 25px 7px;
    }

    .mp-about-story-heading h2 {
        letter-spacing: -0.8px;
    }

    .mp-about-story-divider {
        align-items: flex-start;
        flex-direction: column;
    }

    .mp-about-trust-panel {
        padding: 34px 22px;
        border-radius: 7px 25px 7px 25px;
    }
}


/*========================================
    BRAND SHOWCASE WALL
=========================================*/

.mp-brand-wall {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(219, 231, 240, 0.65),
            transparent 45%
        ),
        var(--mp-bg);
}

.mp-brand-wall::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(74, 119, 161, 0.08);
}

.mp-brand-wall::after {
    content: "BRANDS";
    position: absolute;
    left: -20px;
    bottom: -55px;
    color: rgba(30, 58, 95, 0.03);
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.mp-brand-wall .container {
    position: relative;
    z-index: 2;
}

/* HEADER */

.mp-brand-wall-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 48px;
}

.mp-brand-wall-head > div {
    max-width: 760px;
}

.mp-brand-wall-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 15px;
    border: 1px solid rgba(247, 127, 0, 0.22);
    border-radius: 50px;
    color: var(--mp-orange-dark);
    background: rgba(247, 127, 0, 0.08);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mp-brand-wall-head h2 {
    margin: 0;
    color: var(--mp-navy-dark);
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -1.5px;
}

.mp-brand-wall-head h2 span {
    display: block;
    margin-top: 9px;
    color: var(--mp-steel);
    font-size: 0.62em;
}

.mp-brand-wall-head > p {
    max-width: 400px;
    margin: 0;
    padding-left: 22px;
    border-left: 4px solid var(--mp-orange);
    color: var(--mp-muted);
    font-size: 0.94rem;
    line-height: 1.75;
}

/* GRID */

.mp-brand-wall-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.mp-brand-wall-item {
    position: relative;
    min-height: 205px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px 18px;
    overflow: hidden;
    border: 1px solid var(--mp-line);
    border-radius: 22px 6px 22px 6px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 16px 36px rgba(30,58,95,0.08);
    text-align: center;
    transition: 0.4s ease;
}

.mp-brand-wall-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            145deg,
            var(--mp-navy-dark),
            var(--mp-navy)
        );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mp-brand-wall-item::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--mp-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mp-brand-wall-item:hover {
    transform: translateY(-8px);
    border-color: rgba(247,127,0,0.35);
    box-shadow: 0 25px 52px rgba(30,58,95,0.15);
}

.mp-brand-wall-item:hover::before {
    opacity: 1;
}

.mp-brand-wall-item:hover::after {
    transform: scaleX(1);
}

.mp-brand-wall-index {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    color: rgba(30,58,95,0.07);
    font-size: 2.7rem;
    font-weight: 900;
    line-height: 1;
    transition: color 0.4s ease;
}

.mp-brand-wall-item:hover .mp-brand-wall-index {
    color: rgba(255,255,255,0.08);
}

.mp-brand-wall-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 17px 6px 17px 6px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-navy),
            var(--mp-steel)
        );
    font-size: 1.25rem;
    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

.mp-brand-wall-item:hover .mp-brand-wall-icon {
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    transform: translateY(-4px);
}

.mp-brand-wall-item h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 6px;
    color: var(--mp-navy-dark);
    font-size: 1.05rem;
    font-weight: 900;
    transition: color 0.4s ease;
}

.mp-brand-wall-item small {
    position: relative;
    z-index: 2;
    color: var(--mp-muted);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: color 0.4s ease;
}

.mp-brand-wall-item:hover h3 {
    color: var(--mp-white);
}

.mp-brand-wall-item:hover small {
    color: var(--mp-steel-soft);
}

/* LAST BRAND */

.mp-brand-wall-wide {
    grid-column: span 2;
    flex-direction: row;
    gap: 18px;
    text-align: left;
}

.mp-brand-wall-wide .mp-brand-wall-icon {
    flex: 0 0 62px;
    margin-bottom: 0;
}

/* BOTTOM */

.mp-brand-wall-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 35px;
    padding: 20px 23px;
    border: 1px solid var(--mp-line);
    border-radius: 18px;
    background: rgba(255,255,255,0.84);
    box-shadow: 0 15px 35px rgba(30,58,95,0.08);
}

.mp-brand-wall-bottom > div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--mp-navy-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.mp-brand-wall-bottom > div i {
    color: var(--mp-orange);
}

.mp-brand-wall-bottom > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    padding: 14px 21px;
    border-radius: 8px;
    color: var(--mp-white);
    background:
        linear-gradient(
            135deg,
            var(--mp-orange),
            var(--mp-orange-dark)
        );
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 800;
    transition: 0.35s ease;
}

.mp-brand-wall-bottom > a:hover {
    color: var(--mp-white);
    transform: translateY(-3px);
}

.mp-brand-wall-bottom > a i {
    transition: transform 0.35s ease;
}

.mp-brand-wall-bottom > a:hover i {
    transform: translateX(5px);
}

/* RESPONSIVE */

@media (max-width: 1199px) {

    .mp-brand-wall-grid {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }
}

@media (max-width: 991px) {

    .mp-brand-wall {
        padding: 95px 0;
    }

    .mp-brand-wall-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .mp-brand-wall-head > p {
        max-width: 650px;
    }

    .mp-brand-wall-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 767px) {

    .mp-brand-wall-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .mp-brand-wall-wide {
        grid-column: span 2;
    }

    .mp-brand-wall-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .mp-brand-wall-bottom > a {
        width: 100%;
    }
}

@media (max-width: 575px) {

    .mp-brand-wall {
        padding: 75px 0;
    }

    .mp-brand-wall-grid {
        grid-template-columns: 1fr;
    }

    .mp-brand-wall-item,
    .mp-brand-wall-wide {
        grid-column: auto;
        min-height: 170px;
    }

    .mp-brand-wall-wide {
        flex-direction: column;
        text-align: center;
    }

    .mp-brand-wall-wide .mp-brand-wall-icon {
        margin-bottom: 18px;
    }
}