/* Max homepage skin: scoped so the existing homepage styles remain unchanged. */
.mxp-max-hero,
.mxp-max-hero *,
.mxp-max-solutions,
.mxp-max-solutions *,
.mxp-max-trust,
.mxp-max-trust * {
    box-sizing: border-box;
}

.mxp-max-hero button:focus-visible,
.mxp-max-hero a:focus-visible,
.mxp-max-solutions button:focus-visible,
.mxp-max-solutions a:focus-visible,
.mxp-max-trust button:focus-visible,
.mxp-max-trust a:focus-visible {
    outline: 2px solid #165dff;
    outline-offset: -2px;
}

.mxp-max-section-inner {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
}

.mxp-max-section-head {
    margin: 0 0 28px;
    text-align: center;
}

.mxp-max-section-title {
    margin: 0;
    color: #1d2129;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
}

.mxp-max-section-desc {
    max-width: 720px;
    margin: 12px auto 0;
    color: #4e5969;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0;
}

/* Hero */
.mxp-max-hero {
    position: relative;
    width: 100%;
    background: #eef1f5;
    --mxp-max-hero-dock-height: 66px;
    --mxp-max-hero-duration: 5000ms;
}

.mxp-max-hero--with-quick {
    --mxp-max-hero-dock-height: 158px;
}

.mxp-max-hero__viewport {
    position: relative;
    width: 100%;
    height: clamp(500px, 40vw, 620px);
    overflow: hidden;
}

.mxp-max-hero__track {
    position: absolute;
    inset: 0;
}

.mxp-max-hero__slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.mxp-max-hero__slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.mxp-max-hero__media {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 120%;
    height: 100%;
    transform: translateX(-50%);
    border: 0;
    object-fit: cover;
    object-position: 54% 42%;
    pointer-events: none;
}

.mxp-max-hero__media--empty {
    background: #e8edf4;
}

.mxp-max-hero__inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: min(1600px, 100%);
    height: 100%;
    margin: 0 auto;
    padding: calc(var(--mxp-max-hero-dock-height) / 2) 56px;
}

.mxp-max-hero__content {
    max-width: 480px;
    margin-left: 36px;
    color: #1d2129;
    animation: mxp-max-content-in 0.6s ease both;
}

.mxp-max-hero__slide:not(.is-active) .mxp-max-hero__content {
    animation: none;
}

.mxp-max-hero__content.is-light {
    color: #fff;
}

@keyframes mxp-max-content-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mxp-max-hero__label {
    margin: -4px 0 12px;
    color: var(--mxp-max-label-color, #4e5969);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
}

.mxp-max-hero__content.is-light .mxp-max-hero__label {
    color: var(--mxp-max-label-color, rgba(255, 255, 255, 0.9));
}

.mxp-max-hero__title {
    margin: 0 0 10px;
    color: var(--mxp-max-title-color, #1d2129);
    font-size: var(--mxp-max-title-size, 38px);
    font-weight: var(--mxp-max-title-weight, 700);
    line-height: 1.22;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.mxp-max-hero__content .mxp-max-hero__title,
.mxp-max-hero__content .mxp-max-hero__label,
.mxp-max-hero__content .mxp-max-hero__desc {
    text-shadow: none;
}

.mxp-max-hero__content.is-light .mxp-max-hero__title {
    color: var(--mxp-max-title-color, #fff);
}

.mxp-max-hero__desc {
    margin: 0 0 22px;
    color: var(--mxp-max-details-color, #4e5969);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
}

.mxp-max-hero__content.is-light .mxp-max-hero__desc {
    color: var(--mxp-max-details-color, rgba(255, 255, 255, 0.92));
}

.mxp-max-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 40px;
    padding: 0 24px;
    border: 1px solid currentColor;
    border-radius: 4px;
    background: transparent;
    color: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mxp-max-hero__btn:hover {
    border-color: #1d2129;
    background: #1d2129;
    color: #fff;
}

.mxp-max-hero__content.is-light .mxp-max-hero__btn:hover {
    border-color: #fff;
    background: #fff;
    color: #1d2129;
}

.mxp-max-hero__dock {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 12;
    background: rgba(255, 255, 255, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(36px) saturate(1.7);
    -webkit-backdrop-filter: blur(36px) saturate(1.7);
}

.mxp-max-hero__tabs-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.46);
}

.mxp-max-hero__tabs {
    display: flex;
    align-items: stretch;
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.mxp-max-hero__tab {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    padding: 15px 20px 0;
    border: 0;
    background: transparent;
    color: rgba(29, 33, 41, 0.56);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.mxp-max-hero__tab-label {
    display: block;
    max-width: 100%;
    padding-bottom: 13px;
    overflow: hidden;
    color: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mxp-max-hero__tab.is-active {
    color: #1d2129;
}

.mxp-max-hero__tab.is-active .mxp-max-hero__tab-label {
    font-weight: 700;
}

.mxp-max-hero__tab-bar {
    display: block;
    width: 100%;
    height: 3px;
    overflow: hidden;
    background: rgba(29, 33, 41, 0.1);
}

.mxp-max-hero__tab-progress {
    display: block;
    width: 0;
    height: 100%;
    background: #1d2129;
}

.mxp-max-hero__tab.is-active .mxp-max-hero__tab-progress {
    animation: mxp-max-progress var(--mxp-max-hero-duration) linear forwards;
}

.mxp-max-hero.is-paused .mxp-max-hero__tab.is-active .mxp-max-hero__tab-progress {
    animation-play-state: paused;
}

@keyframes mxp-max-progress {
    from { width: 0; }
    to { width: 100%; }
}

/* Quick entries inside the Max glass dock. */
.mxp-max-quick {
    width: 100%;
}

.mxp-max-quick__grid {
    display: flex;
    width: min(1440px, 100%);
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
}

.mxp-max-quick__grid::-webkit-scrollbar {
    display: none;
}

.mxp-max-quick__item {
    display: flex;
    flex: 1 0 220px;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 90px;
    padding: 15px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.38);
    color: #1d2129;
    text-decoration: none;
    transition: background 0.2s ease;
}

.mxp-max-quick__item:last-child {
    border-right: 0;
}

.mxp-max-quick__item:hover {
    background: rgba(255, 255, 255, 0.18);
}

.mxp-max-quick__icon {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 14px;
}

.mxp-max-quick__icon img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.mxp-max-quick__copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mxp-max-quick__title {
    overflow: hidden;
    color: #1d2129;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mxp-max-quick__desc {
    margin-top: 4px;
    overflow: hidden;
    color: rgba(29, 33, 41, 0.64);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Industry solutions */
.mxp-max-solutions {
    padding: 64px 0;
    background: #f2f3f5;
}

.mxp-max-solutions__viewport {
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e8ef;
    border-radius: 8px;
    background: #eef1f5;
}

.mxp-max-solutions__stage {
    position: relative;
    min-height: 440px;
}

.mxp-max-solutions__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mxp-max-solutions__slide::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 24%, rgba(255, 255, 255, 0.66) 40%, rgba(255, 255, 255, 0.18) 60%, transparent 76%);
    content: "";
    pointer-events: none;
}

.mxp-max-solutions__slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.mxp-max-solutions__media,
.mxp-max-solutions__media img,
.mxp-max-solutions__media-empty {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mxp-max-solutions__media {
    z-index: 0;
}

.mxp-max-solutions__media img {
    display: block;
    object-fit: cover;
    object-position: center;
}

.mxp-max-solutions__media-empty {
    background: #e3e8ef;
}

.mxp-max-solutions__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 46%;
    min-width: 320px;
    padding: 48px 44px 82px;
}

.mxp-max-solutions__title {
    margin: 0 0 14px;
    color: #1d2129;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
}

.mxp-max-solutions__desc {
    margin: 0 0 20px;
    color: #4e5969;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0;
}

.mxp-max-solutions__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}

.mxp-max-solutions__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid rgba(29, 33, 41, 0.08);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.82);
    color: #4e5969;
    font-size: 12px;
    line-height: 1.4;
}

.mxp-max-solutions__tag strong {
    color: #1d2129;
}

.mxp-max-solutions__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 112px;
    height: 40px;
    padding: 0 22px;
    border-radius: 4px;
    background: #1d2129;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease;
}

.mxp-max-solutions__btn:hover {
    background: #165dff;
    color: #fff;
}

.mxp-max-solutions__tabs-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    border-top: 1px solid rgba(255, 255, 255, 0.66);
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(56px) saturate(1.65);
    -webkit-backdrop-filter: blur(56px) saturate(1.65);
}

.mxp-max-solutions__tabs {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.mxp-max-solutions__tab {
    flex: 1;
    min-width: 0;
    padding: 15px 12px 0;
    border: 0;
    background: transparent;
    color: rgba(29, 33, 41, 0.56);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.mxp-max-solutions__tab-label {
    display: block;
    padding-bottom: 12px;
    overflow: hidden;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mxp-max-solutions__tab.is-active {
    color: #1d2129;
}

.mxp-max-solutions__tab.is-active .mxp-max-solutions__tab-label {
    font-weight: 700;
}

.mxp-max-solutions__tab-bar {
    display: block;
    width: 100%;
    height: 3px;
    overflow: hidden;
    background: rgba(29, 33, 41, 0.1);
}

.mxp-max-solutions__tab-progress {
    display: block;
    width: 0;
    height: 100%;
    background: #1d2129;
}

.mxp-max-solutions__tab.is-active .mxp-max-solutions__tab-progress {
    animation: mxp-max-progress var(--mxp-max-carousel-duration, 7000ms) linear forwards;
}

.mxp-max-solutions.is-paused .mxp-max-solutions__tab.is-active .mxp-max-solutions__tab-progress {
    animation-play-state: paused;
}

/* Trust cases and partner marquee */
.mxp-max-trust {
    padding: 64px 0;
    overflow: hidden;
    background: #fff;
}

.mxp-max-trust__layout {
    display: grid;
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    gap: 24px;
    min-height: 420px;
}

.mxp-max-trust__list {
    overflow: hidden;
    border: 1px solid #e5e8ef;
    border-radius: 8px;
    background: #fff;
}

.mxp-max-trust__item {
    border-bottom: 1px solid #eef0f4;
}

.mxp-max-trust__item:last-child {
    border-bottom: 0;
}

.mxp-max-trust__item-head {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 64px;
    padding: 14px 18px;
    border: 0;
    background: #fff;
    color: #1d2129;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mxp-max-trust__item-head:hover,
.mxp-max-trust__item.is-active .mxp-max-trust__item-head {
    background: #f7f8fa;
}

.mxp-max-trust__item-logo {
    display: block;
    width: 34px;
    height: 34px;
    margin-right: 12px;
    object-fit: contain;
}

.mxp-max-trust__item-title {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mxp-max-trust__item-icon {
    display: flex;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    color: #86909c;
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.mxp-max-trust__item.is-active .mxp-max-trust__item-icon {
    transform: rotate(45deg);
}

.mxp-max-trust__item-body {
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    background: #f7f8fa;
    transition: max-height 0.25s ease, padding 0.25s ease;
}

.mxp-max-trust__item.is-active .mxp-max-trust__item-body {
    max-height: 190px;
    padding: 0 18px 16px;
}

.mxp-max-trust__item-body p {
    margin: 0;
    color: #4e5969;
    font-size: 13px;
    line-height: 1.65;
    letter-spacing: 0;
}

.mxp-max-trust__item-body a {
    display: inline-flex;
    margin-top: 10px;
    color: #165dff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.mxp-max-trust__source {
    display: none;
}

.mxp-max-trust__visual {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 8px;
    background: #dfe4eb;
}

.mxp-max-trust__visual-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mxp-max-trust__visual-img.has-image {
    display: block;
}

.mxp-max-trust__visual-empty {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86909c;
    font-size: 22px;
    font-weight: 600;
}

.mxp-max-trust__visual-empty.is-hidden {
    display: none;
}

.mxp-max-trust__visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.22) 48%, transparent 100%);
    pointer-events: none;
}

.mxp-max-trust__visual-text {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 32px;
}

.mxp-max-trust__visual-title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.mxp-max-trust__visual-desc {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.46);
}

.mxp-max-partners {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.mxp-max-partners__viewport {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mxp-max-partners__track {
    display: flex;
    width: max-content;
    animation: mxp-max-partners-left 48s linear infinite;
    will-change: transform;
}

.mxp-max-partners__track--two {
    animation-duration: 54s;
}

.mxp-max-partners__track--three {
    animation-duration: 50s;
}

.mxp-max-partners:hover .mxp-max-partners__track {
    animation-play-state: paused;
}

.mxp-max-partners__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 56px;
    padding-right: 56px;
}

.mxp-max-partners__item {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    color: #4e5969;
    text-decoration: none;
}

.mxp-max-partners__logo {
    display: block;
    width: auto;
    max-width: 130px;
    height: 36px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.58;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.mxp-max-partners__item:hover .mxp-max-partners__logo {
    filter: grayscale(0);
    opacity: 1;
}

.mxp-max-partners__name {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes mxp-max-partners-left {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@media (min-width: 1600px) {
    .mxp-max-hero__viewport {
        height: 640px;
    }

    .mxp-max-hero__inner {
        width: min(1680px, 100%);
        padding-right: 64px;
        padding-left: 64px;
    }

    .mxp-max-hero__content {
        max-width: 520px;
    }
}

@media (max-width: 1024px) {
    .mxp-max-hero__viewport {
        height: 500px;
    }

    .mxp-max-hero__media {
        width: 112%;
        object-position: 56% 44%;
    }

    .mxp-max-hero__inner {
        padding-right: 32px;
        padding-left: 32px;
    }

    .mxp-max-hero__content {
        max-width: 390px;
        margin-left: 0;
    }

    .mxp-max-hero__title {
        font-size: min(var(--mxp-max-title-size, 32px), 36px);
    }

    .mxp-max-hero__tabs {
        padding: 0 12px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .mxp-max-hero__tabs::-webkit-scrollbar {
        display: none;
    }

    .mxp-max-hero__tab {
        flex: 0 0 150px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .mxp-max-solutions__content {
        width: 58%;
        min-width: 0;
    }

    .mxp-max-trust__layout {
        grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    }
}

@media (max-width: 991px) {
    .mxp-max-section-inner {
        width: min(100% - 32px, 720px);
    }

    .mxp-max-section-head {
        margin-bottom: 20px;
    }

    .mxp-max-section-title {
        font-size: 24px;
    }

    .mxp-max-section-desc {
        margin-top: 8px;
        font-size: 14px;
    }

    .mxp-max-hero {
        background: #f2f3f5;
    }

    .mxp-max-hero__viewport {
        display: flex;
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    .mxp-max-hero__track {
        position: relative;
        flex-shrink: 0;
        height: clamp(220px, 50vw, 360px);
    }

    .mxp-max-hero__media {
        left: 0;
        width: 100%;
        transform: none;
        object-position: 58% center;
    }

    .mxp-max-hero__inner {
        align-items: flex-end;
        padding: 24px 18px;
    }

    .mxp-max-hero__content {
        width: min(100%, 520px);
        max-width: 100%;
        margin: 0;
    }

    .mxp-max-hero__label {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .mxp-max-hero__title {
        margin-bottom: 6px;
        font-size: min(var(--mxp-max-title-size, 24px), 30px);
        text-shadow: 0 1px 6px rgba(255, 255, 255, 0.55);
    }

    .mxp-max-hero__content.is-light .mxp-max-hero__title {
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    }

    .mxp-max-hero__desc {
        display: -webkit-box;
        margin-bottom: 12px;
        overflow: hidden;
        font-size: 13px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .mxp-max-hero__btn {
        min-width: 96px;
        height: 34px;
        padding: 0 16px;
        font-size: 13px;
    }

    .mxp-max-hero__dock {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        flex-shrink: 0;
        border-top-color: rgba(255, 255, 255, 0.8);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.04);
        backdrop-filter: blur(20px) saturate(1.4);
        -webkit-backdrop-filter: blur(20px) saturate(1.4);
    }

    .mxp-max-hero__tabs-wrap {
        border-bottom-color: rgba(29, 33, 41, 0.08);
    }

    .mxp-max-hero__tabs {
        padding: 0 4px;
        overflow-x: auto;
    }

    .mxp-max-hero__tab {
        flex-basis: 96px;
        padding: 10px 12px 0;
    }

    .mxp-max-hero__tab-label {
        padding-bottom: 8px;
        font-size: 12px;
    }

    .mxp-max-quick__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }

    .mxp-max-quick__item {
        min-height: 70px;
        padding: 10px 14px;
        border-right: 1px solid rgba(29, 33, 41, 0.08);
        border-bottom: 1px solid rgba(29, 33, 41, 0.08);
    }

    .mxp-max-quick__item:nth-child(2n) {
        border-right: 0;
    }

    .mxp-max-quick__item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .mxp-max-quick__icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        margin-right: 10px;
    }

    .mxp-max-quick__icon img {
        width: 30px;
        height: 30px;
    }

    .mxp-max-quick__title {
        font-size: 13px;
    }

    .mxp-max-quick__desc {
        font-size: 11px;
    }

    .mxp-max-solutions,
    .mxp-max-trust {
        padding: 40px 0;
    }

    .mxp-max-solutions__stage {
        min-height: 360px;
    }

    .mxp-max-solutions__slide {
        align-items: flex-end;
    }

    .mxp-max-solutions__slide::before {
        background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.84) 58%, rgba(255, 255, 255, 0.98) 100%);
    }

    .mxp-max-solutions__content {
        width: 100%;
        padding: 24px 20px 74px;
    }

    .mxp-max-solutions__title {
        margin-bottom: 8px;
        font-size: 20px;
    }

    .mxp-max-solutions__desc {
        display: -webkit-box;
        margin-bottom: 12px;
        overflow: hidden;
        font-size: 13px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .mxp-max-solutions__tags {
        margin-bottom: 12px;
    }

    .mxp-max-solutions__btn {
        height: 36px;
        padding: 0 16px;
        font-size: 13px;
    }

    .mxp-max-solutions__tabs {
        padding: 0 8px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .mxp-max-solutions__tabs::-webkit-scrollbar {
        display: none;
    }

    .mxp-max-solutions__tab {
        flex: 0 0 88px;
        padding: 10px 8px 0;
    }

    .mxp-max-solutions__tab-label {
        padding-bottom: 8px;
        font-size: 12px;
    }

    .mxp-max-trust__layout {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .mxp-max-trust__visual {
        order: -1;
        min-height: 300px;
    }

    .mxp-max-partners {
        gap: 18px;
        margin-top: 34px;
    }

    .mxp-max-partners__group {
        gap: 36px;
        padding-right: 36px;
    }

    .mxp-max-partners__logo {
        max-width: 110px;
        height: 30px;
    }
}

.mxp-max-hero .mxp-max-hero__content .mxp-max-hero__title,
.mxp-max-hero .mxp-max-hero__content .mxp-max-hero__label,
.mxp-max-hero .mxp-max-hero__content .mxp-max-hero__desc {
    text-shadow: none !important;
}

@media (max-width: 560px) {
    .mxp-max-section-inner {
        width: calc(100% - 24px);
    }

    .mxp-max-section-title {
        font-size: 22px;
    }

    .mxp-max-hero__track {
        height: 250px;
    }

    .mxp-max-hero__desc,
    .mxp-max-hero__btn {
        display: none;
    }

    .mxp-max-hero__title {
        margin-bottom: 0;
        font-size: min(var(--mxp-max-title-size, 21px), 24px);
    }

    .mxp-max-quick__item {
        justify-content: flex-start;
        padding-right: 10px;
        padding-left: 10px;
    }

    .mxp-max-solutions__stage {
        min-height: 320px;
    }

    .mxp-max-solutions__content {
        padding: 18px 16px 62px;
    }

    .mxp-max-solutions__tags {
        display: none;
    }

    .mxp-max-trust__visual {
        min-height: 220px;
    }

    .mxp-max-trust__visual-text {
        padding: 20px;
    }

    .mxp-max-trust__visual-title {
        margin-bottom: 6px;
        font-size: 17px;
    }

    .mxp-max-trust__visual-desc {
        display: -webkit-box;
        overflow: hidden;
        font-size: 12px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .mxp-max-trust__item-head {
        min-height: 58px;
        padding: 12px 14px;
    }

    .mxp-max-trust__item-title {
        font-size: 14px;
    }

    .mxp-max-partners {
        gap: 14px;
        margin-top: 28px;
    }

    .mxp-max-partners__group {
        gap: 30px;
        padding-right: 30px;
    }

    .mxp-max-partners__logo {
        max-width: 96px;
        height: 27px;
    }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .mxp-max-hero__dock,
    .mxp-max-solutions__tabs-wrap {
        background: rgba(255, 255, 255, 0.9);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mxp-max-hero__slide,
    .mxp-max-hero__content,
    .mxp-max-hero__tab-progress,
    .mxp-max-solutions__slide,
    .mxp-max-solutions__tab-progress,
    .mxp-max-partners__track {
        animation: none !important;
        transition: none !important;
    }

    .mxp-max-hero__tab.is-active .mxp-max-hero__tab-progress,
    .mxp-max-solutions__tab.is-active .mxp-max-solutions__tab-progress {
        width: 100%;
    }
}

/* Original elements: stretch Max shortcuts through the complete dock row. */
body.mxp-home-page.mxp-elements-original .mxp-max-quick,
body.mxp-home-page.mxp-elements-original .mxp-max-quick__grid {
    align-self: stretch;
}

body.mxp-home-page.mxp-elements-original .mxp-max-quick__grid {
    align-items: stretch;
}

body.mxp-home-page.mxp-elements-original .mxp-max-quick__item {
    align-self: stretch;
}

@media (min-width: 992px) {
    body.mxp-home-page.mxp-elements-original .mxp-max-hero--with-quick .mxp-max-hero__dock {
        display: flex;
        min-height: var(--mxp-max-hero-dock-height);
        flex-direction: column;
    }

    body.mxp-home-page.mxp-elements-original .mxp-max-quick {
        display: flex;
        flex: 1 1 auto;
        min-height: 0;
    }

    body.mxp-home-page.mxp-elements-original .mxp-max-quick__grid {
        height: auto;
    }

    body.mxp-home-page.mxp-elements-original .mxp-max-quick__item {
        height: auto;
    }
}
