:root {
    --mp-blue: #1677ff;
    --mp-blue-strong: #075fd8;
    --mp-blue-deep: #075fd8;
    --mp-accent: #35b8ff;
    --mp-gradient: linear-gradient(135deg, #35b8ff 0%, #1677ff 54%, #075fd8 100%);
    --mp-soft: #eaf5ff;
    --mp-sky: #eef7ff;
    --mp-sky-strong: #d8ecff;
    --mp-ice: #f7fbff;
    --mp-white: #ffffff;
    --mp-ink: #17233d;
    --mp-muted: #5f6f86;
    --mp-line: #dbeafe;
    --mp-card-border: rgba(188, 220, 250, 0.58);
    --mp-focus: #1677ff;
    --mp-shadow: 0 8px 28px rgba(36, 104, 174, 0.08);
    --mp-card-shadow: 0 8px 24px rgba(22, 119, 255, 0.07);
    --mp-radius-xl: 18px;
    --mp-radius-lg: 16px;
    --mp-radius-md: 12px;
    --mp-container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--mp-sky);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--mp-ink);
    background: var(--mp-sky);
    font-family: "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
select,
input {
    color: inherit;
}

button,
select {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(22, 119, 255, 0.28);
    outline-offset: 2px;
}

.mp-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.mp-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--mp-white);
    background: var(--mp-blue-deep);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.mp-skip-link:focus {
    transform: translateY(0);
}

.mp-site-shell {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--mp-sky);
    background-image: url("/home_new_images/topBG.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}

.mp-site-shell::before,
.mp-site-shell::after {
    display: none;
    content: none;
}

.mp-container {
    width: min(calc(100% - 40px), var(--mp-container));
    margin-right: auto;
    margin-left: auto;
}

.mp-header {
    position: relative;
    z-index: 100;
    padding-top: 14px;
}

.mp-header__main {
    display: grid;
    grid-template-columns: 210px minmax(320px, 1fr) auto;
    gap: 22px;
    align-items: center;
    min-height: 66px;
}

.mp-brand {
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 210px;
}

.mp-brand__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
}

.mp-search {
    display: grid;
    grid-template-columns: 124px 1fr auto;
    align-items: stretch;
    height: 50px;
    overflow: hidden;
    border: 2px solid var(--mp-blue);
    border-radius: 999px;
    background: var(--mp-white);
    box-shadow: 0 6px 20px rgba(22, 119, 255, 0.12);
}

.mp-search:focus-within {
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.18), 0 6px 20px rgba(22, 119, 255, 0.12);
}

.mp-search select,
.mp-search input,
.mp-search button {
    min-width: 0;
    border: 0;
    background: transparent;
}

.mp-search select {
    box-sizing: border-box;
    padding: 0 16px;
    color: var(--mp-blue-deep);
    border-right: 1px solid var(--mp-line);
    font-size: 13px;
    font-weight: 700;
}

.mp-search select:focus,
.mp-search select:focus-visible {
    outline: 0;
}

.mp-search input {
    width: 100%;
    padding: 0 16px;
    outline: 0;
}

.mp-search input::placeholder {
    color: #90a4b7;
}

.mp-search button {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    margin: 4px;
    padding: 0 18px;
    color: var(--mp-white);
    border-radius: 999px;
    background: var(--mp-gradient);
    box-shadow: 0 5px 16px rgba(22, 119, 255, 0.22);
    font-size: 13px;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mp-search button:hover {
    background: linear-gradient(135deg, #249eef 0%, #075fd8 100%);
    transform: translateY(-1px);
}

.mp-search button svg,
.mp-text-action svg,
.mp-menu-toggle svg,
.mp-nav svg,
.mp-section-heading svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-header__actions {
    display: flex;
    gap: 14px;
    align-items: center;
    white-space: nowrap;
}

.mp-text-action {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: var(--mp-blue-deep);
    font-size: 13px;
    font-weight: 800;
}

.mp-text-action:hover {
    color: var(--mp-blue);
}

.mp-language-link {
    display: inline-flex;
    flex-shrink: 0;
    gap: 6px;
    align-items: center;
    min-height: 40px;
    color: var(--mp-ink);
    font-size: 14px;
    white-space: nowrap;
}

.mp-language-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.mp-language-link:hover,
.mp-language-link:focus-visible {
    color: var(--mp-blue);
}

.mp-account-button {
    padding: 10px 15px;
    color: var(--mp-white);
    border-radius: 999px;
    background: var(--mp-gradient);
    box-shadow: 0 5px 16px rgba(22, 119, 255, 0.2);
    font-size: 12px;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mp-login-link {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    padding: 5px 0;
    color: var(--mp-ink);
    border: 0;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.mp-login-link:hover,
.mp-login-link:focus-visible {
    color: var(--mp-blue);
}

.mp-login-menu {
    position: relative;
}

.mp-login-menu__trigger > i {
    color: #7890aa;
    font-size: 11px;
    transition: transform 0.2s ease;
}

.mp-login-menu.is-open .mp-login-menu__trigger > i {
    transform: rotate(180deg);
}

.mp-login-popover {
    position: absolute;
    top: calc(100% + 12px);
    right: -16px;
    z-index: 180;
    width: min(300px, calc(100vw - 28px));
    padding: 8px;
    color: var(--mp-ink);
    border: 1px solid #cfe5fa;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 20px 44px rgba(15, 72, 139, 0.22);
    text-align: left;
}

.mp-login-popover[hidden] {
    display: none;
}

.mp-login-popover::before {
    position: absolute;
    top: -7px;
    right: 26px;
    width: 13px;
    height: 13px;
    border-top: 1px solid #cfe5fa;
    border-left: 1px solid #cfe5fa;
    background: #fff;
    content: "";
    transform: rotate(45deg);
}

.mp-login-popover > a {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 10px;
    gap: 10px;
    align-items: center;
    min-height: 62px;
    padding: 9px 10px;
    color: var(--mp-ink);
    border-radius: 11px;
    transition: color 0.18s ease, background-color 0.18s ease;
}

.mp-login-popover > a + a {
    border-top: 1px solid #edf4fb;
}

.mp-login-popover > a:hover,
.mp-login-popover > a:focus-visible {
    color: var(--mp-blue-deep);
    background: #edf7ff;
    outline: none;
}

.mp-login-popover__icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
    border-radius: 10px;
    background: var(--mp-gradient);
    box-shadow: 0 7px 16px rgba(22, 119, 255, 0.2);
    font-size: 16px;
}

.mp-login-popover strong,
.mp-login-popover small {
    display: block;
}

.mp-login-popover strong {
    font-size: 13px;
}

.mp-login-popover small {
    margin-top: 3px;
    color: var(--mp-muted);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.35;
}

.mp-login-popover > a > i {
    color: #9aafc4;
    font-size: 11px;
    text-align: right;
}

.mp-account-button:hover {
    background: linear-gradient(135deg, #249eef 0%, #075fd8 100%);
    transform: translateY(-1px);
}

.mp-menu-toggle {
    display: none;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--mp-blue-deep);
    border: 1px solid var(--mp-line);
    border-radius: 50%;
    background: var(--mp-white);
}

.mp-nav-wrap {
    margin-top: 8px;
    border-top: 1px solid rgba(112, 149, 185, 0.25);
}

.mp-nav {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.85fr 0.9fr 1.05fr 0.95fr 1.05fr;
    align-items: center;
    min-height: 54px;
    padding: 0 10px;
}

.mp-nav__mobile-auth {
    display: none !important;
}

.mp-nav > a,
.mp-categories-menu > a,
.mp-app-menu__trigger {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 12px;
    color: var(--mp-ink);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1.15;
    transition: color 0.2s ease;
}

.mp-app-menu__trigger {
    width: 100%;
    border: 0;
    background: transparent;
}

.mp-categories-menu > a > i,
.mp-app-menu__trigger > i {
    color: #7890aa;
    font-size: 11px;
    transition: transform 0.2s ease;
}

.mp-categories-menu.is-open > a > i,
.mp-app-menu.is-open .mp-app-menu__trigger > i {
    transform: rotate(180deg);
}

.mp-nav > a > span,
.mp-categories-menu > a > span,
.mp-app-menu__trigger > span {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.mp-nav > a > span::after,
.mp-categories-menu > a > span::after,
.mp-app-menu__trigger > span::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 4px;
    border-radius: 999px;
    background: var(--mp-blue-deep);
    content: "";
    opacity: 0;
    transform: scaleX(0.7);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mp-nav > a.is-active,
.mp-categories-menu > a.is-active {
    color: var(--mp-blue-deep);
}

.mp-nav > a.is-active > span::after,
.mp-categories-menu > a.is-active > span::after,
.mp-app-menu.is-open .mp-app-menu__trigger > span::after {
    opacity: 1;
    transform: scaleX(1);
}

.mp-nav > a:hover:not(.is-active),
.mp-nav > a:focus-visible:not(.is-active),
.mp-categories-menu > a:hover:not(.is-active),
.mp-categories-menu > a:focus-visible:not(.is-active),
.mp-categories-menu.is-open > a:not(.is-active),
.mp-app-menu__trigger:hover,
.mp-app-menu__trigger:focus-visible,
.mp-app-menu.is-open .mp-app-menu__trigger {
    color: var(--mp-blue);
}

.mp-nav > a.is-active:hover,
.mp-nav > a.is-active:focus-visible,
.mp-categories-menu > a.is-active:hover,
.mp-categories-menu > a.is-active:focus-visible {
    color: var(--mp-blue-deep);
}

.mp-categories-menu,
.mp-app-menu {
    position: relative;
    min-width: 0;
}

.mp-app-menu {
    position: static;
}

.mp-categories-popover {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    z-index: 140;
    width: min(330px, calc(100vw - 40px));
    max-height: min(590px, calc(100vh - 190px));
    padding: 8px 0;
    overflow-y: auto;
    color: var(--mp-ink);
    border: 1px solid #cfe5fa;
    border-radius: 0 0 14px 14px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(15, 72, 139, 0.22);
    font-family: "Microsoft YaHei", Arial, sans-serif;
    text-align: left;
}

.mp-categories-popover[hidden] {
    display: none;
}

.mp-categories-popover__list {
    display: flex;
    flex-direction: column;
}

.mp-categories-popover__list > a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 12px;
    gap: 12px;
    align-items: center;
    min-height: 32px;
    padding: 6px 16px;
    color: #24364f;
    border-radius: 8px;
    transition: color 0.18s ease, background-color 0.18s ease;
}

.mp-categories-popover__list > a:hover,
.mp-categories-popover__list > a:focus-visible {
    color: var(--mp-blue-deep);
    background: #edf7ff;
}

.mp-categories-popover__list strong {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.mp-categories-popover__list i {
    color: #b7c4d4;
    font-size: 11px;
    text-align: right;
}

.mp-app-popover {
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    left: 0;
    z-index: 130;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(310px, 1fr);
    gap: 32px;
    align-items: center;
    padding: 32px;
    color: var(--mp-ink);
    border: 1px solid #cfe5fa;
    border-top: 3px solid var(--mp-blue);
    border-radius: 0 0 16px 16px;
    background: #fff;
    box-shadow: 0 22px 48px rgba(15, 72, 139, 0.22);
    text-align: left;
}

.mp-app-popover[hidden] {
    display: none;
}

.mp-app-popover__overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(76px, 8vw, 112px);
    gap: 24px;
    align-items: center;
}

.mp-app-popover__copy h2 {
    margin: 0 0 12px;
    color: var(--mp-ink);
    font-size: 24px;
    line-height: 1.3;
}

.mp-app-popover .mp-app-popover__copy p {
    color: var(--mp-muted);
    font-size: 16px;
    line-height: 1.65;
}

.mp-app-popover__brand {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 24%;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.16);
}

.mp-app-popover__detail {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 22px;
    color: var(--mp-blue-deep);
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.mp-app-popover__detail:hover {
    color: var(--mp-blue);
}

.mp-app-popover__detail--unavailable {
    color: var(--mp-muted);
    text-decoration: none;
}

.mp-app-popover__download-area {
    min-width: 0;
    padding-left: 32px;
    border-left: 1px solid var(--mp-line);
}

.mp-app-popover__coming-soon {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.mp-app-popover__coming-soon > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #fff;
    border-radius: 13px;
    background: var(--mp-gradient);
    box-shadow: 0 8px 18px rgba(22, 119, 255, 0.22);
    font-size: 24px;
}

.mp-app-popover small,
.mp-app-popover strong,
.mp-app-popover p {
    display: block;
    margin: 0;
}

.mp-app-popover small {
    color: var(--mp-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mp-app-popover strong {
    margin-top: 3px;
    font-size: 14px;
}

.mp-app-popover p {
    margin-top: 4px;
    color: var(--mp-muted);
    font-size: 10px;
    line-height: 1.45;
}

.mp-app-popover__downloads {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 144px;
    gap: 16px;
    align-items: center;
}

.mp-app-popover__downloads--links-only {
    grid-template-columns: 1fr;
}

.mp-app-popover__downloads--qr-only {
    grid-template-columns: 144px;
    justify-content: center;
}

.mp-app-popover__links {
    display: grid;
    gap: 8px;
}

.mp-app-popover__links a {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    min-height: 54px;
    padding: 10px 12px;
    color: #fff;
    border-radius: 10px;
    background: #111827;
    font-size: 11px;
    font-weight: 800;
}

.mp-app-popover__links a:hover,
.mp-app-popover__links a:focus-visible {
    background: var(--mp-blue-deep);
}

.mp-app-popover__links i {
    font-size: 18px;
    text-align: center;
}

.mp-app-popover figure {
    margin: 0;
    padding: 7px;
    border: 1px solid #dce9f6;
    border-radius: 12px;
    background: #fff;
}

.mp-app-popover figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}

.mp-app-popover figcaption {
    margin-top: 5px;
    color: var(--mp-muted);
    font-size: 8px;
    text-align: center;
}

@media (max-width: 480px) {
    .mp-app-popover .mp-app-popover__overview {
        grid-template-columns: minmax(0, 1fr);
    }

    .mp-app-popover__brand {
        grid-row: 1;
        width: 76px;
    }

    .mp-app-popover .mp-app-popover__downloads {
        grid-template-columns: minmax(0, 1fr);
    }

    .mp-app-popover figure {
        width: 144px;
        justify-self: center;
    }
}

.mp-home {
    position: relative;
    padding-bottom: 66px;
}

.mp-portal-card {
    overflow: hidden;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid var(--mp-card-border);
    border-radius: var(--mp-radius-xl);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--mp-shadow);
}

.mp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(360px, 1fr);
    gap: 10px;
}

.mp-hero {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border-radius: var(--mp-radius-lg);
    background: var(--mp-blue-deep);
}

.mp-hero__slides,
.mp-hero__slide,
.mp-hero__slide > a {
    width: 100%;
    height: 100%;
}

.mp-hero__slides {
    position: absolute;
    inset: 0;
}

.mp-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.mp-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.mp-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-hero__fallback {
    display: flex;
    align-items: center;
    color: var(--mp-white);
    background: var(--mp-gradient);
}

.mp-hero__fallback::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, transparent 0 62%, rgba(255, 255, 255, 0.12) 62.2% 63%, transparent 63.2%),
        linear-gradient(145deg, transparent 0 74%, rgba(255, 255, 255, 0.09) 74.2% 75%, transparent 75.2%);
    content: "";
}

.mp-hero__fallback-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 46px 48px;
}

.mp-kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--mp-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mp-hero .mp-kicker,
.mp-rfq .mp-kicker {
    color: #8bcaff;
}

.mp-hero h1 {
    max-width: 520px;
    margin: 0;
    font-family: "Aptos Display", "Segoe UI", sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.mp-hero p {
    max-width: 520px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
}

.mp-hero__actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.mp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.mp-button--light {
    color: var(--mp-blue-deep);
    background: var(--mp-white);
}

.mp-button--ghost {
    color: var(--mp-white);
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.mp-hero__mechanical {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 350px;
    height: 350px;
    border: 48px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.mp-hero__mechanical::before,
.mp-hero__mechanical::after,
.mp-hero__mechanical span {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    content: "";
}

.mp-hero__mechanical::before {
    inset: 40px;
}

.mp-hero__mechanical::after {
    inset: 94px;
    background: rgba(255, 255, 255, 0.08);
}

.mp-hero__mechanical span:nth-child(1) { inset: -22px; }
.mp-hero__mechanical span:nth-child(2) { inset: 64px; }
.mp-hero__mechanical span:nth-child(3) { inset: 125px; }

.mp-hero__controls {
    position: absolute;
    z-index: 5;
    bottom: 16px;
    left: 50%;
    display: flex;
    gap: 6px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(4, 39, 78, 0.34);
    transform: translateX(-50%);
    backdrop-filter: blur(7px);
}

.mp-hero__controls button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    transition: width 0.2s ease, background 0.2s ease;
}

.mp-hero__controls button.is-active {
    width: 24px;
    background: var(--mp-white);
}

.mp-most-popular {
    display: flex;
    min-width: 0;
    min-height: 380px;
    flex-direction: column;
    overflow: hidden;
    padding: 13px 10px 9px;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius-lg);
    background: var(--mp-ice);
}

.mp-most-popular__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 20px;
    margin-bottom: 8px;
    padding: 0 2px;
}

.mp-most-popular__header h2 {
    margin: 0;
    color: var(--mp-ink);
    font-size: 14px;
    letter-spacing: -0.02em;
}

.mp-most-popular__header a,
.mp-section-heading > a {
    color: var(--mp-muted);
    font-size: 11px;
    font-weight: 700;
}

.mp-most-popular__header a:hover,
.mp-section-heading > a:hover {
    color: var(--mp-blue);
}

.mp-most-popular__list {
    display: grid;
    min-height: 0;
    flex: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 7px 10px;
}

.mp-mini-product {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 9px;
    background: transparent;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mp-mini-product:hover {
    border-color: #a9d1f8;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 7px 18px rgba(23, 94, 164, 0.1);
    transform: translateY(-1px);
}

.mp-mini-product__image {
    display: grid;
    place-items: center;
    width: 100px;
    height: 74px;
    overflow: hidden;
    color: rgba(8, 104, 216, 0.55);
    border-radius: 8px;
    background: linear-gradient(145deg, #e8f4ff, #cfe8ff);
    font-size: 11px;
    font-weight: 900;
}

.mp-mini-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-mini-product__copy {
    display: flex;
    min-width: 0;
    height: 74px;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    padding: 3px 0 2px;
}

.mp-mini-product__copy .mp-mini-product__title {
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    color: #29445f;
    font-size: var(--mp-type-small, 14px);
    line-height: 1.25;
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
}

.mp-mini-product__copy strong,
.mp-mini-product__copy small,
.mp-mini-product__meta {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mp-mini-product__copy strong {
    color: #29445f;
    font-size: 11px;
    line-height: 1.25;
    white-space: nowrap;
}

.mp-mini-product__meta {
    margin-top: auto;
    color: #72879b;
    font-size: 9px;
    line-height: 1.2;
    white-space: nowrap;
}

.mp-mini-product__copy small {
    display: -webkit-box;
    margin-top: 2px;
    color: #657b90;
    font-size: 10px;
    line-height: 1.2;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mp-mini-product--placeholder {
    opacity: 0.72;
}

.mp-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.mp-service-card {
    position: relative;
    display: flex;
    min-height: 150px;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    padding: 18px;
    border: 1px dashed #cfe6fb;
    border-radius: 14px;
    background: linear-gradient(135deg, #f7fbff 0%, #edf7ff 100%);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mp-service-card::after {
    position: absolute;
    right: -24px;
    bottom: -34px;
    width: 100px;
    height: 100px;
    border: 18px solid rgba(8, 104, 216, 0.06);
    border-radius: 50%;
    content: "";
}

.mp-service-card--image {
    color: var(--mp-white);
    border-color: transparent;
    background-image: linear-gradient(120deg, rgba(4, 42, 82, 0.8), rgba(4, 84, 164, 0.38)), var(--service-image);
    background-position: center;
    background-size: cover;
}

.mp-service-card:hover {
    z-index: 2;
    border-color: #96c7f6;
    box-shadow: var(--mp-card-shadow);
    transform: translateY(-3px);
}

.mp-service-card__icon {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    margin-bottom: 8px;
    color: var(--mp-blue);
    border-radius: 8px;
    background: var(--mp-sky);
}

.mp-service-card--image .mp-service-card__icon {
    color: var(--mp-white);
    background: rgba(255, 255, 255, 0.18);
}

.mp-service-card__icon svg,
.mp-service-card__icon i {
    width: 16px;
    height: 16px;
}

.mp-service-card__icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-service-card__icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 16px;
}

.mp-service-card strong {
    margin-top: 0;
    font-family: "Aptos Display", "Segoe UI", sans-serif;
    font-size: 15px;
    letter-spacing: -0.025em;
}

.mp-service-card__copy {
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    color: var(--mp-muted);
    font-size: 10px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mp-service-card--image .mp-service-card__copy {
    color: rgba(255, 255, 255, 0.78);
}

.mp-service-card__more {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 10px;
    color: var(--mp-blue-deep);
    font-size: 9px;
    font-weight: 800;
}

.mp-service-card--image .mp-service-card__more {
    color: var(--mp-white);
}

.mp-event-banner {
    position: relative;
    display: flex;
    gap: 22px;
    align-items: center;
    min-height: 112px;
    margin-top: 20px;
    overflow: hidden;
    padding: 24px 34px;
    color: var(--mp-white);
    border-radius: var(--mp-radius-lg);
    background: var(--mp-gradient);
    box-shadow: var(--mp-card-shadow);
}

.mp-event-banner--image {
    background-image: linear-gradient(100deg, rgba(3, 39, 81, 0.92), rgba(0, 83, 172, 0.4)), var(--event-image);
    background-position: center;
    background-size: cover;
}

.mp-event-banner::before,
.mp-event-banner::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    content: "";
}

.mp-event-banner::before {
    top: -210px;
    right: 40px;
    width: 470px;
    height: 470px;
}

.mp-event-banner::after {
    top: -140px;
    right: 110px;
    width: 330px;
    height: 330px;
}

.mp-event-banner__eyebrow {
    position: relative;
    z-index: 2;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mp-event-banner strong {
    position: relative;
    z-index: 2;
    font-family: "Aptos Display", "Segoe UI", sans-serif;
    font-size: clamp(18px, 2.2vw, 30px);
    letter-spacing: -0.035em;
}

.mp-event-banner__cta {
    position: relative;
    z-index: 2;
    margin-left: auto;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 800;
}

.mp-home-section {
    margin-top: 22px;
}

.mp-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 5px;
}

.mp-section-heading > div {
    display: flex;
    gap: 9px;
    align-items: center;
}

.mp-section-heading__icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: var(--mp-white);
    border-radius: 9px;
    background: var(--mp-gradient);
    box-shadow: 0 7px 18px rgba(22, 119, 255, 0.18);
}

.mp-section-heading__icon svg {
    width: 15px;
    height: 15px;
}

.mp-section-heading h2 {
    margin: 0;
    font-family: "Aptos Display", "Segoe UI", sans-serif;
    font-size: 20px;
    letter-spacing: -0.035em;
}

.mp-category-panel,
.mp-product-grid,
.mp-supplier-grid,
.mp-recommended-panel {
    border: 1px solid var(--mp-card-border);
    border-radius: var(--mp-radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--mp-card-shadow);
}

.mp-category-panel {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    row-gap: 24px;
    padding: 26px 18px;
}

.mp-category {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 9px;
    align-items: center;
    padding: 4px 12px;
    text-align: center;
}

.mp-category:not(:nth-child(5n + 1))::before {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 0;
    width: 1px;
    background: var(--mp-line);
    content: "";
}

.mp-category__icon {
    display: grid;
    place-items: center;
    width: 55px;
    height: 55px;
    overflow: hidden;
    color: var(--mp-blue-deep);
    border: 6px solid var(--mp-soft);
    border-radius: 50%;
    background: var(--mp-white);
    box-shadow: 0 6px 18px rgba(22, 119, 255, 0.2);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mp-category__icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.mp-category__icon > span {
    font-size: 10px;
    font-weight: 900;
}

.mp-category strong {
    width: 100%;
    overflow: visible;
    color: #38516b;
    font-size: 11px;
    line-height: 1.3;
    overflow-wrap: normal;
    text-overflow: clip;
    white-space: normal;
    word-break: normal;
    max-width: 100%;
}

.mp-category:hover .mp-category__icon {
    box-shadow: 0 10px 20px rgba(8, 104, 216, 0.24);
    transform: translateY(-3px) rotate(-2deg);
}

.mp-category:hover strong {
    color: var(--mp-blue);
}

.mp-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 14px;
}

.mp-product-grid--popular {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mp-product-grid--popular .mp-product-card__image {
    height: auto;
    aspect-ratio: 1;
}

.mp-product-card {
    overflow: hidden;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius-md);
    background: var(--mp-white);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mp-product-card:hover {
    border-color: #b9ddff;
    box-shadow: 0 8px 22px rgba(22, 119, 255, 0.1);
    transform: translateY(-3px);
}

.mp-product-card__image {
    display: grid;
    place-items: center;
    height: 180px;
    overflow: hidden;
    color: rgba(8, 104, 216, 0.45);
    background:
        radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.95), transparent 20%),
        linear-gradient(145deg, #edf7ff 0%, #d7ebff 100%);
    font-size: 16px;
    font-weight: 900;
}

.mp-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.mp-product-card__body {
    display: block;
    padding: 13px 14px 15px;
}

.mp-product-card__body strong,
.mp-product-card__body small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mp-product-card__body strong {
    font-size: 13px;
}

.mp-product-card__body small {
    margin-top: 3px;
    color: var(--mp-muted);
    font-size: 10px;
}

.mp-product-card--placeholder,
.mp-supplier-card--placeholder,
.mp-recommended-card--placeholder {
    opacity: 0.78;
}

.mp-supplier-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 13px;
}

.mp-supplier-card {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--mp-card-border);
    border-radius: var(--mp-radius-md);
    background: linear-gradient(145deg, #f7fbff, #ffffff);
}

.mp-supplier-card__top {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
}

.mp-supplier-card__logo {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    overflow: hidden;
    color: var(--mp-blue);
    border: 1px solid var(--mp-line);
    border-radius: 12px;
    background: var(--mp-white);
    font-size: 12px;
    font-weight: 900;
}

.mp-supplier-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mp-supplier-card__top h3 {
    margin: 0;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mp-supplier-card__top p {
    margin: 3px 0 0;
    overflow: hidden;
    color: var(--mp-muted);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mp-supplier-card__top > a {
    color: var(--mp-blue);
    font-size: 9px;
    font-weight: 800;
}

.mp-supplier-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 13px 0;
    padding: 10px 0;
    border-top: 1px solid var(--mp-line);
    border-bottom: 1px solid var(--mp-line);
}

.mp-supplier-card__meta div {
    min-width: 0;
}

.mp-supplier-card__meta dt {
    color: #8b9fb3;
    font-size: 8px;
}

.mp-supplier-card__meta dd {
    margin: 2px 0 0;
    overflow: hidden;
    font-size: 9px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mp-supplier-card__products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.mp-supplier-card__products > a,
.mp-supplier-card__product-placeholder {
    display: grid;
    place-items: center;
    height: auto;
    aspect-ratio: 1;
    overflow: hidden;
    color: rgba(8, 104, 216, 0.55);
    border-radius: 9px;
    background: linear-gradient(145deg, #eaf5ff, #d7eaff);
    font-size: 9px;
    font-weight: 800;
}

.mp-supplier-card__products img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-recommended-panel {
    overflow: hidden;
}

.mp-product-tabs {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    padding: 0 14px;
    border-bottom: 1px solid var(--mp-line);
    scrollbar-width: thin;
}

.mp-product-tabs button,
.mp-product-tabs span {
    position: relative;
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 14px;
    color: var(--mp-muted);
    border: 0;
    background: transparent;
    font-size: 10px;
    font-weight: 700;
}

.mp-product-tabs button::after,
.mp-product-tabs span::after {
    position: absolute;
    right: 18%;
    bottom: 0;
    left: 18%;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--mp-blue);
    content: "";
    opacity: 0;
}

.mp-product-tabs button.is-active,
.mp-product-tabs span.is-active {
    color: var(--mp-blue);
}

.mp-product-tabs button.is-active::after,
.mp-product-tabs span.is-active::after {
    opacity: 1;
}

.mp-recommended-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    min-height: 190px;
    padding: 14px;
}

.mp-recommended-grid.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

.mp-product-empty {
    grid-column: 1 / -1;
    align-self: center;
    margin: 0;
    padding: 36px 18px;
    color: var(--mp-muted);
    font-size: 12px;
    text-align: center;
}

.mp-recommended-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius-md);
    background: var(--mp-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mp-recommended-card:hover {
    border-color: #91c6f6;
    box-shadow: 0 10px 22px rgba(30, 88, 146, 0.11);
}

.mp-recommended-card__image {
    display: grid;
    place-items: center;
    min-height: 0;
    aspect-ratio: 1;
    overflow: hidden;
    color: rgba(8, 104, 216, 0.48);
    background: linear-gradient(145deg, #e8f4ff, #d4eaff);
    font-weight: 900;
}

.mp-recommended-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-recommended-card__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 13px;
}

.mp-recommended-card__copy strong,
.mp-recommended-card__copy small {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mp-recommended-card__copy strong {
    font-size: 14px;
}

.mp-recommended-card__copy small {
    margin-top: 5px;
    color: var(--mp-muted);
    font-size: 10px;
}

.mp-recommended-card__copy > span {
    min-width: 0;
    margin-top: 12px;
    padding: 6px 15px;
    color: var(--mp-blue);
    border: 1px solid #9bc9f5;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    text-align: center;
}

.mp-rfq {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(310px, 0.6fr);
    gap: 42px;
    align-items: center;
    min-height: 300px;
    margin-top: 24px;
    overflow: hidden;
    padding: 38px 42px;
    color: var(--mp-white);
    border-radius: var(--mp-radius-xl);
    background: linear-gradient(135deg, #075fd8 0%, #1677ff 58%, #35b8ff 100%);
    box-shadow: var(--mp-shadow);
}

.mp-rfq::before {
    position: absolute;
    top: -170px;
    left: 40%;
    width: 540px;
    height: 540px;
    border: 80px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.mp-rfq::after {
    position: absolute;
    right: 33%;
    bottom: -190px;
    width: 420px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    content: "";
    transform: rotate(-18deg);
}

.mp-rfq__copy,
.mp-rfq__form {
    position: relative;
    z-index: 2;
}

.mp-rfq__copy h2 {
    margin: 0;
    font-family: "Aptos Display", "Segoe UI", sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.mp-rfq__copy h2 span {
    color: #8ecbff;
}

.mp-rfq__copy p {
    max-width: 600px;
    margin: 16px 0 18px;
    color: rgba(255, 255, 255, 0.72);
}

.mp-rfq__copy > a {
    font-size: 12px;
    font-weight: 800;
}

.mp-rfq__form {
    display: grid;
    gap: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: var(--mp-radius-lg);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 50px rgba(0, 25, 57, 0.2);
    backdrop-filter: blur(14px);
}

.mp-rfq__form h3 {
    margin: 0 0 2px;
    font-size: 14px;
}

.mp-rfq__form label {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mp-rfq__form input {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    outline: 0;
    background: var(--mp-white);
    font-size: 11px;
}

.mp-rfq__form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mp-rfq__form-row > div {
    display: grid;
    gap: 6px;
}

.mp-rfq__form button {
    height: 39px;
    margin-top: 4px;
    color: var(--mp-white);
    border: 0;
    border-radius: 8px;
    background: var(--mp-gradient);
    box-shadow: 0 6px 18px rgba(22, 119, 255, 0.2);
    font-size: 11px;
    font-weight: 800;
}

.mp-rfq__form button:hover {
    background: linear-gradient(135deg, #249eef 0%, #075fd8 100%);
}

.mp-contact-band {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(230px, 0.75fr) minmax(0, 0.8fr);
    gap: 24px;
    align-items: center;
    margin-top: 12px;
    padding: 28px 30px;
    border: 1px solid var(--mp-card-border);
    border-radius: var(--mp-radius-lg);
    background: linear-gradient(135deg, #f7fbff 0%, #edf7ff 100%);
    box-shadow: var(--mp-card-shadow);
}

.mp-contact-band h2 {
    margin: 0;
    font-family: "Aptos Display", "Segoe UI", sans-serif;
    font-size: 23px;
    letter-spacing: -0.04em;
}

.mp-contact-band p {
    margin: 6px 0 12px;
    color: #4f6f8e;
    font-size: 11px;
}

.mp-subscribe form {
    display: grid;
    grid-template-columns: 1fr auto;
    height: 39px;
    overflow: hidden;
    border: 1px solid var(--mp-blue);
    border-radius: 999px;
    background: var(--mp-white);
}

.mp-subscribe input,
.mp-subscribe button {
    border: 0;
    background: transparent;
}

.mp-subscribe input {
    min-width: 0;
    padding: 0 15px;
    outline: 0;
    font-size: 10px;
}

.mp-subscribe button {
    margin: 3px;
    padding: 0 16px;
    color: var(--mp-white);
    border-radius: 999px;
    background: var(--mp-gradient);
    font-size: 9px;
    font-weight: 800;
}

.mp-subscribe > small {
    display: block;
    margin-top: 6px;
    color: #5e7d9b;
    font-size: 8px;
}

.mp-subscribe > small.is-success {
    color: var(--mp-blue-deep);
    font-weight: 700;
}

.mp-subscribe > small.is-error {
    color: #c0392b;
    font-weight: 700;
}

.mp-subscribe button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.mp-platform-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-width: 0;
}

.mp-platform-preview__image {
    min-width: 0;
    min-height: 130px;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(74, 157, 231, 0.52);
    border-radius: 12px;
    background: var(--mp-white);
    box-shadow: 0 12px 26px rgba(33, 84, 134, 0.18);
}

.mp-platform-preview__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 130px;
    object-fit: cover;
    object-position: center;
}

.mp-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mp-contact__items {
    display: grid;
    width: 100%;
    gap: 9px;
    margin-top: 10px;
}

.mp-contact__item {
    display: grid;
    gap: 1px;
    width: 100%;
    padding: 8px 10px;
    color: var(--mp-ink);
    border: 1px solid var(--mp-line);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.72);
}

.mp-contact__item strong {
    font-size: 12px;
}

.mp-contact__item span {
    overflow-wrap: anywhere;
    color: var(--mp-blue-deep);
    font-size: 10px;
}

.mp-contact > a {
    margin-top: 3px;
    color: var(--mp-blue-deep);
    font-size: 10px;
    font-weight: 800;
}

.mp-contact > a:last-child {
    margin-top: 9px;
}

.mp-footer {
    padding: 48px 0 30px;
    color: #55708a;
    background-color: #eff7ff;
    background-image: url("/home_new_images/footer_bg.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    border-top: 0;
}

.mp-hero h1,
.mp-service-card strong,
.mp-event-banner strong,
.mp-section-heading h2,
.mp-rfq__copy h2,
.mp-contact-band h2 {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    letter-spacing: -0.02em;
}

.mp-footer__utility {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 0;
    justify-content: center;
    padding: 0 0 22px;
    border-bottom: 1px solid #cfe2f3;
}

.mp-footer__utility a {
    padding: 0 12px;
    border-right: 1px solid #bdd5e9;
    font-size: 9px;
}

.mp-footer__utility a:last-child {
    border-right: 0;
}

.mp-footer__utility a:hover,
.mp-footer__links a:hover,
.mp-footer__contact a:hover {
    color: var(--mp-blue);
}

.mp-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 0.8fr) 0.8fr;
    gap: 34px;
    padding: 28px 0 24px;
}

.mp-footer__grid--without-connect {
    grid-template-columns: 1.35fr repeat(3, 0.8fr);
}

.mp-brand--footer {
    max-width: 190px;
}

.mp-brand--footer .mp-brand__image {
    max-height: 42px;
}

.mp-footer__brand p {
    max-width: 250px;
    margin: 12px 0 0;
    font-size: 9px;
}

.mp-footer__links,
.mp-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mp-footer__links h2,
.mp-footer__contact h2 {
    margin: 0 0 8px;
    color: #2c4c6c;
    font-size: 11px;
}

.mp-footer__links a,
.mp-footer__contact a {
    margin: 2px 0;
    font-size: 9px;
}

.mp-wechat-connect {
    position: relative;
    margin-top: 8px;
}

.mp-wechat-connect__trigger {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    color: var(--mp-white);
    border-radius: 8px;
    background: #16a765;
    box-shadow: 0 6px 14px rgba(22, 167, 101, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.mp-wechat-connect__trigger i {
    font-size: 18px;
}

.mp-wechat-connect__trigger:hover,
.mp-wechat-connect__trigger:focus-visible {
    background: #079452;
    box-shadow: 0 8px 18px rgba(22, 167, 101, 0.3);
    outline: none;
    transform: translateY(-1px);
}

.mp-wechat-connect__trigger:focus-visible {
    box-shadow: 0 0 0 3px rgba(22, 167, 101, 0.2), 0 8px 18px rgba(22, 167, 101, 0.3);
}

.mp-wechat-connect__popup {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    z-index: 20;
    width: min(176px, calc(100vw - 40px));
    padding: 9px 9px 8px;
    border: 1px solid #d4e4f0;
    border-radius: 12px;
    background: var(--mp-white);
    box-shadow: 0 16px 38px rgba(31, 75, 112, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(7px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.mp-wechat-connect__popup::after {
    position: absolute;
    right: 8px;
    bottom: -6px;
    width: 11px;
    height: 11px;
    border-right: 1px solid #d4e4f0;
    border-bottom: 1px solid #d4e4f0;
    background: var(--mp-white);
    content: "";
    transform: rotate(45deg);
}

.mp-wechat-connect__popup img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 7px;
}

.mp-wechat-connect__popup span {
    display: block;
    margin-top: 6px;
    color: #355675;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
}

.mp-wechat-connect:hover .mp-wechat-connect__popup,
.mp-wechat-connect:focus-within .mp-wechat-connect__popup {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.mp-footer__legal {
    display: flex;
    gap: 18px;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #cfe2f3;
    font-size: 8px;
}

@media (max-width: 1080px) {
    .mp-header__main {
        grid-template-columns: 170px minmax(280px, 1fr) auto;
        gap: 14px;
    }

    .mp-text-action {
        display: none;
    }

    .mp-brand {
        max-width: 170px;
    }

    .mp-nav > a,
    .mp-app-menu__trigger {
        padding: 0 8px;
        font-size: 11px;
    }

    .mp-hero-grid {
        grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.95fr);
    }

    .mp-most-popular__list {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, minmax(0, 1fr));
    }

    .mp-mini-product {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .mp-mini-product__image {
        width: 82px;
        height: 56px;
    }

    .mp-mini-product__copy {
        height: 56px;
    }

    .mp-mini-product:nth-child(n + 6) {
        display: none;
    }

    .mp-service-card {
        padding: 15px;
    }

    .mp-product-grid--popular,
    .mp-recommended-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .mp-footer__grid {
        grid-template-columns: 1.2fr repeat(2, 0.8fr);
    }

    .mp-footer__contact {
        grid-column: 2;
    }
}

@media (max-width: 860px) {
    .mp-site-shell::before {
        top: -520px;
    }

    .mp-container {
        width: min(calc(100% - 28px), var(--mp-container));
    }

    .mp-header__main {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .mp-search {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
    }

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

    .mp-account-button {
        display: none;
    }

    .mp-nav-wrap {
        display: none;
    }

    .mp-nav-wrap.is-open {
        display: block;
    }

    .mp-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 8px;
        border-radius: var(--mp-radius-lg);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--mp-shadow);
    }

    .mp-nav .mp-nav__mobile-auth {
        display: flex !important;
    }

    .mp-nav > a,
    .mp-categories-menu > a,
    .mp-app-menu__trigger {
        justify-content: flex-start;
        height: 42px;
        padding: 0 14px;
        text-align: left;
    }

    .mp-nav > a > span::after,
    .mp-categories-menu > a > span::after {
        bottom: 1px;
    }

    .mp-categories-menu {
        grid-column: 1 / -1;
    }

    .mp-categories-popover {
        position: static;
        width: 100%;
        max-height: min(58vh, 520px);
        margin-bottom: 8px;
        padding: 6px 0;
        border-radius: 14px;
        box-shadow: inset 0 0 0 1px rgba(207, 229, 250, 0.35);
    }

    .mp-categories-popover__list > a {
        min-height: 42px;
        padding: 9px 14px;
    }

    .mp-app-menu {
        grid-column: 1 / -1;
    }

    .mp-app-popover {
        position: static;
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        width: 100%;
        margin-top: 4px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: none;
    }

    .mp-app-popover__overview {
        grid-template-columns: minmax(0, 1fr) 76px;
        gap: 16px;
    }

    .mp-app-popover__copy h2 {
        font-size: 20px;
    }

    .mp-app-popover__download-area {
        padding-top: 20px;
        padding-left: 0;
        border-top: 1px solid var(--mp-line);
        border-left: 0;
    }

    .mp-app-popover__downloads {
        grid-template-columns: minmax(0, 1fr) 128px;
        gap: 12px;
    }

    .mp-app-popover__downloads--links-only {
        grid-template-columns: 1fr;
    }

    .mp-app-popover__downloads--qr-only {
        grid-template-columns: 128px;
        justify-content: center;
    }

    .mp-portal-card {
        margin-top: 10px;
        border-radius: var(--mp-radius-xl);
    }

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

    /* Mobile banners keep the full artwork; only the active slide sets the height. */
    .mp-hero.mp-hero--banners {
        min-height: 0;
        align-self: start;
    }

    .mp-hero--banners .mp-hero__slides {
        position: relative;
        height: auto;
    }

    .mp-hero--banners .mp-hero__slide {
        height: auto;
    }

    .mp-hero--banners .mp-hero__slide.is-active {
        position: relative;
    }

    .mp-hero--banners .mp-hero__slide > a {
        display: block;
        height: auto;
    }

    .mp-hero--banners .mp-hero__slide img {
        height: auto;
        object-fit: contain;
    }

    .mp-most-popular__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }

    .mp-mini-product:nth-child(n) {
        display: grid;
    }

    .mp-mini-product {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .mp-mini-product__image {
        width: 100px;
        height: 74px;
    }

    .mp-mini-product__copy {
        height: 74px;
    }

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

    .mp-product-grid--popular,
    .mp-recommended-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mp-category-panel {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .mp-category:not(:nth-child(5n + 1))::before {
        display: none;
    }

    .mp-category:not(:nth-child(4n + 1))::before {
        display: block;
    }

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

    .mp-contact-band {
        grid-template-columns: 1fr 0.8fr;
    }

    .mp-platform-preview {
        grid-row: span 2;
        align-self: stretch;
    }

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

    .mp-footer__brand {
        grid-column: 1 / -1;
    }

    .mp-footer__contact {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .mp-wechat-connect__popup {
        right: auto;
        left: 0;
    }

    .mp-wechat-connect__popup::after {
        right: auto;
        left: 8px;
    }

    .mp-container {
        width: min(calc(100% - 20px), var(--mp-container));
    }

    .mp-header {
        padding-top: 10px;
    }

    .mp-header__main {
        min-height: 54px;
        gap: 10px;
    }

    .mp-header__actions {
        gap: 8px;
    }

    .mp-language-link {
        gap: 5px;
        font-size: 12px;
    }

    .mp-language-link svg {
        width: 18px;
        height: 18px;
    }

    .mp-brand {
        max-width: 138px;
    }

    .mp-brand__image {
        max-height: 36px;
    }

    .mp-search {
        grid-template-columns: 112px 1fr 47px;
        height: 40px;
    }

    .mp-search select {
        padding: 0 12px;
        font-size: 11px;
    }

    .mp-search input {
        padding: 0 10px;
        font-size: 12px;
    }

    .mp-search button {
        min-width: 0;
        padding: 0;
    }

    .mp-search button span {
        display: none;
    }

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

    .mp-portal-card {
        padding: 7px;
    }

    .mp-hero {
        min-height: 420px;
    }

    .mp-hero__fallback-copy {
        align-self: flex-start;
        padding: 40px 24px;
    }

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

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

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

    .mp-mini-product:nth-child(n + 5) {
        display: none;
    }

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

    .mp-service-card {
        min-height: 138px;
    }

    .mp-event-banner {
        display: block;
        min-height: 150px;
        padding: 24px;
    }

    .mp-event-banner strong {
        display: block;
        margin-top: 12px;
        line-height: 1.1;
    }

    .mp-event-banner__cta {
        display: block;
        margin: 14px 0 0;
    }

    .mp-section-heading h2 {
        font-size: 18px;
    }

    .mp-category-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 20px;
    }

    .mp-category:not(:nth-child(4n + 1))::before {
        display: none;
    }

    .mp-category:nth-child(even)::before {
        display: block;
    }

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

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

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

    .mp-supplier-card__products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mp-product-card__image {
        height: 210px;
    }

    .mp-supplier-card__top {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .mp-supplier-card__top > a {
        grid-column: 2;
    }

    .mp-rfq {
        gap: 28px;
        padding: 32px 20px;
    }

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

    .mp-contact-band {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .mp-platform-preview {
        grid-row: auto;
        grid-template-columns: 1fr;
    }

    .mp-platform-preview__image {
        min-height: 190px;
    }

    .mp-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px 20px;
    }

    .mp-footer__brand,
    .mp-footer__contact {
        grid-column: 1 / -1;
    }

    .mp-footer__legal {
        flex-direction: column;
        gap: 4px;
        align-items: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

/*
 * English-site typography scale
 * Aligned to the approved English homepage artwork at a 1920px design width.
 * Typography only: no spacing, sizing, colour, radius or layout rules belong here.
 */
:root {
    --mp-type-family: Arial, "Helvetica Neue", "Microsoft YaHei", sans-serif;
    --mp-type-caption: 12px;
    --mp-type-small: 14px;
    --mp-type-body: 16px;
    --mp-type-card-title: 18px;
    --mp-type-section: 30px;
}

body,
button,
input,
select,
textarea {
    font-family: var(--mp-type-family);
}

body {
    font-size: var(--mp-type-body);
}

body :where(h1, h2, h3, p, a, strong, small, button, input, select, textarea, dt, dd, label, li) {
    font-family: var(--mp-type-family) !important;
}

.mp-search select,
.mp-search button,
.mp-text-action,
.mp-login-link,
.mp-nav > a,
.mp-categories-menu > a,
.mp-app-menu__trigger {
    font-size: var(--mp-type-body);
}

.mp-account-button {
    font-size: 15px;
}

.mp-categories-menu > a > i,
.mp-app-menu__trigger > i,
.mp-categories-popover__list i {
    font-size: 13px;
}

.mp-categories-popover__list strong {
    font-size: 15px;
}

.mp-app-popover small,
.mp-app-popover figcaption {
    font-size: var(--mp-type-caption);
}

.mp-app-popover strong {
    font-size: var(--mp-type-card-title);
}

.mp-app-popover p,
.mp-app-popover__links a {
    font-size: var(--mp-type-small);
}

.mp-kicker,
.mp-event-banner__eyebrow {
    font-size: 13px;
}

.mp-hero h1 {
    font-family: var(--mp-type-family);
    font-size: 46px;
}

.mp-hero p {
    font-size: 18px;
}

.mp-button {
    font-size: var(--mp-type-body);
}

.mp-most-popular__header h2 {
    font-size: var(--mp-type-card-title);
}

.mp-most-popular__header a,
.mp-section-heading > a {
    font-size: var(--mp-type-small);
}

.mp-mini-product__copy strong {
    font-size: var(--mp-type-small);
}

.mp-mini-product__meta,
.mp-mini-product__copy small {
    font-size: var(--mp-type-caption);
}

.mp-service-card strong {
    font-size: var(--mp-type-card-title);
}

.mp-service-card__copy,
.mp-service-card__more,
.mp-event-banner__cta {
    font-size: var(--mp-type-small);
}

.mp-event-banner strong {
    font-family: var(--mp-type-family);
    font-size: var(--mp-type-section);
}

.mp-section-heading h2 {
    font-size: var(--mp-type-section);
}

.mp-category__icon > span {
    font-size: var(--mp-type-small);
}

.mp-category strong {
    font-size: var(--mp-type-body);
}

.mp-product-card__body strong,
.mp-supplier-card__top h3,
.mp-recommended-card__copy strong {
    font-size: var(--mp-type-card-title);
}

.mp-product-card__body small,
.mp-recommended-card__copy small {
    font-size: 15px;
}

.mp-supplier-card__logo,
.mp-supplier-card__top p,
.mp-supplier-card__top > a,
.mp-product-empty {
    font-size: var(--mp-type-small);
}

.mp-supplier-card__meta dt,
.mp-supplier-card__products > a,
.mp-supplier-card__product-placeholder,
.mp-recommended-card__copy > span {
    font-size: var(--mp-type-caption);
}

.mp-supplier-card__meta dd {
    font-size: 13px;
}

.mp-product-tabs button,
.mp-product-tabs span {
    font-size: var(--mp-type-small);
}

.mp-rfq__copy h2 {
    font-family: var(--mp-type-family);
    font-size: 38px;
}

.mp-rfq__copy > a {
    font-size: var(--mp-type-body);
}

.mp-rfq__form h3 {
    font-size: var(--mp-type-card-title);
}

.mp-rfq__form label,
.mp-subscribe > small {
    font-size: var(--mp-type-caption);
}

.mp-rfq__form input,
.mp-rfq__form button,
.mp-subscribe input,
.mp-contact > a {
    font-size: var(--mp-type-small);
}

.mp-subscribe button {
    font-size: 13px;
}

.mp-contact-band h2 {
    font-size: var(--mp-type-section);
}

.mp-contact-band p {
    font-size: var(--mp-type-body);
}

.mp-footer__utility a,
.mp-footer__brand p,
.mp-footer__links a,
.mp-footer__contact a {
    font-size: 13px;
}

.mp-footer__links h2,
.mp-footer__contact h2 {
    font-size: var(--mp-type-body);
}

.mp-footer__legal {
    font-size: var(--mp-type-caption);
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

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

    .mp-section-heading h2,
    .mp-contact-band h2 {
        font-size: 26px;
    }

    .mp-rfq__copy h2 {
        font-size: 32px;
    }
}
